-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "backend-node",
"version": "1.0.0",
"description": "backend template for apps",
"main": "app.js",
"scripts": {
"start": "nodemon server.js",
"dev": "set NODE_ENV=development && nodemon server.js",
"prod": "set NODE_ENV=production && nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Julius-cell/secure-backend-node-template.git"
},
"author": "Julius-cell",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-mongo-sanitize": "^1.3.2",
"express-rate-limit": "^3.5.0",
"google-auth-library": "^7.1.1",
"helmet": "^3.16.0",
"hpp": "^0.2.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.2",
"validator": "^10.11.0",
"xss-clean": "^0.1.1"
},
"bugs": {
"url": "https://github.com/Julius-cell/secure-backend-node-template/issues"
},
"homepage": "https://github.com/Julius-cell/secure-backend-node-template#readme"
}