-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "care-point",
"version": "1.0.0",
"main": "server.js",
"author": "waliullah",
"license": "MIT",
"prisma": {
"schema": "schema.prisma"
},
"scripts": {
"build": "pnpm install --force && tsc",
"start": "node ./dist/server.js",
"format": "prettier --write .",
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts"
},
"dependencies": {
"@prisma/client": "6.19.0",
"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.2",
"express": "^5.1.0",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"openai": "^6.8.1",
"prettier": "^3.6.2",
"stripe": "^19.3.0",
"uuid": "^13.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.5.0",
"prisma": "6.19.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.2"
}
}