2019-07-18 15:43:26 +03:00
|
|
|
{
|
|
|
|
"name": "relay",
|
2022-05-18 11:18:10 +03:00
|
|
|
"version": "5.0.0",
|
2020-07-16 16:33:35 +03:00
|
|
|
"description": "Relayer for Tornado.cash privacy solution. https://tornado.cash",
|
2019-07-18 15:43:26 +03:00
|
|
|
"scripts": {
|
2022-06-29 13:02:30 +03:00
|
|
|
"server": "node app/index.js",
|
|
|
|
"txWorker": "node txWorker.js",
|
|
|
|
"healthWorker": "node healthWorker.js",
|
|
|
|
"dev:server": "nodemon --watch './src/**/*.ts' --exec ts-node src/app/index.ts",
|
2022-06-30 12:25:36 +03:00
|
|
|
"dev:healthWorker": "nodemon --watch './src/**/*.ts' --exec ts-node src/healthWorker.ts",
|
|
|
|
"dev:txWorker": "nodemon --watch './src/**/*.ts' --exec ts-node src/txWorker.ts",
|
2022-06-14 13:06:42 +03:00
|
|
|
"build": "tsc",
|
2022-06-29 13:02:30 +03:00
|
|
|
"eslint": "eslint --ext .ts --ignore-path .gitignore .",
|
2020-10-02 13:26:05 +03:00
|
|
|
"prettier:check": "npx prettier --check . --config .prettierrc",
|
|
|
|
"prettier:fix": "npx prettier --write . --config .prettierrc",
|
2022-06-29 13:02:30 +03:00
|
|
|
"lint": "yarn eslint && yarn prettier:check"
|
2019-07-18 15:43:26 +03:00
|
|
|
},
|
2019-11-23 11:18:54 +03:00
|
|
|
"author": "tornado.cash",
|
2019-07-18 15:43:26 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2022-05-18 11:18:10 +03:00
|
|
|
"@fastify/cors": "^7.0.0",
|
|
|
|
"@fastify/helmet": "^8.0.1",
|
|
|
|
"@fastify/sensible": "^4.1.0",
|
2022-05-10 11:52:07 +03:00
|
|
|
"bullmq": "^1.80.6",
|
2019-11-10 04:03:46 +03:00
|
|
|
"dotenv": "^8.2.0",
|
2022-05-10 11:52:07 +03:00
|
|
|
"ethers": "^5.6.4",
|
|
|
|
"fastify": "^3.28.0",
|
2022-06-30 05:10:43 +03:00
|
|
|
"gas-price-oracle": "git+https://github.com/peppersec/gas-price-oracle.git#de97ca2d154480aebbe9130778a69727f3a0f00b",
|
2022-06-06 11:08:34 +03:00
|
|
|
"ioredis": "^5.0.6",
|
2022-05-10 11:52:07 +03:00
|
|
|
"json-schema-to-ts": "^2.2.0",
|
2022-02-16 12:32:06 +03:00
|
|
|
"node-fetch": "^2.6.7",
|
2022-05-23 10:17:39 +03:00
|
|
|
"reflect-metadata": "^0.1.13",
|
2022-05-26 13:08:59 +03:00
|
|
|
"telegraf": "^4.8.2",
|
2022-06-29 13:02:30 +03:00
|
|
|
"torn-token": "^1.0.8",
|
2022-05-23 10:17:39 +03:00
|
|
|
"tsyringe": "^4.6.0",
|
2022-06-30 05:10:43 +03:00
|
|
|
"tx-manager": "git+https://github.com/tornadocash/tx-manager.git#e223c22791b5887012f24c4b15917001fc649dfe",
|
2022-06-14 13:06:42 +03:00
|
|
|
"uuid": "^8.3.0"
|
2019-07-18 16:22:56 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-10 11:52:07 +03:00
|
|
|
"@typechain/ethers-v5": "^10.0.0",
|
|
|
|
"@types/ioredis": "^4.28.10",
|
2022-06-14 13:06:42 +03:00
|
|
|
"@types/node": "^17.0.42",
|
2022-05-18 11:18:10 +03:00
|
|
|
"@types/uuid": "^8.3.4",
|
2022-05-10 11:52:07 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
|
|
"@typescript-eslint/parser": "^5.20.0",
|
2020-09-30 11:03:13 +03:00
|
|
|
"chai": "^4.2.0",
|
2022-05-10 11:52:07 +03:00
|
|
|
"eslint": "^8.14.0",
|
2022-06-29 13:02:30 +03:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2020-10-02 13:26:05 +03:00
|
|
|
"mocha": "^8.1.3",
|
2022-05-10 11:52:07 +03:00
|
|
|
"nodemon": "^2.0.15",
|
|
|
|
"ts-node": "^10.7.0",
|
|
|
|
"typechain": "^8.0.0",
|
|
|
|
"typescript": "^4.6.3"
|
2019-07-18 15:43:26 +03:00
|
|
|
}
|
|
|
|
}
|