tornado-relayer/package.json

60 lines
1.9 KiB
JSON
Raw Normal View History

2019-07-18 08:43:26 -04:00
{
"name": "relay",
2022-05-18 04:18:10 -04:00
"version": "5.0.0",
2020-07-16 09:33:35 -04:00
"description": "Relayer for Tornado.cash privacy solution. https://tornado.cash",
2019-07-18 08:43:26 -04:00
"scripts": {
2022-05-18 04:18:10 -04:00
"dev:app": "nodemon --watch './src/**/*.ts' --exec ts-node src/app/index.ts",
"server": "node src/app/server.ts",
2020-10-05 10:22:52 -04:00
"worker": "node src/worker",
"treeWatcher": "node src/treeWatcher",
"priceWatcher": "node src/priceWatcher",
2021-02-09 10:53:28 -05:00
"healthWatcher": "node src/healthWatcher",
2020-10-02 06:26:05 -04:00
"eslint": "eslint --ext .js --ignore-path .gitignore .",
"prettier:check": "npx prettier --check . --config .prettierrc",
"prettier:fix": "npx prettier --write . --config .prettierrc",
"lint": "yarn eslint && yarn prettier:check",
2020-12-01 15:45:48 -05:00
"test": "mocha",
2021-02-09 10:53:28 -05:00
"start": "yarn server & yarn priceWatcher & yarn treeWatcher & yarn worker & yarn healthWatcher"
2019-07-18 08:43:26 -04:00
},
2019-11-23 03:18:54 -05:00
"author": "tornado.cash",
2019-07-18 08:43:26 -04:00
"license": "MIT",
"dependencies": {
2022-05-18 04:18:10 -04:00
"@fastify/cors": "^7.0.0",
"@fastify/helmet": "^8.0.1",
"@fastify/sensible": "^4.1.0",
2022-05-10 04:52:07 -04:00
"bullmq": "^1.80.6",
2019-11-09 20:03:46 -05:00
"dotenv": "^8.2.0",
2020-11-04 14:23:14 -05:00
"eth-ens-namehash": "^2.0.8",
2022-05-10 04:52:07 -04:00
"ethers": "^5.6.4",
"fastify": "^3.28.0",
2022-05-18 04:18:10 -04:00
"gas-price-oracle": "^0.4.6",
2019-12-12 05:58:58 -05:00
"ioredis": "^4.14.1",
2022-05-10 04:52:07 -04:00
"json-schema-to-ts": "^2.2.0",
"node-fetch": "^2.6.7",
2022-05-23 03:17:39 -04:00
"reflect-metadata": "^0.1.13",
2022-05-10 04:52:07 -04:00
"torn-token": "link:../torn-token",
2022-05-23 03:17:39 -04:00
"tsyringe": "^4.6.0",
2022-05-13 03:05:38 -04:00
"tx-manager": "link:../tx-manager",
2020-09-27 22:28:34 -04:00
"uuid": "^8.3.0",
"web3": "^1.3.0",
2020-09-29 09:31:21 -04:00
"web3-core-promievent": "^1.3.0",
2020-10-14 07:43:38 -04:00
"web3-utils": "^1.2.2"
2019-07-18 09:22:56 -04:00
},
"devDependencies": {
2022-05-10 04:52:07 -04:00
"@typechain/ethers-v5": "^10.0.0",
"@types/ioredis": "^4.28.10",
2022-05-18 04:18:10 -04:00
"@types/uuid": "^8.3.4",
2022-05-10 04:52:07 -04:00
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
2020-09-30 04:03:13 -04:00
"chai": "^4.2.0",
2022-05-10 04:52:07 -04:00
"eslint": "^8.14.0",
2020-10-02 06:26:05 -04:00
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
2022-05-10 04:52:07 -04:00
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
2019-07-18 08:43:26 -04:00
}
}