-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 882 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
{
"name": "simple-server-template",
"version": "1.0.0",
"description": "simple server template",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "LOGGER_LEVEL=debug npx nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masterpandabear/simple-server-template.git"
},
"keywords": [
"NodeJS"
],
"author": "Alberto Arias Azcona",
"license": "MIT",
"bugs": {
"url": "https://github.com/masterpandabear/simple-server-template/issues"
},
"homepage": "https://github.com/masterpandabear/simple-server-template#readme",
"dependencies": {
"express": "^4.16.3",
"express-winston": "^3.0.0",
"winston": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}