-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.35 KB
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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"preview": "vite preview",
"preinstall": "npx only-allow yarn",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@chakra-ui/react": "^3.8.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hello-pangea/dnd": "^18.0.1",
"@lukemorales/query-key-factory": "^1.3.4",
"@mui/material": "^6.4.3",
"@react-three/drei": "^9.121.5",
"@react-three/fiber": "^8.17.14",
"@tanstack/react-query": "^5.66.0",
"@types/three": "^0.173.0",
"apexcharts": "^4.4.0",
"axios": "^1.7.9",
"babel-plugin-styled-components": "^2.1.4",
"compose-function": "^3.0.3",
"firebase": "^11.3.1",
"framer-motion": "^12.4.1",
"lucide-react": "^0.475.0",
"react": "^18.3.1",
"react-apexcharts": "^1.7.0",
"react-barcode": "^1.5.3",
"react-cookie": "^7.2.2",
"react-dom": "^18.3.1",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-router-dom": "^7.1.3",
"react-to-print": "^3.0.5",
"react-toastify": "^11.0.3",
"react-tooltip": "^5.28.0",
"styled-components": "^6.1.14",
"three": "^0.173.0",
"use-cannon": "^0.5.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/compose-function": "^0.0.33",
"@types/node": "^22.12.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"dependency-cruiser": "^16.9.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"husky": "^8.0.0",
"lint-staged": "^15.4.3",
"only-allow": "^1.2.1",
"prettier": "^3.4.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{css,scss}": [
"prettier --write"
]
}
}