-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "backend-starter",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"postinstall": "prisma generate",
"migrate": "prisma migrate deploy",
"lint": "npx eslint ./src"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.15.1",
"dependencies": {
"@prisma/adapter-pg": "^7.0.1",
"@prisma/client": "^7.1.0",
"axios": "^1.13.2",
"bcryptjs": "^3.0.3",
"cloudinary": "^2.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"multer-storage-cloudinary": "^4.0.0",
"pg": "^8.16.3",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.6",
"prisma": "^7.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}