-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.69 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.69 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
85
86
87
{
"name": "react-vite-ts-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "serve -s dist -l 5555",
"lint": "eslint . --fix --quiet",
"preview": "vite preview",
"test": "vitest run --coverage",
"test:watch": "vitest run --watch",
"test:toPush": "vitest run --passWithNoTests --coverage",
"gen:module": "node generate-module.mjs"
},
"dependencies": {
"@fontsource-variable/manrope": "^5.2.8",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-toast": "^1.2.15",
"@sentry/browser": "^10.43.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.19",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-router": "^1.154.6",
"@tanstack/react-table": "^8.21.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/js-cookie": "^3.0.6",
"@types/qs": "^6.14.0",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"framer-motion": "^12.29.2",
"input-otp": "^1.4.2",
"js-cookie": "^3.0.5",
"lucide-react": "^0.562.0",
"qs": "^6.14.1",
"react": "^19.2.0",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.0",
"react-dropzone": "^14.3.8",
"react-easy-crop": "^5.5.6",
"react-error-boundary": "^6.1.0",
"react-hook-form": "^7.71.1",
"react-phone-number-input": "^3.4.16",
"recharts": "^3.7.0",
"serve": "^14.2.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"uuid": "^13.0.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.17",
"zod": "^4.3.5",
"zustand": "^5.0.10"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tanstack/router-devtools": "^1.154.6",
"@tanstack/router-plugin": "^1.154.6",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "4.0.17",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.2.4"
}
}