-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 964 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
39
{
"name": "nodejs-express-api-scaffold",
"description": "API application featuring Node.js, Express and MongoDB",
"version": "0.0.1",
"scripts": {
"start": "node ./bin/www",
"doc": "./bin/doc",
"dev": "nodemon",
"eslint": "eslint *.js"
},
"dependencies": {
"body-parser": "^1.16.1",
"express": "~4.14.0",
"helmet": "^3.4.0",
"lodash": "^4.16.2",
"mongoose": "^4.3.4",
"morgan": "^1.8.1",
"serve-static": "^1.10.0",
"winston": "^2.2.0"
},
"engines": {
"node": ">=5.0.0"
},
"devDependencies": {
"apidoc": "^0.17.5",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.10.2"
},
"repository": {
"type": "git",
"url": "https://github.com/danielrohers/nodejs-express-api-scaffold.git"
},
"bugs": {
"url": "https://github.com/danielrohers/nodejs-express-api-scaffold/issues"
},
"license": "MIT"
}