-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 683 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 683 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
{
"name": "rocketadmin-ws-server",
"version": "1.0.0",
"type": "module",
"license": "UNLICENSED",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "biome check src/",
"lint:fix": "biome check --write src/"
},
"dependencies": {
"@hono/node-server": "^1.19.13",
"hono": "^4.12.12",
"jsonwebtoken": "^9.0.3",
"lru-cache": "^11.2.6",
"nanoid": "^5.1.6",
"pino": "^10.3.1",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.10.2",
"@types/ws": "^8.18.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}