forked from CtrlAlt07/civicsense
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "civicsense",
"version": "1.0.0",
"description": "A citizen complaint management system",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"dev": "nodemon backend/server.js",
"ml-api": "cd ml_api && uvicorn main:app --reload"
},
"dependencies": {
"axios": "^1.10.0",
"bcryptjs": "^2.4.3",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-fileupload": "^1.5.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.1",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"http-proxy-middleware": "^2.0.6",
"jsonwebtoken": "^9.0.1",
"mongodb": "^4.17.2",
"mongoose": "^8.16.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"mysql2": "^3.14.1",
"nodemailer": "^6.10.1",
"sequelize": "^6.32.1",
"twilio": "^4.23.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}