-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "backend",
"version": "1.0.0",
"description": "NestJS + Prisma (MongoDB) starter",
"main": "dist/main.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/main.js",
"start:dev": "ts-node-dev --respawn --transpile-only src/main.ts",
"prisma:generate": "prisma generate",
"prisma:validate": "prisma validate",
"verify": "npm run build && npm run prisma:validate"
},
"dependencies": {
"@nestjs/common": "^10.4.8",
"@nestjs/core": "^10.4.8",
"@nestjs/mongoose": "^10.1.0",
"@nestjs/platform-express": "^10.4.8",
"@nestjs/swagger": "^7.4.2",
"@nestjs/platform-socket.io": "^10.4.8",
"@nestjs/websockets": "^10.4.8",
"@prisma/client": "^5.22.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"@supabase/supabase-js": "^2.43.5",
"dotenv": "^16.6.1",
"multer": "^1.4.5-lts.1",
"mongoose": "^8.9.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"socket.io": "^4.8.1",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/multer": "^1.4.12",
"@types/node": "^22.10.2",
"prisma": "^5.22.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
},
"private": true
}