blob: cff4a25c9aa96607ba7a9171078ecbd628acdb67 [file] [log] [blame]
ZBDf60356c2025-04-03 20:09:51 +08001{
2 "name": "my-app",
3 "private": true,
4 "version": "0.0.0",
5 "type": "module",
6 "scripts": {
7 "dev": "vite",
8 "build": "vite build",
ZBD7e88c222025-05-07 21:07:12 +08009 "lint": "eslint src --ext .js,.jsx",
10 "lint:fix": "eslint src --ext .js,.jsx --fix",
11 "format": "prettier --write .",
12 "test": "jest",
ZBDf60356c2025-04-03 20:09:51 +080013 "preview": "vite preview"
14 },
15 "dependencies": {
ZBD7e88c222025-05-07 21:07:12 +080016 "@emotion/react": "^11.14.0",
17 "@emotion/styled": "^11.14.0",
18 "@mui/icons-material": "^7.0.2",
19 "@mui/material": "^7.0.2",
ZBDf60356c2025-04-03 20:09:51 +080020 "react": "^19.0.0",
ZBD7e88c222025-05-07 21:07:12 +080021 "react-dom": "^19.0.0",
22 "react-router-dom": "^7.5.1"
ZBDf60356c2025-04-03 20:09:51 +080023 },
24 "devDependencies": {
ZBD7e88c222025-05-07 21:07:12 +080025 "@eslint/js": "^9.24.0",
26 "@testing-library/jest-dom": "^6.6.3",
27 "@testing-library/react": "^16.3.0",
ZBDf60356c2025-04-03 20:09:51 +080028 "@types/react": "^19.0.10",
29 "@types/react-dom": "^19.0.4",
30 "@vitejs/plugin-react": "^4.3.4",
ZBD7e88c222025-05-07 21:07:12 +080031 "eslint": "^8.57.1",
32 "eslint-config-prettier": "^10.1.2",
33 "eslint-config-standard": "^17.1.0",
34 "eslint-plugin-import": "^2.31.0",
35 "eslint-plugin-n": "^16.6.2",
36 "eslint-plugin-promise": "^6.6.0",
37 "eslint-plugin-react": "^7.37.5",
ZBDf60356c2025-04-03 20:09:51 +080038 "eslint-plugin-react-hooks": "^5.1.0",
39 "eslint-plugin-react-refresh": "^0.4.19",
40 "globals": "^15.15.0",
ZBD7e88c222025-05-07 21:07:12 +080041 "jest": "^29.7.0",
42 "msw": "^2.7.4",
43 "prettier": "^3.5.3",
44 "vite": "^6.2.0",
45 "whatwg-fetch": "^3.6.20"
46 },
47 "jest": {
48 "testEnvironment": "jsdom",
49 "setupFilesAfterEnv": [
50 "<rootDir>/src/setupTests.js"
51 ],
52 "moduleNameMapper": {
53 "\\.(css|less|scss|sass)$": "identity-obj-proxy"
ZBDf60356c2025-04-03 20:09:51 +080054 }
55}
ZBD7e88c222025-05-07 21:07:12 +080056}