-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "apis",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"serve": "pm2 start ./build/server.js",
"serve:stop": "pm2 stop ./build/server.js",
"status": "pm2 status",
"logs:server": "pm2 logs server",
"logs:start": "pm2 logs start",
"serve:dev": "tsx watch ./server.ts",
"index": "pm2 start ./build/indexer/start.js",
"index:stop": "pm2 stop ./build/indexer/start.js",
"start": "pnpm build && pnpm start:nobuild",
"start:nobuild": "pnpm serve && pnpm index",
"restart2": "pnpm build && pnpm stop && pnpm start:nobuild",
"stop": "pm2 delete all 2>&1 || true",
"lint": "eslint --cache .",
"lint:fix": "eslint --fix --cache ."
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ragetrade/sdk": "2.0.4",
"@uniswap/sdk-core": "^3.1.1",
"@uniswap/v3-sdk": "^3.9.0",
"@urql/devtools": "^2.0.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"eslint-plugin-import": "^2.27.5",
"ethers": "^5.7.1",
"express": "~4.16.1",
"fs-extra": "^10.1.0",
"graphql": "^16.5.0",
"http-errors": "~1.6.3",
"ioredis": "^5.2.3",
"isomorphic-unfetch": "^3.1.0",
"morgan": "~1.9.1",
"node-cron": "^3.0.2",
"node-fetch": "2",
"tsup": "^6.5.0",
"urql": "^3.0.3",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"@types/node-cron": "^3.0.7",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"eslint": "8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"pm2": "^5.2.0",
"prettier": "2.7.1",
"react": "^18.2.0",
"tsx": "^3.12.3",
"typescript": "4.8"
}
}