-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 908 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
{
"name": "node-secure",
"version": "1.0.0",
"description": "A sample Express application with all sorts of security functionality built in.",
"main": "index.js",
"type": "commonjs",
"scripts": {
"lint": "eslint .",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Norbert Csaba Herczeg <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"helmet": "^3.21.1",
"morgan": "^1.9.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=12"
}
}