Bump gas-price-oracle to correct gas estimation & add 'concurrently' and change 'start' command, because if run server without concurrently, worker and healthWatcher wont be started

This commit is contained in:
Theo 2023-07-02 17:52:39 -07:00
parent 4c1500bd96
commit 9b14e3ed89

@ -11,16 +11,17 @@
"prettier:fix": "npx prettier --write . --config .prettierrc", "prettier:fix": "npx prettier --write . --config .prettierrc",
"lint": "yarn eslint && yarn prettier:check", "lint": "yarn eslint && yarn prettier:check",
"test": "mocha", "test": "mocha",
"start": "yarn server & yarn worker & yarn healthWatcher" "start": "concurrently \"yarn server\" \"yarn worker\" \"yarn healthWatcher\""
}, },
"author": "tornado.cash", "author": "tornado.cash",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"ajv": "^6.12.5", "ajv": "^6.12.5",
"bull": "^3.12.1", "bull": "^3.12.1",
"concurrently": "^8.2.0",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"express": "^4.17.1", "express": "^4.17.1",
"gas-price-oracle": "^0.4.7", "gas-price-oracle": "^0.5.2",
"ioredis": "^4.14.1", "ioredis": "^4.14.1",
"torn-token": "^1.0.5", "torn-token": "^1.0.5",
"tx-manager": "^0.4.8", "tx-manager": "^0.4.8",