-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
116 lines (116 loc) · 3.35 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
{
"name": "react-pwa",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/joy": "^5.0.0-beta.18",
"@mui/material": "^5.15.0",
"@reduxjs/toolkit": "^2.0.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.2",
"json-loader": "^0.5.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-router": "^6.21.0",
"react-router-dom": "^6.21.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.6.0",
"workbox-broadcast-update": "^6.6.0",
"workbox-cacheable-response": "^6.6.0",
"workbox-core": "^6.6.0",
"workbox-expiration": "^6.6.0",
"workbox-google-analytics": "^6.6.0",
"workbox-navigation-preload": "^6.6.0",
"workbox-precaching": "^6.6.0",
"workbox-range-requests": "^6.6.0",
"workbox-routing": "^6.6.0",
"workbox-strategies": "^6.6.0",
"workbox-streams": "^6.6.0",
"workbox-window": "^7.0.0"
},
"scripts": {
"dev": "rimraf build",
"start": "env-cmd -f .env.development webpack-dev-server --history-api-fallback --config=./config/webpack.dev.js --open",
"build": "env-cmd -f .env.development npm run dev && webpack --config=./config/webpack.prod.js",
"serve": "npm run build && serve -s build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write './**/*.{js,jsx,md,json}' --config ./.prettierrc",
"prepare": "husky install"
},
"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-loader": "^9.1.3",
"cjs-loader": "^0.1.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"dotenv-webpack": "^8.0.1",
"env-cmd": "^10.1.0",
"esbuild-loader": "^4.0.2",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.0",
"image-minimizer-webpack-plugin": "^3.8.3",
"image-webpack-loader": "^8.1.0",
"imagemin": "^8.0.1",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"lint-staged": "^15.2.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.1.1",
"sass-loader": "^14.1.0",
"style-loader": "^3.3.4",
"svg-url-loader": "^8.0.0",
"url-loader": "^4.1.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0",
"workbox-webpack-plugin": "^7.0.0",
"yaml-loader": "^0.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx}": [
"npm run format",
"npm run lint:fix"
]
}
}