From 9b14e3ed894fa298fa4d69c77baa8dbbfef45f20 Mon Sep 17 00:00:00 2001 From: Theo Date: Sun, 2 Jul 2023 17:52:39 -0700 Subject: [PATCH] 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 --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d67c6de..20c0bab 100644 --- a/package.json +++ b/package.json @@ -11,16 +11,17 @@ "prettier:fix": "npx prettier --write . --config .prettierrc", "lint": "yarn eslint && yarn prettier:check", "test": "mocha", - "start": "yarn server & yarn worker & yarn healthWatcher" + "start": "concurrently \"yarn server\" \"yarn worker\" \"yarn healthWatcher\"" }, "author": "tornado.cash", "license": "MIT", "dependencies": { "ajv": "^6.12.5", "bull": "^3.12.1", + "concurrently": "^8.2.0", "dotenv": "^8.2.0", "express": "^4.17.1", - "gas-price-oracle": "^0.4.7", + "gas-price-oracle": "^0.5.2", "ioredis": "^4.14.1", "torn-token": "^1.0.5", "tx-manager": "^0.4.8",