-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 985 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 985 Bytes
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
{
"name": "super-rpc",
"version": "1.0.0",
"description": "Middleware for EVM RPCs",
"main": "app.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint 'src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "git@d10r.net",
"license": "ISC",
"dependencies": {
"axios": "^0.25.0",
"body-parser": "^1.19.1",
"express": "^4.22.1",
"js-yaml": "^4.1.1",
"prom-client": "^15.1.3",
"socket.io": "^4.5.0",
"socket.io-client": "^4.5.0",
"sqlite3": "^5.1.7",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.9",
"@types/sqlite3": "^3.1.11",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}