-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "complex-app",
"version": "1.0.0",
"engines": {
"node": ">=18.0.0"
},
"description": "",
"main": "app.js",
"scripts": {
"start": "node db.js",
"dev": "nodemon db.js --ignore frontend-js --ignore public/",
"watch": "nodemon db.js --ignore frontend-js --ignore public/ & webpack --watch",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.25.0",
"@babel/preset-env": "^7.25.0",
"@sendgrid/mail": "^8.1.3",
"axios": "^1.7.7",
"babel-loader": "^9.2.1",
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dompurify": "^3.2.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"marked": "^14.1.0",
"md5": "^2.3.0",
"mongodb": "^6.10.0",
"nodemon": "^3.1.7",
"sanitize-html": "^2.13.0",
"socket.io": "^4.7.5",
"validator": "^13.12.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}