-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
67 lines (67 loc) · 2.31 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
{
"name": "koa-vue-ssr-cli",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node code/server/babel.js",
"prod": "yarn run build && yarn run start",
"dev": "nodemon code/server/babel.js",
"build": "rimraf public/client && yarn run build:client && yarn run build:server",
"build:client": "cross-env NODE_ENV=production webpack --config build/webpack.client.conf.js --colors --progress",
"build:server": "cross-env NODE_ENV=production webpack --config build/webpack.server.conf.js --colors --progress",
"analyz": "cross-env analyz_config_report=true yarn run build:client"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^3.0.7",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"memory-fs": "^0.4.1",
"node-notifier": "^5.2.1",
"nodemon": "^1.17.2",
"postcss-loader": "^2.1.2",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"vue-loader": "^14.2.1",
"vue-style-loader": "^4.0.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.1.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.12",
"webpack-dev-middleware": "^3.0.1",
"webpack-hot-middleware": "^2.21.2",
"webpack-merge": "^4.1.2",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"axios": "^0.18.0",
"ip": "^1.1.5",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-compress": "^2.0.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"nprogress": "^0.2.0",
"qs": "^6.5.1",
"superagent": "^3.8.2",
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.16",
"vuex": "^3.0.1"
}
}