-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.58 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": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node --transpile-only src/server.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"seed:admin": "ts-node src/scripts/seedAdmin.ts",
"seed:packages": "ts-node src/scripts/seedPackages.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@aws-sdk/client-s3": "^3.936.0",
"@aws-sdk/s3-request-presigner": "^3.936.0",
"@types/nodemailer": "^7.0.3",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.17",
"@types/socket.io": "^3.0.1",
"bcryptjs": "^3.0.3",
"canvas": "^3.2.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-validator": "^7.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.19.3",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.10",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pdfkit": "^0.17.2",
"qrcode": "^1.5.4",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.1",
"@types/node-cron": "^3.0.11",
"@types/pdfkit": "^0.17.3",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}