-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"db:setup": "npx tsx lib/db/setup.ts",
"db:seed": "npx tsx lib/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "npx tsx lib/db/migrate.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@tailwindcss/postcss": "^4.0.13",
"@types/node": "^22.10.1",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.28.1",
"drizzle-orm": "^0.36.4",
"geist": "^1.3.1",
"lucide-react": "^0.462.0",
"next": "15.6.0-canary.59",
"postcss": "^8.4.49",
"postgres": "^3.4.5",
"react": "19.0.0",
"react-dom": "19.0.0",
"sonner": "^1.7.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.13",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2",
"zod": "^3.23.8"
},
"devDependencies": {
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11"
}
}