-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.8 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
{
"name": "the-pickard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@clerk/nextjs": "^6.33.3",
"@neondatabase/serverless": "^0.9.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@tanstack/react-table": "^8.21.3",
"@upstash/ratelimit": "^2.0.6",
"@upstash/redis": "^1.35.4",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.1.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.33.0",
"isomorphic-dompurify": "^2.28.0",
"lucide-react": "^0.400.0",
"next": "^15.5.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sonner": "^2.0.7",
"svix": "^1.75.0",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^20",
"@types/prop-types": "^15.7.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"drizzle-kit": "^0.24.0",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"prop-types": "^15.8.1",
"sharp": "^0.34.4",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}