-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "activity-logging-microservice",
"version": "0.1.1",
"description": "Microservice to enable interaction with IPFS and the Ethereum blockchain",
"main": "cluster.js",
"scripts": {
"build": "docker build -t blockchainlg/activity-logging-service .",
"push": "docker push blockchainlg/activity-logging-service",
"ganache": "node_modules/ganache-cli/cli.js",
"ganache-background": "node_modules/ganache-cli/cli.js &",
"start-cluster": "node ./src/cluster",
"start": "./scripts/start.sh",
"start-container": "node src/cluster",
"test": "yarn ganache-background && cd scripts && ./local-test.sh",
"test-prod": "TEST_SUB_DIR=production node test",
"truffle": "cd truffle && ../node_modules/truffle/build/cli.bundled.js"
},
"author": "Blockscale Solutions Inc.",
"license": "ISC",
"dependencies": {
"bignumber.js": "^6.0.0",
"bn.js": "^4.11.8",
"bunyan": "^1.8.12",
"bunyan-prettystream": "^0.1.3",
"cluster": "^0.7.7",
"ethereumjs-util": "^5.1.4",
"ipfs-api": "18.1.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"restify": "^6.3.4",
"restify-cors-middleware": "^1.1.0",
"restify-errors": "^5.0.0",
"restify-router": "^0.5.0",
"web3": "^0.20.4"
},
"devDependencies": {
"chai": "^4.1.2",
"ganache-cli": "^6.0.3",
"mocha": "^5.0.1",
"truffle": "^4.1.15"
}
}