-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 KB
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node --expose-gc --max-old-space-size=4096 dist/index.js",
"dev": "nodemon",
"ci": "npm install --frozen-lockfile",
"dc:up": "docker compose up -d",
"dc:destroy": "docker compose down --volumes --remove-orphans --timeout 15",
"test": "nodemon test.ts",
"bench": "nodemon bench.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.1",
"@types/ws": "^8.5.12",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/papaparse": "^5.3.15",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"body-parser": "^1.20.2",
"bottleneck": "^2.19.5",
"bullmq": "^5.13.0",
"bullmq-otel": "^1.0.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"mongoose": "^8.6.2",
"p-queue": "^6.6.2",
"papaparse": "^5.4.1",
"ws": "^8.18.0",
"zod": "^3.23.8"
}
}