forked from aichholzer/ExpressBoilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 969 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
40
{
"name": "boilerplate",
"description": "A basic Express boilerplate application.",
"version": "1.2.0",
"author": {
"name": "Stefan Aichholzer",
"email": "[email protected]",
"url": "https://github.com/aichholzer"
},
"repository": {
"type": "git",
"url": "[email protected]:aichholzer/ExpressBoilerplate.git"
},
"bugs": {
"url": "https://github.com/aichholzer/ExpressBoilerplate/issues"
},
"main": "app/index.js",
"engines": {
"node": ">=8.2.1"
},
"dependencies": {
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"mongoose": "^4.6.6",
"pug": "^2.0.0-beta11",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"nodemon": "1.11.0"
},
"scripts": {
"start": "node app/",
"dev": "nodemon app/ --ignore app/public/"
}
}