-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "vue-webpack-starter",
"version": "0.0.1",
"description": "Minimal starter pack for Vue web applications",
"scripts": {
"start": "webpack-dev-server --mode development --hot --inline",
"build": "webpack --mode production"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0-beta.56",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.56",
"@babel/preset-env": "^7.0.0-beta.56",
"babel-loader": "^8.0.0-beta.4",
"clipboardy": "^1.2.3",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^1.2.1",
"url-loader": "^1.1.2",
"vue-loader": "^15.4.2",
"vue-router": "^3.0.2",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14",
"webpack-notifier": "^1.6.0",
"webpackbar": "^3.1.4"
},
"dependencies": {
"vue": "^2.5.17"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"shippedProposals": true
}
]
],
"plugins": [
"@babel/plugin-syntax-dynamic-import"
]
}
}