forked from jakearchibald/big-web-quiz
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "big-web-quiz",
"version": "1.0.0",
"description": "",
"main": "server-build/index.js",
"scripts": {
"install-mongo": "docker pull mongo && docker create --name bwq-mongo -p 127.0.0.1:27017:27017 mongo",
"serve": "gulp serve",
"heroku-postbuild": "NODE_ENV=production gulp build",
"deploy": "git fetch live && git checkout -B live live/master && git merge -m 'Merging master' master && git push live live:master && git checkout master && npm run get-secrets",
"get-secrets": "git fetch live && rm -f $(git ls-tree -r --name-only live/secrets) && git cherry-pick live/secrets --no-commit && git reset"
},
"author": "",
"license": "ISC",
"engines": {
"node": "7.9.0"
},
"dependencies": {
"array-includes": "^3.0.2",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"body-parser": "^1.15.2",
"connect-gzip-static": "^1.0.0",
"connect-mongo": "^1.3.2",
"cors": "^2.8.3",
"del": "^2.2.2",
"element-closest": "^2.0.1",
"events": "^1.1.1",
"express": "^4.14.0",
"express-session": "^1.14.1",
"fastclick": "^1.0.6",
"google-auth-library": "^0.10.0",
"gulp": "git://github.com/gulpjs/gulp.git#6d71a658c61edb3090221579d8f97dbe086ba2ed",
"gulp-babel": "^6.1.2",
"gulp-debug": "^2.1.2",
"gulp-define-module": "^0.1.4",
"gulp-gzip": "^1.4.0",
"gulp-handlebars": "^4.0.0",
"gulp-process": "^0.1.2",
"gulp-rename": "^1.2.2",
"gulp-rev": "^7.1.2",
"gulp-rev-replace": "^0.4.3",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.7.3",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"mongoose": "^4.6.3",
"multer": "^1.2.0",
"preact": "^6.3.0",
"preact-render-to-string": "^3.2.1",
"prismjs": "^1.5.1",
"regenerator-runtime": "^0.9.5",
"respawn": "^2.4.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-stream": "^1.14.0",
"shuffle-array": "^1.0.0",
"source-map-support": "^0.4.3",
"uuid": "^3.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.6.1",
"eslint-config-htmlacademy": "^0.3.0"
}
}