-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.36 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
{
"name": "vue-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node index.js",
"start": "npm run build && npm run clean-functions && npm run update-functions-assets && firebase serve --only functions,hosting",
"deploy": "npm run build && npm run clean-functions && npm run update-functions-assets && firebase deploy --only functions,hosting",
"clean-functions": "rimraf functions/dist && rimraf functions/index.template.html && rimraf functions/index.js",
"update-functions-assets": "cpy ./dist/**/*.* ./functions/dist/ && cpy index.template.html functions/ && cpy index.js functions/",
"build": "rimraf dist && npm run build-client && npm run build-server",
"build-client": "cross-env NODE_ENV=production webpack --config build/webpack.client.config.js --hide-modules",
"build-server": "cross-env NODE_ENV=production webpack --config build/webpack.server.config.js --hide-modules"
},
"author": "",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"firebase-admin": "^7.4.0",
"firebase-functions": "^2.3.1",
"lru-cache": "^4.1.5",
"route-cache": "^0.4.4",
"vue": "^2.6.10",
"vue-router": "^3.0.6",
"vue-server-renderer": "^2.6.10",
"vuex": "^3.1.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^7.2.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"cpy-cli": "^1.0.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"rimraf": "^2.6.3",
"sass-loader": "^6.0.7",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"sw-precache-webpack-plugin": "^0.11.5",
"url-loader": "^0.6.2",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.6.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
}
}