-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 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
71
72
73
74
75
{
"name": "mui-app-template",
"version": "1.0.0",
"sideEffects": [
"*.css",
"*.scss"
],
"keywords": [
"mui",
"mui-webpack",
"webpack",
"webpack5",
"template"
],
"repository": "https://github.com/xh-shen/mui-app-template.git",
"author": "shenqz <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack --progress -w --config ./build/webpack.dev.config.js",
"build": "webpack --progress --config ./build/webpack.prod.config.js",
"lint": "eslint --ext .js ./src",
"lint:fix": "eslint --fix --ext .js ./src",
"format": "prettier --write \"./src/**/*.{js,css,scss}\""
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"core-js": "^3.8.2",
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-webpack-plugin": "^2.4.1",
"fast-glob": "^3.2.5",
"file-loader": "^6.2.0",
"happypack": "^5.0.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0-beta.5",
"html-webpack-tags-plugin": "^2.0.17",
"mini-css-extract-plugin": "^1.3.4",
"node-sass": "^5.0.0",
"postcss": "^8.2.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^4.1.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-manifest-plugin": "^3.0.0"
},
"dependencies": {
"lodash": "^4.17.20"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}