51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"name": "relay",
|
|
"version": "4.1.4",
|
|
"description": "Relayer for Tornado.cash privacy solution. https://tornado.cash",
|
|
"scripts": {
|
|
"server": "node src/server.js",
|
|
"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",
|
|
"build": "docker build -t tornadocash/relayer:mainnet-v4 .",
|
|
"start": "docker-compose up -d redis && concurrently \"yarn server\" \"yarn priceWatcher\" \"yarn treeWatcher\" \"yarn worker\" \"yarn healthWatcher\""
|
|
},
|
|
"author": "tornado.cash",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"ajv": "^6.12.5",
|
|
"async-mutex": "^0.2.4",
|
|
"bull": "^3.12.1",
|
|
"circomlib": "git+https://github.com/tornadocash/circomlib.git#3b492f9801573eebcfe1b6c584afe8a3beecf2b4",
|
|
"concurrently": "^8.2.0",
|
|
"dotenv": "^8.2.0",
|
|
"eth-ens-namehash": "^2.0.8",
|
|
"express": "^4.17.1",
|
|
"fixed-merkle-tree": "^0.4.0",
|
|
"gas-price-oracle": "^0.4.7",
|
|
"ioredis": "^4.14.1",
|
|
"node-fetch": "^2.6.7",
|
|
"torn-token": "1.0.6",
|
|
"tornado-anonymity-mining": "^2.1.2",
|
|
"tx-manager": "^0.4.8",
|
|
"uuid": "^8.3.0",
|
|
"web3": "^1.3.0",
|
|
"web3-core-promievent": "^1.3.0",
|
|
"web3-utils": "^1.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"eslint": "^6.6.0",
|
|
"eslint-config-prettier": "^6.12.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"mocha": "^8.1.3",
|
|
"prettier": "^2.1.2"
|
|
}
|
|
}
|