-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.08 KB
/
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
42
43
44
{
"name": "wdi-project-2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"postinstall": "gulp build",
"seed": "node db/seeds"
},
"engines": {
"node": "8.x.x"
},
"author": "Mike Hayden <[email protected]> (https://github.com/mickyginger)",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.12",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-clean-css": "^3.4.1",
"gulp-nodemon": "^2.2.1",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"run-sequence": "^1.2.2"
},
"dependencies": {
"bcrypt": "^1.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.18.0",
"ejs": "^2.5.7",
"express": "^4.15.3",
"express-ejs-layouts": "^2.3.1",
"express-flash": "^0.0.2",
"express-session": "^1.15.5",
"method-override": "^2.3.9",
"mongoose": "^4.11.10",
"morgan": "^1.8.2"
}
}