mirror of
https://github.com/tornadocash/tornado-relayer
synced 2024-02-02 15:04:06 +01:00
57 lines
2.0 KiB
JSON
57 lines
2.0 KiB
JSON
{
|
|
"name": "relay",
|
|
"version": "5.0.0",
|
|
"description": "Relayer for Tornado.cash privacy solution. https://tornado.cash",
|
|
"scripts": {
|
|
"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",
|
|
"dev:healthWorker": "nodemon --watch './src/**/*.ts' --exec ts-node src/healthWorker.ts",
|
|
"dev:txWorker": "nodemon --watch './src/**/*.ts' --exec ts-node src/txWorker.ts",
|
|
"build": "tsc",
|
|
"eslint": "eslint --ext .ts --ignore-path .gitignore .",
|
|
"prettier:check": "npx prettier --check . --config .prettierrc",
|
|
"prettier:fix": "npx prettier --write . --config .prettierrc",
|
|
"lint": "yarn eslint && yarn prettier:check"
|
|
},
|
|
"author": "tornado.cash",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@fastify/cors": "^8.0.0",
|
|
"@fastify/helmet": "^9.1.0",
|
|
"@fastify/sensible": "^5.1.0",
|
|
"ajv": "^8.11.0",
|
|
"bullmq": "^1.80.6",
|
|
"dotenv": "^8.2.0",
|
|
"ethers": "^5.6.4",
|
|
"fastify": "^4.2.0",
|
|
"gas-price-oracle": "git+https://github.com/peppersec/gas-price-oracle.git#de97ca2d154480aebbe9130778a69727f3a0f00b",
|
|
"ioredis": "^5.0.6",
|
|
"json-schema-to-ts": "^2.2.0",
|
|
"node-fetch": "^3.2.6",
|
|
"reflect-metadata": "^0.1.13",
|
|
"telegraf": "^4.8.2",
|
|
"torn-token": "^1.0.8",
|
|
"tsyringe": "^4.7.0",
|
|
"tx-manager": "git+https://github.com/tornadocash/tx-manager.git#e223c22791b5887012f24c4b15917001fc649dfe",
|
|
"uuid": "^8.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typechain/ethers-v5": "^10.0.0",
|
|
"@types/ioredis": "^4.28.10",
|
|
"@types/node": "^18.0.1",
|
|
"@types/uuid": "^8.3.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
"@typescript-eslint/parser": "^5.20.0",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^8.14.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"mocha": "^10.0.0",
|
|
"nodemon": "^2.0.15",
|
|
"ts-node": "^10.7.0",
|
|
"typechain": "^8.0.0",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|