tornado-relayer/package.json

67 lines
2.5 KiB
JSON
Raw Normal View History

2019-07-18 15:43:26 +03:00
{
"name": "relay",
2022-05-18 11:18:10 +03:00
"version": "5.0.0",
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": {
"start": "yarn build && docker-compose up -d redis && concurrently \"yarn server\" \"yarn txWorker\" \"yarn healthWorker\"",
2022-07-26 10:49:32 +03:00
"server": "node build/src/app/index.js",
"txWorker": "node build/src/txWorker.js",
"healthWorker": "node build/src/healthWorker.js",
"dev": "docker-compose up -d redis && concurrently \"yarn dev:server\" \"yarn dev:txWorker\" \"yarn dev:healthWorker\"",
2022-06-29 13:02:30 +03:00
"dev:server": "nodemon --watch './src/**/*.ts' --exec ts-node src/app/index.ts",
2022-06-30 12:25:36 +03:00
"dev:healthWorker": "nodemon --watch './src/**/*.ts' --exec ts-node src/healthWorker.ts",
"dev:txWorker": "nodemon --watch './src/**/*.ts' --exec ts-node src/txWorker.ts",
"build": "yarn build:abi && tsc",
"build:abi": "yarn typechain --target ethers-v5 --out-dir src/contracts ./abis/*.abi.json",
2022-08-05 08:32:23 +03:00
"test": "tap --node-arg=--require=ts-node/register --no-check-coverage",
2022-06-29 13:02:30 +03:00
"eslint": "eslint --ext .ts --ignore-path .gitignore .",
2022-08-05 08:32:23 +03:00
"prettier:check": "npx prettier --check . --config .prettierrc --ignore-path .gitignore",
"prettier:fix": "npx prettier --write . --config .prettierrc --ignore-path .gitignore",
2022-06-29 13:02:30 +03:00
"lint": "yarn eslint && yarn prettier:check"
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": {
2022-07-04 11:25:28 +03:00
"@fastify/cors": "^8.0.0",
"@fastify/helmet": "^9.1.0",
"@fastify/sensible": "^5.1.0",
"ajv": "^8.11.0",
2022-05-10 11:52:07 +03:00
"bullmq": "^1.80.6",
2022-07-26 10:49:32 +03:00
"compare-versions": "^4.1.3",
"concurrently": "^8.2.0",
2019-11-10 04:03:46 +03:00
"dotenv": "^8.2.0",
2022-05-10 11:52:07 +03:00
"ethers": "^5.6.4",
2022-07-04 11:25:28 +03:00
"fastify": "^4.2.0",
2022-07-15 09:29:40 +03:00
"gas-price-oracle": "^0.5.0",
2022-06-06 11:08:34 +03:00
"ioredis": "^5.0.6",
2022-05-10 11:52:07 +03:00
"json-schema-to-ts": "^2.2.0",
2022-07-26 10:49:32 +03:00
"node-fetch": "2",
2022-05-23 10:17:39 +03:00
"reflect-metadata": "^0.1.13",
2022-05-26 13:08:59 +03:00
"telegraf": "^4.8.2",
2022-06-29 13:02:30 +03:00
"torn-token": "^1.0.8",
"tsyringe": "^4.8.0",
2022-07-15 09:29:40 +03:00
"tx-manager": "^0.4.9",
"uuid": "^8.3.0"
2019-07-18 16:22:56 +03:00
},
"devDependencies": {
"@typechain/ethers-v5": "^11.0.0",
2022-05-10 11:52:07 +03:00
"@types/ioredis": "^4.28.10",
"@types/node": "^20.4.1",
2022-08-05 08:32:23 +03:00
"@types/tap": "^15.0.7",
2022-05-18 11:18:10 +03:00
"@types/uuid": "^8.3.4",
2022-05-10 11:52:07 +03:00
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
2020-09-30 11:03:13 +03:00
"chai": "^4.2.0",
2022-07-26 10:49:32 +03:00
"eslint": "^8.19.0",
2022-06-29 13:02:30 +03:00
"eslint-config-prettier": "^8.5.0",
2022-07-04 11:25:28 +03:00
"mocha": "^10.0.0",
2022-07-26 10:49:32 +03:00
"nodemon": "^2.0.19",
2022-08-05 08:32:23 +03:00
"pino-pretty": "^8.1.0",
2022-07-26 10:49:32 +03:00
"prettier": "^2.7.1",
2022-08-05 08:32:23 +03:00
"tap": "^16.3.0",
2022-05-10 11:52:07 +03:00
"ts-node": "^10.7.0",
"typechain": "^8.2.0",
2022-07-04 11:25:28 +03:00
"typescript": "^4.7.4"
2019-07-18 15:43:26 +03:00
}
}