-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.57 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.57 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "webpack-react-boilerplate",
"version": "1.0.0",
"engines": {
"node": ">=20.19.0",
"pnpm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DonAdam2/webpack-react-boilerplate"
},
"description": "Webpack react boilerplate",
"main": "index.js",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie 11",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not ie 11",
"not op_mini all"
]
},
"scripts": {
"start": "node scripts/start.js",
"build": "webpack --config buildTools/webpack.prod.js --progress --color",
"build:serve": "serve -s dist --cors -p 8080",
"analyze-bundle": "pnpm build --json=stats.json && webpack-bundle-analyzer stats.json dist",
"test": "jest -c jest/jest.config.js --verbose",
"test:watch": "pnpm run test --watch",
"test:coverage": "pnpm test:clear && pnpm run test --coverage",
"test:clear": "pnpm run test --clearCache",
"generate": "plop"
},
"author": "Adam Morsi <adam.morsi@yahoo.com> (https://github.com/DonAdam2)",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@babel/runtime": "7.29.2",
"@eslint/js": "9.31.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.6.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"babel-jest": "30.3.0",
"babel-loader": "10.1.1",
"babel-plugin-macros": "3.1.0",
"clean-webpack-plugin": "4.0.0",
"cli-color": "2.0.4",
"copy-webpack-plugin": "14.0.0",
"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-import-resolver-webpack": "0.13.10",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-testing-library": "7.16.1",
"eslint-webpack-plugin": "5.0.3",
"globals": "17.4.0",
"html-webpack-plugin": "5.6.6",
"identity-obj-proxy": "3.0.0",
"incstr": "1.2.3",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-resolve": "30.3.0",
"jest-watch-typeahead": "3.0.1",
"mini-css-extract-plugin": "2.10.1",
"node-polyfill-webpack-plugin": "4.1.0",
"plop": "4.0.5",
"postcss": "8.5.8",
"postcss-loader": "8.2.1",
"postcss-preset-env": "11.2.0",
"prettier": "3.8.1",
"prettier-plugin-sort-json": "4.2.0",
"prompts": "2.4.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-refresh": "0.18.0",
"redux-logger": "3.0.6",
"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",
"to-camel-case": "1.0.0",
"util": "0.12.5",
"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": {
"@reduxjs/toolkit": "2.11.2",
"crypto-js": "4.2.0",
"react-error-boundary": "6.1.1",
"react-redux": "9.2.0",
"react-router-dom": "7.13.1"
}
}