-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.7 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
45
46
47
48
49
50
{
"name": "roboclubif",
"version": "0.0.0",
"private": true,
"dependencies": {
"async": "2.1.4",
"connect-mongo": "^2.0.1",
"dotenv": "4.0.0",
"gm": "^1.23.1",
"imagemin": "^5.3.1",
"imagemin-jpegtran": "^5.0.2",
"imagemin-pngquant": "^5.1.0",
"keystone": "git+https://github.com/keystonejs/keystone",
"lodash": "^4.13.1",
"node-sass": "^4.9.2",
"node-sass-middleware": "0.11.0",
"pug": "2.0.0-beta11",
"webpack-requiredir": "^0.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-minify": "^0.4.0",
"babel-preset-stage-0": "^6.24.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.2.2",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"heroku-postbuild": "yarn install && yarn build",
"build-front": "gulp --gulpfile ./public/gulpfile.js",
"watch-front": "gulp watch --gulpfile ./public/gulpfile.js",
"build": "webpack -p",
"setup-db": "mongorestore -d roboclubif ./config/db-dump/roboclubif",
"update-repo": "git stash && git pull && git stash apply && yarn build && pm2 restart build",
"babel-node": "NODE_ENV=development babel-node --presets=latest --plugins=transform-object-rest-spread",
"start": "nodemon --exec npm run babel-node -- ./keystone.js"
}
}