-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.12 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.12 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
88
89
90
91
92
93
94
95
96
97
{
"name": "mhd",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "eslint ./src && next build",
"start": "next start",
"lint": "eslint ./src",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@better-auth/drizzle-adapter": "^1.5.3",
"@floating-ui/dom": "^1.7.4",
"@hookform/resolvers": "^5.2.2",
"@mantine/core": "^8.3.4",
"@mantine/dates": "^8.3.5",
"@mantine/hooks": "^8.3.4",
"@neondatabase/serverless": "^1.0.2",
"@next/eslint-plugin-next": "^15.5.4",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@shadcn/ui": "^0.0.4",
"@tanstack/react-table": "^8.21.3",
"better-auth": "^1.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"csv-parse": "^6.1.0",
"d3": "^7.9.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"framer-motion": "^12.23.24",
"html2canvas": "^1.4.1",
"html2canvas-pro": "^1.6.6",
"input-otp": "^1.4.2",
"jspdf": "^4.0.0",
"lucide": "^0.544.0",
"lucide-react": "^0.545.0",
"maplibre-gl": "^5.16.0",
"next": "^16.0.7",
"nuqs": "^2.8.6",
"pg": "^8.16.3",
"react": "^19.2.2",
"react-dom": "^19.2.2",
"react-excel-renderer": "^1.1.0",
"react-hook-form": "^7.67.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.9.6",
"recharts": "^2.15.4",
"resend": "^6.9.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"vercel": "^25.2.0",
"xlsx": "^0.18.5",
"zod": "^4.1.13",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4",
"@types/d3": "^7.4.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/parser": "^8.53.0",
"drizzle-kit": "^0.31.7",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.4.0",
"husky": "^9.1.7",
"knip": "^5.79.0",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
}
}