-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
{
"name": "my-webpack-project",
"version": "1.0.0",
"private": true,
"dependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-react": "^7.25.9",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"bootstrap": "^5.3.3",
"copy-webpack-plugin": "^12.0.2",
"eslint-plugin-babel": "^5.3.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-bootstrap-icons": "^1.11.4",
"react-dom": "^18.3.1",
"react-hooks": "^1.0.1",
"react-scripts": "5.0.1",
"react-tooltip": "^5.28.0",
"sass-loader": "^16.0.3",
"yup": "^1.4.0"
},
"scripts": {
"start": "webpack serve --node-env production",
"build": "webpack --node-env production",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:dev": "webpack --node-env development",
"build:prod": "webpack --node-env production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"description": "My webpack project"
}