-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.92 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
{
"name": "slugsurvival",
"version": "4.0.0",
"scripts": {
"dev": "gulp && cross-env NODE_ENV=development webpack-dev-server --hot --progress",
"prod": "gulp && cross-env NODE_ENV=production webpack --progress && gulp prod",
"cf-site": "gulp && cross-env NODE_ENV=production webpack --progress && gulp cf-site",
"test": "node node_modules/.bin/mocha --timeout 30000 --reporter spec",
"cf": "npm run prod && rm public/assets.js && wrangler publish --env production"
},
"repository": {
"type": "git",
"url": "[email protected]:zllovesuki/slugsurvival.git"
},
"author": "Rachel Chen <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"bluebird": "^3.7.0",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"compound-subject": "0.0.2",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"event-source-polyfill": "^1.0.9",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-concat-css": "^3.1.0",
"gulp-file": "^0.4.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.17",
"localforage": "^1.7.3",
"lodash.debounce": "^4.0.8",
"lunr": "^2.3.7",
"mini-css-extract-plugin": "^0.9.0",
"mobile-detect": "^1.4.4",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"simple-statistics": "^7.0.5",
"stringify": "^5.2.0",
"superagent": "^5.1.0",
"terser": "^4.3.8",
"v-tooltip": "^2.0.2",
"vue": "^2.6.11",
"vue-loader": "^15.9.0",
"vue-resource": "^1.5.1",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.11",
"vueify-insert-css": "^1.0.0",
"vuex": "^3.1.1",
"vuex-router-sync": "^5.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}