2019-07-18 14:43:26 +02:00
|
|
|
{
|
|
|
|
"name": "relay",
|
2022-04-13 15:13:05 +02:00
|
|
|
"version": "5.0.0-beta.10",
|
2020-07-16 15:33:35 +02:00
|
|
|
"description": "Relayer for Tornado.cash privacy solution. https://tornado.cash",
|
2019-07-18 14:43:26 +02:00
|
|
|
"scripts": {
|
2020-09-28 04:28:34 +02:00
|
|
|
"server": "node src/server.js",
|
2020-10-05 16:22:52 +02:00
|
|
|
"worker": "node src/worker",
|
2021-02-09 16:53:28 +01:00
|
|
|
"healthWatcher": "node src/healthWatcher",
|
2020-10-02 12:26:05 +02: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 21:45:48 +01:00
|
|
|
"test": "mocha",
|
2021-06-03 16:23:30 +02:00
|
|
|
"start": "yarn server & yarn worker & yarn healthWatcher"
|
2019-07-18 14:43:26 +02:00
|
|
|
},
|
2019-11-23 09:18:54 +01:00
|
|
|
"author": "tornado.cash",
|
2019-07-18 14:43:26 +02:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-09-28 16:54:54 +02:00
|
|
|
"ajv": "^6.12.5",
|
2019-12-12 11:58:58 +01:00
|
|
|
"bull": "^3.12.1",
|
2019-11-10 02:03:46 +01:00
|
|
|
"dotenv": "^8.2.0",
|
2019-07-18 14:43:26 +02:00
|
|
|
"express": "^4.17.1",
|
2022-04-13 15:13:05 +02:00
|
|
|
"gas-price-oracle": "^0.4.6",
|
2019-12-12 11:58:58 +01:00
|
|
|
"ioredis": "^4.14.1",
|
2022-01-12 14:35:39 +01:00
|
|
|
"torn-token": "^1.0.5",
|
2022-04-13 15:13:05 +02:00
|
|
|
"tx-manager": "^0.4.6",
|
2020-09-28 04:28:34 +02:00
|
|
|
"uuid": "^8.3.0",
|
|
|
|
"web3": "^1.3.0",
|
2020-10-14 13:43:38 +02:00
|
|
|
"web3-utils": "^1.2.2"
|
2019-07-18 15:22:56 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-30 10:03:13 +02:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"eslint": "^6.6.0",
|
2020-10-02 12:26:05 +02:00
|
|
|
"eslint-config-prettier": "^6.12.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
|
|
"mocha": "^8.1.3",
|
|
|
|
"prettier": "^2.1.2"
|
2019-07-18 14:43:26 +02:00
|
|
|
}
|
|
|
|
}
|