This repository was archived by the owner on Feb 5, 2024. It is now read-only.
forked from jakearchibald/big-web-quiz
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.21 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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 27017:27017 mongo",
"serve": "gulp serve",
"postinstall": "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": "6.9.1",
"npm": "3.10.8"
},
"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",
"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",
"googleapis": "^14.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"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",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"whatwg-fetch": "^1.0.0"
}
}