-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 856 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 856 Bytes
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
{
"name": "test-project",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"app:dev": "nodemon --env-file environments/development.env server.js",
"app:prod": "node --env-file environments/production.env server.js",
"app:debug": "ndb server.js",
"app:docker": "docker-compose up --build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"ndb": "^0.2.4",
"nodemon": "^3.0.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.4.5",
"node": "^20.5.0",
"nodemailer": "^6.9.6",
"redis": "^4.6.10",
"util": "^0.12.5",
"xss": "^1.0.14"
}
}