-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.6 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@toverux/halloffame-server",
"private": true,
"scripts": {
"pm:update": "bun upgrade && bunx npm-check-updates -i && bun update",
"prisma": "bun prisma/run-prisma.ts",
"check": "tsc --noEmit; biome check --fix --error-on-warnings",
"build:client:watch": "ng build --watch --configuration development",
"run:cli": "bun projects/server/cli/main.ts",
"run:server": "bun projects/server/main.ts",
"run:server:watch": "bun --watch --no-clear-screen --inspect projects/server/main.ts",
"// Useful when working on the mod with the editor and game open so the server does not consume too much memory": "",
"run:server:light": "bun --smol projects/server/main.ts",
"serve:client": "ng serve",
"build": "bun check && ng build",
"start": "bun run:server"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.3.0"
},
"dependencies": {
"@angular/animations": "^19.0.5",
"@angular/common": "^19.0.5",
"@angular/compiler": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/platform-browser": "^19.0.5",
"@angular/platform-browser-dynamic": "^19.0.5",
"@angular/platform-server": "^19.0.5",
"@angular/router": "^19.0.5",
"@angular/ssr": "^19.0.6",
"@azure/storage-blob": "^12.26.0",
"@biomejs/biome": "^1.9.4",
"@fastify/multipart": "^8.3.0",
"@fastify/static": "^7.0.4",
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/platform-fastify": "^10.4.15",
"@nestjs/schedule": "^4.1.2",
"@prisma/client": "^6.1.0",
"@sentry/bun": "^8.47.0",
"@sentry/nestjs": "^8.47.0",
"common-tags": "^1.8.2",
"date-fns": "^4.1.0",
"filesize": "^10.1.6",
"lefthook": "^1.10.0",
"lru-cache": "^11.0.2",
"nest-commander": "^3.15.0",
"open": "^10.1.0",
"prisma": "^6.1.0",
"resolve-accept-language": "^3.1.10",
"rxjs": "~7.8.1",
"sharp": "^0.33.5",
"slug": "^10.0.0",
"tslib": "^2.8.1",
"uuid": "^11.0.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@angular/build": "^19.0.6",
"@angular/cli": "^19.0.6",
"@angular/compiler-cli": "^19.0.5",
"@types/bun": "^1.1.14",
"@types/common-tags": "^1.8.4",
"@types/inquirer": "^9.0.7",
"@types/slug": "^5.0.9",
"@types/uuid": "^10.0.0",
"typescript": "~5.6.3"
},
"volta": {
"node": "22.3.0"
},
"trustedDependencies": [
"@biomejs/biome",
"@nestjs/core",
"@parcel/watcher",
"@prisma/client",
"@prisma/engines",
"esbuild",
"lefthook",
"lmdb",
"msgpackr-extract",
"prisma",
"sharp"
]
}