-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "vue2-webpack4-project",
"version": "1.0.0",
"private": true,
"main": "index.js",
"repository": "https://github.com/hao-kuai/vue2-webpack4-project.git",
"author": "https://github.com/hao-kuai",
"license": "MIT",
"scripts": {
"start": "webpack serve --config ./config/webpack.config.js",
"build": "webpack --config ./config/webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-arrow-functions": "^7.18.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.19.4",
"autoprefixer": "^10.4.12",
"babel-loader": "8.2.5",
"clean-webpack-plugin": "^4.0.0",
"core-js": "3.26.0",
"css-loader": "5.2.7",
"file-loader": "^6.2.0",
"html-webpack-plugin": "4",
"image-webpack-loader": "^8.1.0",
"mini-css-extract-plugin": "1.6.2",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss-loader": "4.3.0",
"postcss-preset-env": "^7.8.2",
"sass": "^1.55.0",
"sass-loader": "10.3.1",
"style-loader": "2.0.0",
"url-loader": "^4.1.1",
"vue-loader": "15.8.3",
"vue-template-compiler": "2.7.10",
"webpack": "4.46.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"vue": "2.7.10"
}
}