-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 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
{
"name": "server",
"version": "1.0.0",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec \"npx tsx\" src/server.ts",
"build": "npx prisma generate && npx tsc",
"dev": "nodemon --exec \"npx tsx\" src/server.ts",
"db:seed": "npx tsx prisma/seed.ts",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"backup": "npx tsx scripts/backup.ts"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-firehose": "^3.948.0",
"@prisma/client": "^6.18.0",
"@types/nodemailer": "^7.0.4",
"@vendia/serverless-express": "^4.12.6",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"cloudinary": "^2.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csv-parser": "^3.2.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"fs-extra": "^11.3.2",
"jsonwebtoken": "^9.0.2",
"jws": "^3.2.3",
"multer": "^2.0.2",
"node-cache": "^5.1.2",
"nodemailer": "^7.0.11",
"resend": "^6.6.0",
"streamifier": "^0.1.1"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.3.0",
"@types/node-cache": "^4.1.3",
"@types/streamifier": "^0.1.2",
"nodemon": "^3.1.10",
"prisma": "^6.18.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}