-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.54 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.54 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
{
"name": "03-rpc-router",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "esbuild ./src/dedicated/index.ts --bundle --outfile=dist/bundle.js --platform=node --external:uWebSockets.js",
"dev": "concurrently \"npm run build -- --watch\" \"nodemon ./dist/bundle.js | npx pino-pretty\"",
"docker:build": "docker build -t containerman17/rpcrouter:v1.0.0 .",
"docker:run": "npm run docker:build && docker compose up -d",
"docker:push": "docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag containerman17/rpcrouter:v1.0.0 --tag containerman17/rpcrouter:latest .",
"preview": "npm run build && node ./dist/bundle.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/ws": "^8.5.10",
"bottleneck": "^2.19.5",
"bufferutil": "^4.0.8",
"concurrently": "^8.2.2",
"dotenv": "^16.3.1",
"esbuild": "^0.19.11",
"express": "^4.18.2",
"http-proxy": "^1.18.1",
"node-fetch": "^3.3.2",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"prom-client": "^15.1.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.41.0",
"web3": "^4.5.0",
"ws": "^8.16.0",
"zod": "^3.22.4",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"undici": "^6.6.2",
"vitest": "^1.2.2",
"zx": "^7.2.3"
}
}