-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.65 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
51
52
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "central/main.ts",
"scripts": {
"dev": "concurrently -n central,relay -c blue,magenta \"pnpm run central:dev\" \"wait-on -t 30000 http-get://127.0.0.1:6969/health && pnpm run relay:dev\"",
"central:dev": "NODE_ENV=dev tsx --watch central/main.ts",
"central:start": "NODE_ENV=prod tsx central/main.ts",
"central:pm2:start": "pm2 start --name shellular-server-central pnpm -- run central:start",
"central:pm2:restart": "pm2 restart --update-env shellular-server-central",
"central:notices": "tsx scripts/notices.ts",
"relay:dev": "NODE_ENV=dev tsx --watch relay/main.ts",
"relay:start": "NODE_ENV=prod tsx relay/main.ts",
"relay:pm2:start": "pm2 start --name shellular-server-relay pnpm -- run relay:start",
"relay:pm2:restart": "pm2 restart --update-env shellular-server-relay",
"type-check": "tsc",
"format": "pnpx @biomejs/biome check --write"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-only",
"type": "commonjs",
"dependencies": {
"@oslojs/encoding": "^1.1.0",
"@shellular/protocol": "^0.0.27",
"arctic": "^3.7.0",
"better-sqlite3": "^12.10.0",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"jose": "^6.2.3",
"nanoid": "^5.1.7",
"posthog-node": "^5.40.0",
"ws": "^8.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/ws": "^8.18.1",
"concurrently": "^10.0.3",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"wait-on": "^9.0.10"
},
"optionalDependencies": {
"bufferutil": "^4.1.0"
}
}