-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.8 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
60
61
62
63
64
65
{
"name": "csec-portal-backend",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch src --exec ts-node src/server.ts",
"start": "node dist/server.js",
"build": "tsc",
"seed": "ts-node src/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/segnitsega/CSEC-portal-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/segnitsega/CSEC-portal-backend/issues"
},
"homepage": "https://github.com/segnitsega/CSEC-portal-backend#readme",
"dependencies": {
"@cloudinary-util/types": "^1.6.0",
"@types/multer": "^1.4.12",
"bcrypt": "^5.1.1",
"cloudinary": "^2.6.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cron": "^4.3.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"moment-timezone": "^0.5.48",
"mongoose": "^8.13.2",
"multer": "^1.4.5-lts.2",
"node-cron": "^3.0.3",
"nodemailer": "^6.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/moment-timezone": "^0.5.13",
"@types/node": "^22.15.3",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}