-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.16 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.16 KB
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
{
"name": "@p2pmodels/eth-manager",
"version": "1.0.0",
"description": "Node.js service responsible of listening Round Robin contract events and creating transactions to reallocate tasks",
"main": "index.js",
"engines": {
"node": "10.15.3"
},
"scripts": {
"create-mock-data:local": "scripts/create-mock-data.js --network local",
"create-mock-data": "scripts/create-mock-data.js --network rinkeby",
"start:local": "scripts/start-event-listeners.js --network local",
"start:rinkeby": "scripts/start-event-listeners.js --network rinkeby",
"start": "scripts/start-event-listeners.js --network rinkeby",
"restart-contract": "scripts/restart-contract.js --network rinkeby",
"test": "echo \"Error: no test specified\" && exit 1",
"get-contract-status": "scripts/get-contract-status.js --network rinkeby"
},
"keywords": [
"ethereum",
"web3"
],
"author": "P2P Models",
"license": "ISC",
"dependencies": {
"app-root-path": "^3.0.0",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"ethers": "^5.0.29",
"web3-providers": "^1.0.0-beta.55",
"web3-utils": "^1.3.4",
"winston": "^3.3.3",
"yargs": "^16.1.0"
}
}