2019-07-18 15:43:26 +03:00
|
|
|
{
|
|
|
|
"name": "relay",
|
2023-08-25 18:21:37 +03:00
|
|
|
"version": "4.1.5",
|
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": {
|
2020-09-28 05:28:34 +03:00
|
|
|
"server": "node src/server.js",
|
2020-10-05 17:22:52 +03:00
|
|
|
"worker": "node src/worker",
|
|
|
|
"treeWatcher": "node src/treeWatcher",
|
|
|
|
"priceWatcher": "node src/priceWatcher",
|
2021-02-09 18:53:28 +03:00
|
|
|
"healthWatcher": "node src/healthWatcher",
|
2020-10-02 13:26:05 +03: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 23:45:48 +03:00
|
|
|
"test": "mocha",
|
2023-07-12 22:56:11 +03:00
|
|
|
"build": "docker build -t tornadocash/relayer:mainnet-v4 .",
|
2023-07-12 20:36:16 +03:00
|
|
|
"start": "docker-compose up -d redis && concurrently \"yarn server\" \"yarn priceWatcher\" \"yarn treeWatcher\" \"yarn worker\" \"yarn healthWatcher\""
|
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": {
|
2023-09-14 19:43:36 +03:00
|
|
|
"@tornado/anonymity-mining": "^2.1.5",
|
2023-08-25 18:21:37 +03:00
|
|
|
"@tornado/circomlib": "^0.0.21",
|
2023-09-14 19:43:36 +03:00
|
|
|
"@tornado/fixed-merkle-tree": "^0.4",
|
|
|
|
"@tornado/tornado-config": "^1",
|
2023-08-25 18:21:37 +03:00
|
|
|
"@tornado/tornado-oracles": "1.2.2",
|
2023-09-14 19:43:36 +03:00
|
|
|
"@tornado/tx-manager": "^0.4.9",
|
2020-09-28 17:54:54 +03:00
|
|
|
"ajv": "^6.12.5",
|
2020-09-29 06:17:42 +03:00
|
|
|
"async-mutex": "^0.2.4",
|
2019-12-12 13:58:58 +03:00
|
|
|
"bull": "^3.12.1",
|
2023-07-12 20:36:16 +03:00
|
|
|
"concurrently": "^8.2.0",
|
2019-11-10 04:03:46 +03:00
|
|
|
"dotenv": "^8.2.0",
|
2020-11-04 22:23:14 +03:00
|
|
|
"eth-ens-namehash": "^2.0.8",
|
2019-07-18 15:43:26 +03:00
|
|
|
"express": "^4.17.1",
|
2019-12-12 13:58:58 +03:00
|
|
|
"ioredis": "^4.14.1",
|
2022-02-16 12:32:06 +03:00
|
|
|
"node-fetch": "^2.6.7",
|
2020-09-28 05:28:34 +03:00
|
|
|
"uuid": "^8.3.0",
|
|
|
|
"web3": "^1.3.0",
|
2020-09-29 16:31:21 +03:00
|
|
|
"web3-core-promievent": "^1.3.0",
|
2020-10-14 14:43:38 +03:00
|
|
|
"web3-utils": "^1.2.2"
|
2019-07-18 16:22:56 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-30 11:03:13 +03:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"eslint": "^6.6.0",
|
2020-10-02 13:26:05 +03:00
|
|
|
"eslint-config-prettier": "^6.12.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
|
|
"mocha": "^8.1.3",
|
|
|
|
"prettier": "^2.1.2"
|
2019-07-18 15:43:26 +03:00
|
|
|
}
|
|
|
|
}
|