-
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 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3 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": "customized-eco",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"check": "biome check ./src && tsc --noEmit",
"format": "biome check ./src --write --unsafe && tsc --noEmit",
"prepare": "simple-git-hooks",
"docs:generate": "NODE_OPTIONS='--import=tsx' next-rest-framework generate",
"docs:validate": "NODE_OPTIONS='--import=tsx' next-rest-framework validate"
},
"simple-git-hooks": {
"pre-commit": "bun biome check src\\ --write --unsafe"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.0",
"@bprogress/next": "^3.2.12",
"@hookform/resolvers": "^5.2.1",
"@libsql/client": "^0.15.14",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tabler/icons-react": "^3.34.1",
"@tanstack/react-table": "^8.21.3",
"@trigger.dev/sdk": "4.1.1",
"better-auth": "^1.4.7",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.8.0",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.44.5",
"drizzle-zod": "^0.8.3",
"geist": "^1.4.2",
"gsap": "^3.13.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.540.0",
"next": "16.1.1",
"next-rest-framework": "^6.1.0",
"next-safe-action": "^8.0.11",
"next-themes": "^0.4.6",
"node-html-parser": "^7.0.1",
"nodemailer": "^7.0.9",
"nuqs": "^2.6.0",
"openapi-types": "^12.1.3",
"pg": "^8.16.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.62.0",
"react-use-cart": "^1.14.0",
"sanitize-html": "^2.17.0",
"slugify": "^1.6.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"usehooks-ts": "^3.1.1",
"vaul": "^1.1.2",
"zod": "^4.1.3"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@tailwindcss/postcss": "^4",
"@trigger.dev/build": "4.1.1",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20",
"@types/nodemailer": "^7.0.2",
"@types/pg": "^8.15.5",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/sanitize-html": "^2.16.0",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.9.4",
"drizzle-kit": "^0.31.4",
"shadcn": "^3.5.0",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"tw-animate-css": "^1.3.7",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}