-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.73 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
77
78
79
80
{
"name": "ssr",
"version": "1.0.0",
"description": "koa2 vue ssr",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server/index.js",
"prod": "npm run build && npm run start",
"dev": "nodemon server/index.js",
"build": "rimraf dist && npm run build:client && npm 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 npm run build:client"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^2.0.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.3",
"lru-cache": "^4.1.3",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.17",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@vue/babel-plugin-transform-vue-jsx": "^0.1.0",
"autoprefixer": "^8.6.5",
"babel-eslint": "^8.2.6",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.0.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.7.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"node-notifier": "^5.2.1",
"nodemon": "^1.18.4",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"rimraf": "^2.6.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"url-loader": "^1.1.1",
"vue-loader": "^14.2.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.5",
"webpack-dev-middleware": "^3.2.0",
"webpack-hot-middleware": "^2.23.1",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
}
}