-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 834 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 834 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
{
"name": "my-http-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test-server": "set NODE_ENV=development&& nodemon --inspect server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"pretty-quick": "pretty-quick --ignore-path \"./node_modules/**/*.js\"",
"lint": "./node_modules/.bin/eslint \"**/*.js\" --ignore-pattern node_modules/"
},
"author": "Gavin M.",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"config": "3.2.2",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"helmet": "3.20.0"
},
"devDependencies": {
"eslint": "6.2.2",
"prettier": "1.18.2",
"pretty-quick": "1.11.1"
}
}