-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
{
"name": "7-compiler",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.12.11",
"@babel/parser": "^7.12.11",
"@babel/polyfill": "^7.12.1",
"@babel/preset-react": "^7.16.0",
"@babel/runtime": "^7.12.5",
"@babel/traverse": "^7.12.10",
"@babel/types": "^7.12.11",
"cross-env": "^7.0.3",
"ejs": "^3.1.5",
"less": "^4.0.0",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tapable": "^2.2.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"scripts": {
"#build": "webpack --config webpack.config.js --color --progress",
"build:test": "cross-env NODE_ENV=development HOST_ENV=test webpack --config webpack.config.js",
"build:react": "webpack --config webpack.config.react.js",
"7-pack": "node ./7-compiler",
"dev": "webpack-dev-server"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.2.1",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^5.0.1",
"dart-sass": "^1.25.0",
"file-loader": "^6.2.0",
"happypack": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"html-withimg-loader": "^0.1.16",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^4.1.0",
"sass": "^1.32.2",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.8.0"
},
"#copy-webpack-plugin这里是webpack4,所以不能安装这么高的版本": "^9.0.1",
"browserslist": [
"defaults",
"not ie < 9",
"last 3 version",
">1%",
"ios 7",
"last 3 IOS versions"
]
}