-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.41 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
{
"name": "merelaager-adminpanel",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 4040",
"start": "vite --port 3000",
"build": "vite build && tsc",
"serve": "vite preview",
"test": "vitest run",
"lint": "eslint",
"format": "prettier",
"check": "prettier --write . && eslint --fix",
"gen:api": "openapi-typescript http://localhost:4000/documentation/json -o src/api/schema.gen.ts"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-alert-dialog": "^1.1.18",
"@radix-ui/react-checkbox": "^1.3.6",
"@radix-ui/react-dialog": "^1.1.18",
"@radix-ui/react-dropdown-menu": "^2.1.19",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-popover": "^1.1.18",
"@radix-ui/react-select": "^2.3.2",
"@radix-ui/react-separator": "^1.1.11",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.2",
"@radix-ui/react-toggle": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.11",
"@tailwindcss/vite": "^4.3.2",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-router": "^1.170.17",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/router-core": "^1.171.14",
"@tanstack/router-plugin": "^1.168.19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.23.0",
"next-themes": "^0.4.6",
"openapi-fetch": "^0.17.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.81.0",
"react-is": "^19.2.7",
"react-timer-hook": "^4.0.6",
"recharts": "3.9.2",
"shadcn": "^4.13.0",
"sonner": "^2.0.7",
"table": "^6.9.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tanstack/eslint-config": "^0.4.0",
"@tanstack/eslint-plugin-query": "^5.101.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-is": "^19.2.0",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.6.0",
"jsdom": "^29.1.1",
"openapi-typescript": "^7.13.0",
"prettier": "^3.9.4",
"typescript": "^5.9.3",
"vite": "^8.1.3",
"vitest": "^4.1.9",
"web-vitals": "^5.3.0"
},
"packageManager": "yarn@4.9.2"
}