generated from DonAdam2/webpack-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.45 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
76
77
78
79
80
81
82
83
{
"name": "custom-react-hooks",
"version": "1.0.0",
"engines": {
"node": ">=14.17.0"
},
"description": "custom react hooks",
"main": "index.js",
"browserslist": [
"ie >= 11",
"last 2 version"
],
"scripts": {
"start": "node scripts/start.js",
"build": "webpack --config buildTools/webpack.prod.js --progress --color",
"build:serve": "serve dist --cors -p 8080",
"analyze-bundle": "yarn build --json=stats.json && webpack-bundle-analyzer stats.json dist"
},
"author": "Adam Morsi",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/eslint-parser": "7.25.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.25.4",
"@babel/preset-env": "7.25.4",
"@babel/preset-react": "7.24.7",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
"autoprefixer": "10.4.20",
"babel-loader": "9.1.3",
"browserslist": "4.23.3",
"clean-webpack-plugin": "4.0.0",
"cli-color": "2.0.4",
"core-js": "3.38.1",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"detect-port": "1.6.1",
"dotenv-webpack": "8.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-webpack-plugin": "4.2.0",
"html-webpack-plugin": "5.6.0",
"identity-obj-proxy": "3.0.0",
"mini-css-extract-plugin": "2.9.1",
"postcss": "8.4.44",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "8.1.1",
"postcss-normalize": "10.0.1",
"postcss-preset-env": "10.0.2",
"prettier": "3.3.3",
"prompts": "2.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-refresh": "0.14.2",
"regenerator-runtime": "0.14.1",
"resolve-url-loader": "5.0.0",
"rework": "1.0.1",
"rework-visit": "1.0.0",
"sass": "1.77.8",
"sass-loader": "16.0.1",
"serve": "14.2.3",
"source-map-loader": "5.0.0",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.10",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"webpack-merge": "6.0.1"
},
"dependencies": {
"axios": "1.7.7",
"copy-to-clipboard": "3.3.3",
"lodash": "4.17.21",
"react-error-boundary": "4.0.13",
"react-router-dom": "6.26.1",
"react-toastify": "10.0.5"
}
}