forked from octref/veturpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.95 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
81
82
83
{
"name": "veturpack",
"version": "0.1.0",
"description": "Vuepack adapted for Vetur.",
"main": "client/index.js",
"scripts": {
"build": "webpack --config build/webpack.prod.js",
"dev": "node build/server.js",
"lint": "xo **/client/**/*.{vue,js} !node_modules/**"
},
"author": "Pine Wu <[email protected]>",
"license": "MIT",
"xo": {
"extends": "./.eslintrc",
"esnext": true,
"envs": [
"browser"
]
},
"babel": {
"presets": [
[
"vue-app",
{
"useBuiltIns": true
}
]
]
},
"postcss": {
"plugins": {
"autoprefixer": {},
"postcss-nested": {}
}
},
"browserslist": [
"last 2 versions",
"ie > 8"
],
"dependencies": {
"babel-runtime": "^6.26.0",
"lodash": "^4.17.4",
"promise-polyfill": "^6.0.2",
"vue": "^2.5.3",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.77",
"autoprefixer": "^7.1.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-vue-app": "^1.3.1",
"chalk": "^2.1.0",
"copy-webpack-plugin": "^4.1.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.18.2",
"eslint-plugin-vue": "^4.3.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"offline-plugin": "^4.8.4",
"postcss-loader": "^2.0.7",
"postcss-nested": "^2.1.2",
"prettier": "^1.15.2",
"prettier-eslint": "^8.8.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"vue-loader": "^13.3.0",
"vue-template-compiler": "^2.5.3",
"webpack": "3.7.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1",
"xo": "^0.18.2"
}
}