-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
98 lines (98 loc) · 2.88 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
{
"name": "server-manager",
"version": "1.0.4",
"private": true,
"sideEffects": "*.css",
"dependencies": {
"@tanstack/react-query": "^5.56.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@uidotdev/usehooks": "^2.4.1",
"chart.js": "^4.4.4",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-zoom": "^2.0.1",
"crypto-random-string": "^5.0.0",
"date-fns": "^4.1.0",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"mini-css-extract-plugin": "^2.9.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.2",
"react-router": "^6.26.2",
"react-router-dom": "^6.26.2",
"react-transition-group": "^4.4.5",
"react-use": "^17.5.1",
"responsive-loader": "^3.1.2",
"sharp": "^0.33.5",
"web-vitals": "^4.2.3",
"webpack-bundle-analyzer": "^4.10.2",
"workbox-core": "^7.1.0",
"workbox-expiration": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm clean-dist && webpack --config=configs/webpack/prod.js",
"clean-dist": "rimraf dist/*",
"lint": "eslint \"./src/**/*.{js,ts,tsx}\" --quiet",
"start": "pnpm start-dev",
"start-dev": "webpack serve --config=configs/webpack/dev.js --host 0.0.0.0 --port 3000",
"start-prod": "pnpm build && node express.js"
},
"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": {
"@swc/core": "^1.7.26",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"browserslist": "^4.23.3",
"chokidar": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"express": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"lightningcss": "^1.27.0",
"prettier": "^3.3.3",
"react-ga4": "^2.1.0",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"typescript": "^5.6.2",
"typescript-plugin-css-modules": "^5.1.0",
"web-vitals": "^4.2.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.1.0"
}
}