-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
53
54
55
56
57
58
59
{
"name": "owr-api",
"version": "1.0.0-beta",
"author": "Xen0Xys",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "bun --bun nest build",
"start": "bun --bun nest start",
"start:dev": "bun --hot ./src/app.ts",
"start:prod": "bun dist/src/app",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fastify/helmet": "^13.0.2",
"@fastify/static": "^8.3.0",
"@nestjs/common": "^11.1.10",
"@nestjs/config": "^4.0.2",
"@nestjs/cli": "^11.0.14",
"@nestjs/core": "^11.1.10",
"@nestjs/jwt": "^11.0.2",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-fastify": "^11.1.10",
"@nestjs/platform-socket.io": "^11.1.10",
"@nestjs/schedule": "^6.1.0",
"@nestjs/swagger": "^11.2.3",
"@nestjs/throttler": "^6.5.0",
"@nestjs/websockets": "^11.1.10",
"@prisma/client": "6.19.1",
"axios": "^1.13.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"fastify": "5.6.2",
"jsdom": "^27.3.0",
"jszip": "^3.10.1",
"minio": "^8.0.6",
"passport-jwt": "^4.0.1",
"sharp": "^0.34.5",
"socket.io": "^4.8.2",
"swagger-themes": "^1.4.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@nestjs/schematics": "^11.0.9",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/bun": "^1.3.5",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.0.3",
"@types/passport-jwt": "^4.0.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"prisma": "^6.19.1",
"source-map-support": "^0.5.21",
"typescript": "^5.9.3"
},
"prisma": {
"seed": "bun prisma/seed.ts"
}
}