mirror of
https://github.com/tornadocash/tornado-relayer
synced 2024-02-02 15:04:06 +01:00
60 lines
1.9 KiB
JSON
60 lines
1.9 KiB
JSON
{
|
|
"name": "relay",
|
|
"version": "5.0.0",
|
|
"description": "Relayer for Tornado.cash privacy solution. https://tornado.cash",
|
|
"scripts": {
|
|
"dev:app": "nodemon --watch './src/**/*.ts' --exec ts-node src/app/index.ts",
|
|
"server": "node src/app/server.ts",
|
|
"worker": "node src/worker",
|
|
"treeWatcher": "node src/treeWatcher",
|
|
"priceWatcher": "node src/priceWatcher",
|
|
"healthWatcher": "node src/healthWatcher",
|
|
"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",
|
|
"test": "mocha",
|
|
"start": "yarn server & yarn priceWatcher & yarn treeWatcher & yarn worker & yarn healthWatcher"
|
|
},
|
|
"author": "tornado.cash",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@fastify/cors": "^7.0.0",
|
|
"@fastify/helmet": "^8.0.1",
|
|
"@fastify/sensible": "^4.1.0",
|
|
"bullmq": "^1.80.6",
|
|
"dotenv": "^8.2.0",
|
|
"eth-ens-namehash": "^2.0.8",
|
|
"ethers": "^5.6.4",
|
|
"fastify": "^3.28.0",
|
|
"gas-price-oracle": "^0.4.6",
|
|
"ioredis": "^4.14.1",
|
|
"json-schema-to-ts": "^2.2.0",
|
|
"node-fetch": "^2.6.7",
|
|
"reflect-metadata": "^0.1.13",
|
|
"torn-token": "link:../torn-token",
|
|
"tsyringe": "^4.6.0",
|
|
"tx-manager": "link:../tx-manager",
|
|
"uuid": "^8.3.0",
|
|
"web3": "^1.3.0",
|
|
"web3-core-promievent": "^1.3.0",
|
|
"web3-utils": "^1.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@typechain/ethers-v5": "^10.0.0",
|
|
"@types/ioredis": "^4.28.10",
|
|
"@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": "^6.12.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"mocha": "^8.1.3",
|
|
"nodemon": "^2.0.15",
|
|
"ts-node": "^10.7.0",
|
|
"typechain": "^8.0.0",
|
|
"typescript": "^4.6.3"
|
|
}
|
|
}
|