-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "isRug.API",
"version": "1.7.5-pub",
"description": "isRug.app API",
"main": "src/server.ts",
"scripts": {
"fast": "node -r @swc-node/register src/server.ts",
"test": "jest",
"debug": "node --inspect -r ts-node/register src/server.ts",
"hot": "nodemon --exec node -r @swc-node/register src/server.ts",
"start": "ts-node src/server.ts",
"build": "tsc -b",
"generate": "typechain --target node_modules/@hovoh/typechain-ethers-multicall --out-dir ./src/abi/generated --always-generate-overloads ./src/abi/json/*.json",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"license": "AGPL-3.0-only",
"author": "thedexplorer & b68h4",
"dependencies": {
"@fastify/express": "^2.0.0",
"@grpc/grpc-js": "^1.6.12",
"@grpc/proto-loader": "^0.7.2",
"@hovoh/ethcall": "dexlegion/ethcall",
"@jpmonette/bscscan": "^0.2.4",
"@solidity-parser/parser": "^0.16.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"ethers": "^5.7.1",
"evm": "^0.2.0",
"express-slow-down": "^1.4.0",
"fastify": "^4.1.0",
"ganache": "^7.3.2",
"https-proxy-agent": "^5.0.1",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"memdown": "^6.1.1",
"mongodb": "^4.11.0",
"pino-pretty": "^8.1.0",
"solc-typed-ast": "^13.0.3",
"web3": "^1.7.4"
},
"devDependencies": {
"@hovoh/typechain-ethers-multicall": "^10.1.3",
"@types/express": "^4.17.13",
"@types/express-slow-down": "^1.3.2",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.184",
"@types/node": "^18.0.0",
"@types/ws": "^8.5.4",
"jest": "^29.5.0",
"regenerator-runtime": "^0.13.9",
"solc": "0.8.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.3"
}
}