-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"name": "webpack-learn",
"version": "1.0.0",
"description": "\u001b[D\u001b[不需要脚手架",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --open --config ./build/webpack.dev.conf",
"build": "cross-env NODE_ENV=production webpack --progress --config ./build/webpack.prod.conf --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ben-Run/webpack-learn.git"
},
"author": "longbensong",
"license": "ISC",
"bugs": {
"url": "https://github.com/ben-Run/webpack-learn/issues"
},
"homepage": "https://github.com/ben-Run/webpack-learn#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.2.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"core-js": "^2.6.11",
"normalize.css": "^8.0.1",
"stats-webpack-plugin": "^0.7.0",
"vue": "^2.6.11"
}
}