-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "ethereum-rpc-lb",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"test": "vitest",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"ioredis": "^5.3.2",
"nodemailer": "^7.0.9",
"opossum": "^6.2.0",
"pino": "^10.0.0",
"prom-client": "^15.1.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.7.2",
"@types/node-fetch": "^2.6.13",
"@types/nodemailer": "^7.0.2",
"@types/opossum": "^8.1.9",
"autocannon": "^7.15.0",
"axios": "^1.12.2",
"eslint": "^9.37.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^1.3.0"
}
}