-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "buddler",
"version": "1.0.0",
"description": "learning webpack",
"main": "index.js",
"scripts": {
"build": "webpack --config build/webpack.config.js",
"dev": "webpack-dev-server --color --progress --config build/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/callmezhenzhen/webpack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/callmezhenzhen/webpack/issues"
},
"homepage": "https://github.com/callmezhenzhen/webpack#readme",
"dependencies": {
"webpack": "^4.41.2"
},
"devDependencies": {
"autoprefixer": "^9.7.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"style-loader": "^1.0.0",
"sugarss": "^2.0.0",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2",
"vue": "^2.6.10",
"vue-class-component": "^7.2.3",
"vue-loader": "^15.7.2",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.10",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}