30 lines
739 B
JSON
30 lines
739 B
JSON
{
|
|
"name": "monitor",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"check-all": "timeout -s 9 5m node checkWorker.js && timeout -s 9 5m node checkWorker2.js && timeout -s 9 5m node checkWorker3.js",
|
|
"start": "node index.js",
|
|
"check-and-start": "yarn check-all && yarn start",
|
|
"lint": "eslint . --ignore-path ../.eslintignore",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "NODE_ENV=test mocha"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"bignumber.js": "^6.0.0",
|
|
"dotenv": "^5.0.1",
|
|
"express": "^4.16.3",
|
|
"node-fetch": "^2.1.2",
|
|
"web3": "1.0.0-beta.34"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.9"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0"
|
|
}
|
|
}
|