| 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
 | | { |  |   "private": true, |  |   "type": "module", |  |   "scripts": { |  |     "dev": "vite", |  |     "build": "vite build", |  |     "serve": "vite preview", |  |     "type-check": "tsc --noEmit", |  |     "lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src", |  |     "format": "prettier --write ./src" |  |   }, |  |   "dependencies": { |  |     "@date-io/dayjs": "^3.2.0", |  |     "@fontsource/roboto": "^5.0.14", |  |     "@hello-pangea/dnd": "^16.3.0", |  |     "@mui/icons-material": "^5.16.7", |  |     "@mui/material": "^5.17.1", |  |     "@mui/system": "^6.4.7", |  |     "@mui/x-data-grid": "^7.27.3", |  |     "@mui/x-date-pickers": "^8.3.0", |  |     "@mui/x-tree-view": "^7.16.0", |  |     "@tweenjs/tween.js": "^21.0.0", |  |     "axios": "^1.7.4", |  |     "date-fns": "^3.6.0", |  |     "dayjs": "^1.11.13", |  |     "framer-motion": "^12.4.10", |  |     "jsbarcode": "^3.11.6", |  |     "lodash": "^4.17.21", |  |     "motion": "^12.4.1", |  |     "papaparse": "^5.4.1", |  |     "pixi.js": "^7.4.0", |  |     "prop-types": "^15.8.1", |  |     "qrcode.react": "^4.2.0", |  |     "ra-i18n-polyglot": "^5.6.2", |  |     "ra-language-chinese": "^2.0.10", |  |     "ra-language-english": "^5.6.2", |  |     "react": "^18.3.0", |  |     "react-admin": "^5.6.3", |  |     "react-barcode": "^1.6.1", |  |     "react-dom": "^18.3.0", |  |     "react-hook-form": "^7.53.0", |  |     "react-router": "^6.22.0", |  |     "react-router-dom": "^6.26.1", |  |     "react-syntax-highlighter": "^15.5.0", |  |     "react-to-print": "^2.14.11", |  |     "svgpath": "^2.6.0", |  |     "three": "^0.155.0", |  |     "tweedle.js": "^2.1.0", |  |     "recharts": "^2.15.0" |  |   }, |  |   "devDependencies": { |  |     "@types/node": "^20.10.7", |  |     "@types/react": "^18.3.3", |  |     "@types/react-dom": "^18.3.0", |  |     "@typescript-eslint/eslint-plugin": "^5.60.1", |  |     "@typescript-eslint/parser": "^5.60.1", |  |     "@vitejs/plugin-react": "^4.0.1", |  |     "eslint": "^8.43.0", |  |     "eslint-config-prettier": "^8.8.0", |  |     "eslint-plugin-react": "^7.32.2", |  |     "eslint-plugin-react-hooks": "^4.6.0", |  |     "prettier": "^3.3.3", |  |     "typescript": "^5.1.6", |  |     "vite": "^5.3.5" |  |   }, |  |   "name": "rsf" |  | } | 
 |