-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
124 lines (124 loc) · 3.76 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
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
119
120
121
122
123
124
{
"name": "webpack-react-boilerplate",
"version": "1.0.0",
"engines": {
"node": ">=17.0.0",
"pnpm": ">=8.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 op_mini all"
],
"development": [
">0.2%",
"not dead",
"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.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/runtime": "7.26.0",
"@eslint/js": "9.17.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"autoprefixer": "10.4.20",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"babel-plugin-macros": "3.1.0",
"browserslist": "4.24.3",
"clean-webpack-plugin": "4.0.0",
"cli-color": "2.0.4",
"copy-webpack-plugin": "12.0.2",
"core-js": "3.39.0",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"detect-port": "2.1.0",
"dotenv-webpack": "8.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-testing-library": "7.1.1",
"eslint-webpack-plugin": "4.2.0",
"globals": "15.14.0",
"html-webpack-plugin": "5.6.3",
"identity-obj-proxy": "3.0.0",
"incstr": "1.2.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-resolve": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"mini-css-extract-plugin": "2.9.2",
"node-polyfill-webpack-plugin": "4.1.0",
"plop": "4.0.1",
"postcss": "8.4.49",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "8.1.1",
"postcss-normalize": "13.0.1",
"postcss-preset-env": "10.1.3",
"prettier": "3.4.2",
"prompts": "2.4.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-refresh": "0.16.0",
"redux-logger": "3.0.6",
"regenerator-runtime": "0.14.1",
"resolve-url-loader": "5.0.0",
"rework": "1.0.1",
"rework-visit": "1.0.0",
"sass": "1.83.1",
"sass-loader": "16.0.4",
"serve": "14.2.4",
"source-map-loader": "5.0.0",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.11",
"to-camel-case": "1.0.0",
"util": "0.12.5",
"webpack": "5.97.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0",
"webpack-merge": "6.0.1"
},
"dependencies": {
"@reduxjs/toolkit": "2.5.0",
"crypto-js": "4.2.0",
"react-error-boundary": "5.0.0",
"react-redux": "9.2.0",
"react-router-dom": "7.1.1"
}
}