-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 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
74
75
76
{
"name": "vue-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production node index",
"clean": "rimraf dist",
"build": "cross-env NODE_ENV=production node build/build",
"build:server": "cross-env NODE_ENV=production webpack --config build/server",
"build:client": "cross-env NODE_ENV=production webpack --config build/client",
"build:dll": "cross-env NODE_ENV=production webpack --config build/dll",
"dev": "nodemon build/build.js"
},
"author": "zhenbo",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.2.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"koa-webpack-dev-middleware": "^2.0.2",
"koa-webpack-hot-middleware": "^1.0.3",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"nodemon": "^1.18.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"progress": "^2.0.1",
"progress-bar-webpack-plugin": "^1.11.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^1.3.4",
"url-loader": "^1.1.2",
"vue-loader": "^15.4.2",
"vue-server-renderer": "^2.5.17",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.18.0",
"cross-env": "^5.2.0",
"html-minifier": "^3.5.21",
"koa": "^2.5.3",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lru-cache": "^4.1.3",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
}
}