-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1012 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
41
{
"name": "express-mvc-boilerplate",
"version": "1.0.0",
"description": "A simple mvc boilerplate for express.js",
"private": true,
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "mocha -R spec ./test/*.js",
"lint": "eslint ./ || exit 0",
"lint-fix": "eslint ./ --fix || exit 0"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"debug": "^3.2.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.10.10",
"morgan": "^1.10.0",
"pug": "^3.0.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"browser-sync": "^2.26.13",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.22.1",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.5.0",
"gulp-plumber": "^1.2.1",
"gulp-stylus": "^2.7.0",
"mocha": "^8.2.0",
"supertest": "^3.4.2"
}
}