Skip to content

Commit cd3a489

Browse files
committed
setup shadcn: initialized shadcn and add components needed for AdminDashboard Layout
commands used: pnpm dlx shadcn@latest init - used to initialize shadcn pnpm dlx shadcn@latest add navigation-menu - used to import in shadcn navigation-menu component
1 parent 14b2093 commit cd3a489

File tree

6 files changed

+696
-19
lines changed

6 files changed

+696
-19
lines changed

components.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "src/app/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"iconLibrary": "lucide",
14+
"aliases": {
15+
"components": "@/components",
16+
"utils": "@/lib/utils",
17+
"ui": "@/components/ui",
18+
"lib": "@/lib",
19+
"hooks": "@/hooks"
20+
},
21+
"registries": {}
22+
}

package.json

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,21 @@
1212
"db:studio": "drizzle-kit studio"
1313
},
1414
"dependencies": {
15-
"react": "19.1.0",
16-
"react-dom": "19.1.0",
17-
"react-hook-form": "^7.63.0",
18-
"zod": "^4.1.11",
1915
"@libsql/client": "^0.15.15",
16+
"@radix-ui/react-navigation-menu": "^1.2.14",
17+
"better-auth": "^1.3.26",
18+
"class-variance-authority": "^0.7.1",
19+
"clsx": "^2.1.1",
2020
"drizzle-orm": "^0.44.6",
21+
"lucide-react": "^0.548.0",
2122
"next": "15.5.4",
2223
"next-safe-action": "8.0.11",
24+
"react": "19.1.0",
25+
"react-dom": "19.1.0",
26+
"react-hook-form": "^7.63.0",
27+
"tailwind-merge": "^3.3.1",
2328
"web": "link:@libsql/client/web",
24-
"better-auth": "^1.3.26"
29+
"zod": "^4.1.11"
2530
},
2631
"devDependencies": {
2732
"@eslint/eslintrc": "^3",
@@ -31,10 +36,11 @@
3136
"@types/react-dom": "^19",
3237
"dotenv": "^17.2.3",
3338
"drizzle-kit": "^0.31.5",
34-
"tsx": "^4.20.6",
3539
"eslint": "^9",
3640
"eslint-config-next": "15.5.4",
3741
"tailwindcss": "^4",
42+
"tsx": "^4.20.6",
43+
"tw-animate-css": "^1.4.0",
3844
"typescript": "^5"
3945
}
4046
}

0 commit comments

Comments
 (0)