-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.82 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "blood-donation-management-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch src/server.ts",
"seed:superAdmin": "tsx src/app/db/index.ts",
"lint": "eslint . ./src/**/*",
"start": "node dist/server.js",
"build": "prisma generate && tsup",
"postinstall": "prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@types/ejs": "^3.1.5",
"bcrypt": "^6.0.0",
"cloudinary": "^2.9.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"ejs": "^5.0.1",
"express": "^5.2.1",
"google-auth-library": "^10.6.2",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^8.0.4",
"pg": "^8.20.0",
"sslcommerz-lts": "^1.2.0",
"tsup": "^8.5.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/nodemailer": "^7.0.11",
"@types/pg": "^8.20.0",
"dotenv": "^17.4.2",
"eslint": "^10.1.0",
"nodemon": "^3.1.14",
"prisma": "^7.7.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
],
"prisma": {
"schema": "./prisma/schema"
}
}