tokenbridge/monitor/package.json

31 lines
799 B
JSON
Raw Normal View History

2019-05-08 16:12:02 +03:00
{
"name": "monitor",
2019-05-08 16:12:02 +03:00
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2021-04-02 12:59:49 +03:00
"check-all": "timeout -s 9 5m node checkWorker.js && timeout -s 9 5m node checkWorker2.js && timeout -s 9 5m node checkWorker3.js && timeout -s 9 10s node metricsWorker.js",
2019-05-08 16:12:02 +03:00
"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"
2019-05-08 16:12:02 +03:00
},
"author": "",
"license": "ISC",
"dependencies": {
"bignumber.js": "^9.0.1",
2020-10-12 21:16:41 +03:00
"cors": "^2.8.5",
2019-05-08 16:12:02 +03:00
"dotenv": "^5.0.1",
"express": "^4.16.3",
"node-fetch": "^2.1.2",
2020-11-04 14:24:42 +03:00
"web3": "^1.3.0"
2019-05-08 16:12:02 +03:00
},
"engines": {
"node": ">= 12.22"
2019-05-08 16:12:02 +03:00
},
"devDependencies": {
"chai": "^4.2.0"
2019-05-08 16:12:02 +03:00
}
}