package.json
1.49 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
{
"name": "node-js-scaffolder",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "sequelize db:migrate --config=config/migrations.json --env=production && pm2 startOrReload config/pm2/production.json",
"dev": "npm install && npm run gulp dev",
"gulp": "gulp",
"prestart": "npm install && npm run gulp",
"startStaging": "npm run prestart && sequelize db:migrate --config=config/migrations.json --env=staging && pm2 startOrReload config/pm2/staging.json",
"stop": "pm2 stop config/pm2/production.json",
"stopStaging": "pm2 stop config/pm2/staging.json",
"deploy": "git pull && npm start",
"deployStaging": "git pull && npm run startStaging"
},
"dependencies": {
"babelify": "^7.3.0",
"body-parser": "^1.13.3",
"browserify": "^13.1.0",
"bunyan": "^1.8.1",
"compression": "^1.5.2",
"cookie-parser": "^1.3.3",
"del": "^2.2.1",
"express": "^4.13.3",
"glob": "^6.0.4",
"helmet": "^2.1.2",
"method-override": "^2.3.0",
"morgan": "^1.6.1",
"mysql": "^2.8.0",
"nunjucks": "^2.0.0",
"run-sequence": "^1.2.2",
"sequelize": "^3.5.1",
"serve-favicon": "^2.3.0",
"vinyl-buffer": "^1.0.0"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-livereload": "^3.8.1",
"gulp-nodemon": "^2.1.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^2.0.4",
"gulp-tap": "^0.1.3",
"gulp-uglify": "^2.0.0",
"supertest": "^2.0.0"
}
}