2019-07-18 08:43:26 -04:00
|
|
|
{
|
|
|
|
"name": "relay",
|
2022-05-24 05:34:51 -04:00
|
|
|
"version": "4.1.4",
|
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": {
|
2020-09-27 22:28:34 -04:00
|
|
|
"server": "node src/server.js",
|
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",
|
2023-07-12 13:36:16 -04:00
|
|
|
"start": "docker-compose up -d redis && concurrently \"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": {
|
2020-09-28 10:54:54 -04:00
|
|
|
"ajv": "^6.12.5",
|
2020-09-28 23:17:42 -04:00
|
|
|
"async-mutex": "^0.2.4",
|
2019-12-12 05:58:58 -05:00
|
|
|
"bull": "^3.12.1",
|
2020-12-15 16:24:01 -05:00
|
|
|
"circomlib": "git+https://github.com/tornadocash/circomlib.git#3b492f9801573eebcfe1b6c584afe8a3beecf2b4",
|
2023-07-12 13:36:16 -04:00
|
|
|
"concurrently": "^8.2.0",
|
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",
|
2019-07-18 08:43:26 -04:00
|
|
|
"express": "^4.17.1",
|
2020-09-27 22:28:34 -04:00
|
|
|
"fixed-merkle-tree": "^0.4.0",
|
2022-05-24 05:34:51 -04:00
|
|
|
"gas-price-oracle": "^0.4.7",
|
2019-12-12 05:58:58 -05:00
|
|
|
"ioredis": "^4.14.1",
|
2022-02-16 04:32:06 -05:00
|
|
|
"node-fetch": "^2.6.7",
|
2022-02-01 03:05:10 -05:00
|
|
|
"torn-token": "1.0.6",
|
2021-03-17 08:39:34 -04:00
|
|
|
"tornado-anonymity-mining": "^2.1.2",
|
2022-05-24 05:34:51 -04:00
|
|
|
"tx-manager": "^0.4.8",
|
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": {
|
2020-09-30 04:03:13 -04:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"eslint": "^6.6.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",
|
|
|
|
"prettier": "^2.1.2"
|
2019-07-18 08:43:26 -04:00
|
|
|
}
|
|
|
|
}
|