forked from ColuLocalNetwork/token-bridge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.67 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "bridge-oracle",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"watcher:signature-request": "./scripts/start-worker.sh watcher signature-request-watcher",
"watcher:collected-signatures": "./scripts/start-worker.sh watcher collected-signatures-watcher",
"watcher:affirmation-request": "./scripts/start-worker.sh watcher affirmation-request-watcher",
"watcher:rewarded-on-cycle": "./scripts/start-worker.sh watcher rewarded-on-cycle-watcher",
"watcher:initiate-change": "./scripts/start-worker.sh watcher initiate-change-watcher",
"watcher:bridge-deployed": "./scripts/start-worker.sh watcher bridge-deployed",
"sender:home": "./scripts/start-worker.sh sender home-sender",
"sender:foreign": "./scripts/start-worker.sh sender foreign-sender",
"dev": "concurrently -n 'watcher:bridge-deployed,watcher:signature-request,watcher:collected-signatures,watcher:affirmation-request,watcher:rewarded-on-cycle,sender:home,sender:foreign' -c 'red,green,yellow,blue,magenta,cyan,gray' 'npm run watcher:bridge-deployed' 'npm run watcher:signature-request' 'npm run watcher:collected-signatures' 'npm run watcher:affirmation-request' 'npm run watcher:initiate-change' 'npm run watcher:rewarded-on-cycle' 'npm run sender:home' 'npm run sender:foreign'",
"test": "NODE_ENV=test mocha",
"test:watch": "NODE_ENV=test mocha --watch --reporter=min",
"coverage": "NODE_ENV=test nyc --reporter=text --reporter=html mocha",
"postinstall": "npm install --prefix e2e && mkdir -p logs"
},
"author": "",
"license": "ISC",
"dependencies": {
"amqp-connection-manager": "^2.0.0",
"amqplib": "^0.5.2",
"bignumber.js": "^7.2.1",
"dotenv": "^5.0.1",
"ethereumjs-wallet": "^0.6.3",
"http-list-provider": "0.0.5",
"ioredis": "^3.2.2",
"lodash": "^4.17.10",
"node-fetch": "^2.1.2",
"pino": "^4.17.3",
"pino-pretty": "^2.0.1",
"promise-limit": "^2.7.0",
"promise-retry": "^1.1.1",
"redlock": "^3.1.2",
"web3": "^1.0.0-beta.34",
"web3-utils": "^1.0.0-beta.34",
"websocket": "^1.0.28"
},
"devDependencies": {
"bn-chai": "^1.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"concurrently": "^3.6.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"mocha": "^5.2.0",
"ndjson": "^1.5.0",
"nyc": "^12.0.2",
"prettier": "^1.12.1",
"proxyquire": "^2.0.1",
"simple-statistics": "^6.1.0",
"sinon": "^6.1.0"
},
"engines": {
"node": ">= 8.9"
}
}