-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@aws-sdk/client-s3": "^3.971.0",
"@types/cors": "^2.8.19",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto-randomuuid": "^1.0.0",
"csvtojson": "^2.0.14",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"firebase": "^12.13.0",
"firebase-admin": "^13.7.0",
"http-status": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.20.0",
"mongoose": "^8.19.1",
"multer": "^2.2.0",
"node-cron": "^4.2.1",
"nodemailer": "^9.0.3",
"qrcode": "^1.5.4",
"socket.io": "^4.8.3",
"stripe": "^20.3.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node-dev": "^2.0.0",
"uuid": "^8.3.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.8.1",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^8.0.1",
"@types/qrcode": "^1.5.6",
"@types/uuid": "^10.0.0"
}
}