-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.72 KB
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
{
"name": "webpack-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.config.dev.js --open",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.config.prod.js",
"dll": "cross-env NODE_ENV=production webpack --config build/webpack.config.dll.js"
},
"keywords": [],
"author": "GaryC",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"px2rem-loader": "^0.1.9",
"thread-loader": "^3.0.4",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"autoprefixer": "^10.3.6",
"browserslist": "^4.17.1",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.18.0",
"cross-env": "^7.0.3",
"css-loader": "^6.3.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^5.3.2",
"lib-flexible": "^0.3.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.3.0",
"postcss-loader": "^6.1.1",
"raw-loader": "^0.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"terser-webpack-plugin": "^5.2.4",
"uglify-js": "^3.14.2",
"url-loader": "^4.1.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-dev-server": "^4.2.1",
"webpack-merge": "^5.8.0"
},
"browserslist": [
"last 2 version",
"> 1%",
"not ie < 11"
]
}