-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "custom-react-hooks",
"version": "1.0.0",
"engines": {
"node": ">=14.17.0"
},
"description": "custom react hooks",
"main": "index.js",
"browserslist": [
"last 2 versions",
"not dead"
],
"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.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@eslint/js": "9.31.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.6.2",
"babel-loader": "10.1.1",
"clean-webpack-plugin": "4.0.0",
"cli-color": "2.0.4",
"css-loader": "7.1.4",
"css-minimizer-webpack-plugin": "8.0.0",
"detect-port": "2.1.0",
"dotenv-webpack": "9.0.0",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-webpack-plugin": "5.0.3",
"globals": "17.4.0",
"html-webpack-plugin": "5.6.6",
"mini-css-extract-plugin": "2.10.1",
"postcss": "8.5.8",
"postcss-loader": "8.2.1",
"postcss-preset-env": "11.2.0",
"prettier": "3.8.1",
"prompts": "2.4.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-refresh": "0.18.0",
"resolve-url-loader": "5.0.0",
"sass": "1.98.0",
"sass-loader": "16.0.7",
"serve": "14.2.6",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.4.0",
"webpack": "5.105.4",
"webpack-bundle-analyzer": "5.2.0",
"webpack-cli": "7.0.2",
"webpack-dev-server": "5.2.3",
"webpack-merge": "6.0.1"
},
"dependencies": {
"axios": "1.13.6",
"copy-to-clipboard": "3.3.3",
"lodash": "4.17.23",
"react-error-boundary": "6.1.1",
"react-router-dom": "7.13.1",
"react-toastify": "11.0.5"
}
}