-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 KB
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
42
43
44
45
46
47
48
49
50
51
{
"name": "mvc-starter",
"version": "1.0.0",
"engines": {
"node": "7.5.0",
"npm": "4.0.5"
},
"description": "A Simple Example using React apps",
"main": "./server/app.js",
"scripts": {
"watch": "gulp watch",
"build": "gulp build",
"nodemon": "nodemon --watch ./server ./server/app.js ",
"start": "node ./server/app.js",
"pretest": "eslint ./server --fix",
"test": "echo \"Tests complete\""
},
"author": "James DiGrazia",
"license": "Apache 2.0",
"dependencies": {
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"connect-redis": "^3.0.2",
"cookie-parser": "^1.3.3",
"csurf": "^1.8.3",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.13.0",
"json2csv": "4.3.0",
"mongoose": "^4.4.6",
"multer": "1.4.1",
"serve-favicon": "^2.3.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.8",
"babel-preset-react": "^6.23.0",
"eslint": "^3.0.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "2.6.1",
"gulp-eslint": "^3.0.1",
"gulp-nodemon": "^2.4.2",
"gulp-sass": "^3.1.0",
"node-sass": "^4.5.2",
"nodemon": "^1.18.9"
}
}