-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "api-imemoraise",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/bun": "latest",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"@types/nodemailer": "^6.4.17",
"prisma": "^6.1.0",
"ts-node": "^10.9.2"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"dev": "bun --hot run index.ts",
"build": "tsc"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.6",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.3",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-validator": "^7.2.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"mysql": "^2.18.1",
"nodemailer": "^6.9.16",
"zod": "^3.24.1"
}
}