-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.91 KB
/
package.json
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
{
"name": "hackpsh",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"deploy": "pnpm dlx esno src/db/drizzle/migrate.ts && next build",
"start": "next start",
"lint": "next lint",
"generate": "dotenvx run --env-file=.env.local -- drizzle-kit generate",
"drop_migrations": "drizzle-kit drop",
"migrate": "dotenvx run --env-file=.env.local -- pnpm dlx esno src/db/drizzle/migrate.ts",
"setup": "dotenvx run --env-file=.env.local -- supabase start && pnpm migrate && pnpm run dev"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.45.4",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-table": "^8.10.7",
"@trpc/client": "^10.40.0",
"@trpc/react-query": "^10.40.0",
"@trpc/server": "^10.40.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "0.2.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.33.0",
"geist": "^1.2.2",
"lucide-react": "^0.363.0",
"next": "^14.1.4",
"next-themes": "^0.3.0",
"nextjs-toploader": "^3.7.15",
"pg": "8.11.2",
"react": "latest",
"react-day-picker": "8.10.1",
"react-dom": "latest",
"react-hook-form": "^7.47.0",
"react-resizable-panels": "^2.1.7",
"superjson": "^2.2.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@dotenvx/dotenvx": "^0.24.0",
"@tailwindcss/typography": "^0.5.10",
"@types/eslint": "latest",
"@types/node": "latest",
"@types/pg": "^8.11.2",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"autoprefixer": "latest",
"drizzle-kit": "^0.24.2",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "latest",
"prettier": "latest",
"prettier-plugin-tailwindcss": "latest",
"tailwindcss": "latest",
"typescript": "latest"
},
"packageManager": "pnpm@8.14.1+sha256.2df78e65d433d7693b9d3fbdaf431b2d96bb4f96a2ffecd51a50efe16e50a6a8"
}