-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 848 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 848 Bytes
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
{
"dependencies": {
"@aws-sdk/client-s3": "^3.744.0",
"@prisma/client": "^6.4.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-unless": "^2.1.3",
"helmet": "^8.0.0",
"iconv-lite": "^0.6.3",
"is-email": "^1.0.2",
"is-uuid": "^1.0.2",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.47",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"openai": "^4.85.2",
"superstruct": "^1.0.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"nodemon": "^3.0.1",
"prisma": "^6.4.0"
},
"type": "module",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}