-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"name": "security",
"version": "1.0.0",
"description": "LinkedIn Learning - Node.js: Securing RESTful APIs",
"main": "server.js",
"scripts": {
"start": "nodemon server.js --exec babel-node -e js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"author": "Dmitry White",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"express": "^4.18.2",
"express-rate-limit": "^5.5.1",
"helmet": "^4.6.0",
"joi": "^17.9.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.13.8"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^3.0.1",
"prettier": "^2.0.5"
}
}