-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 KB
/
package.json
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
{
"name": "nodejs-express-mongodb-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for building a RESTful APIs using Node.js, Express, and Mongoose",
"main": "src/index.js",
"scripts": {
"start": "ENV=prod node .",
"dev": "nodemon .",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "MuhamedMagdi",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.1",
"morgan": "^1.10.0",
"nodemailer": "^6.7.8",
"validator": "^13.7.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
},
"engines": {
"node": "^16"
}
}