blob: 04db6544fb21583846e4af7bc7cb9f46c3790b70 [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",
ZBDff4d40a2025-05-27 17:05:20 +080020 "axios": "^1.9.0",
ZBD4b0e05a2025-06-08 18:11:26 +080021 "file-saver": "^2.0.5",
ZBDf60356c2025-04-03 20:09:51 +080022 "react": "^19.0.0",
ZBD7e88c222025-05-07 21:07:12 +080023 "react-dom": "^19.0.0",
24 "react-router-dom": "^7.5.1"
ZBDf60356c2025-04-03 20:09:51 +080025 },
26 "devDependencies": {
ZBD7e88c222025-05-07 21:07:12 +080027 "@eslint/js": "^9.24.0",
28 "@testing-library/jest-dom": "^6.6.3",
29 "@testing-library/react": "^16.3.0",
ZBDf60356c2025-04-03 20:09:51 +080030 "@types/react": "^19.0.10",
31 "@types/react-dom": "^19.0.4",
32 "@vitejs/plugin-react": "^4.3.4",
ZBD7e88c222025-05-07 21:07:12 +080033 "eslint": "^8.57.1",
34 "eslint-config-prettier": "^10.1.2",
35 "eslint-config-standard": "^17.1.0",
36 "eslint-plugin-import": "^2.31.0",
37 "eslint-plugin-n": "^16.6.2",
38 "eslint-plugin-promise": "^6.6.0",
39 "eslint-plugin-react": "^7.37.5",
ZBDf60356c2025-04-03 20:09:51 +080040 "eslint-plugin-react-hooks": "^5.1.0",
41 "eslint-plugin-react-refresh": "^0.4.19",
42 "globals": "^15.15.0",
ZBD7e88c222025-05-07 21:07:12 +080043 "jest": "^29.7.0",
44 "msw": "^2.7.4",
45 "prettier": "^3.5.3",
46 "vite": "^6.2.0",
47 "whatwg-fetch": "^3.6.20"
48 },
49 "jest": {
ZBDff4d40a2025-05-27 17:05:20 +080050 "testEnvironment": "jsdom",
51 "setupFilesAfterEnv": [
52 "<rootDir>/src/setupTests.js"
53 ],
54 "moduleNameMapper": {
55 "\\.(css|less|scss|sass)$": "identity-obj-proxy"
56 }
ZBDf60356c2025-04-03 20:09:51 +080057 }
58}