-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
71 lines (71 loc) · 2.5 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
{
"name": "vue.vtaiwan.tw",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "Ly <lyforever62@hotmail.com>",
"private": true,
"scripts": {
"dev": "node server",
"start": "cross-env NODE_ENV=production node server",
"build": "npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack --config build/webpack.client.config.js --progress --hide-modules",
"build:server": "cross-env NODE_ENV=production webpack --config build/webpack.server.config.js --progress --hide-modules",
"build:static": "cross-env NODE_ENV=production webpack --config build/webpack.static.config.js --progress --hide-modules && cp 404.html dist"
},
"engines": {
"node": ">=6.9.0 <13.0.0"
},
"dependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.8.7",
"autoprefixer": "^6.7.7",
"axios": "^0.18.1",
"babel-loader": "^8.0.0",
"cross-env": "^2.0.0",
"css-loader": "0.28.11",
"es6-promise": "^3.2.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-beta.3",
"file-loader": "^0.9.0",
"html-webpack-plugin": "2.30.1",
"livescript": "^1.5.0",
"lru-cache": "^4.0.1",
"node-bourbon": "^4.2.8",
"node-sass": "^4.13.1",
"offline-plugin": "^5.0.5",
"prerender-spa-plugin": "2.1.0",
"sass-loader": "4.1.1",
"serialize-javascript": "^2.1.2",
"serve-favicon": "^2.3.0",
"serviceworker-webpack-plugin": "0",
"string-natural-compare": "^2.0.2",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.2",
"url-loader": "^0.5.7",
"vue": "^2.0.0",
"vue-loader": "^9.5.0",
"vue-offline": "^1.0.204",
"vue-router": "^2.0.0",
"vue-server-renderer": "^2.0.0",
"vuex": "^2.0.0",
"vuex-router-sync": "^3.0.0",
"webpack": "2.7.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
},
"devDependencies": {
"favicons-webpack-plugin": "0.0.9",
"gulp-sass": "^4.0.2",
"pug": "^2.0.4",
"vue-lazyload": "^1.2.6"
}
}