-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.61 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.61 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "kubeasy",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build --turbopack",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write .",
"db:generate": "npx @better-auth/cli generate --yes --output server/db/schema/auth.ts && drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"dev": "next dev --turbo",
"preview": "next build && next start",
"start": "next start",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"knip": "dotenv -e .env.local -- knip",
"openapi:generate": "tsx scripts/generate-openapi.ts"
},
"dependencies": {
"@better-auth/api-key": "1.5.4",
"@better-auth/drizzle-adapter": "1.5.4",
"@neondatabase/serverless": "1.0.2",
"@notionhq/client": "5.12.0",
"@posthog/nextjs-config": "1.8.19",
"@radix-ui/react-avatar": "1.1.11",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-navigation-menu": "1.2.14",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-separator": "1.1.8",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-switch": "1.2.6",
"@react-email/render": "2.0.4",
"@t3-oss/env-nextjs": "0.13.10",
"@tanstack/react-query": "5.90.21",
"@trpc/client": "11.12.0",
"@trpc/server": "11.12.0",
"@trpc/tanstack-react-query": "11.12.0",
"@upstash/realtime": "1.0.3",
"@upstash/redis": "1.36.4",
"@vercel/analytics": "1.6.1",
"autoprefixer": "10.4.27",
"better-all": "0.0.7",
"better-auth": "1.5.4",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"drizzle-orm": "0.45.1",
"fuse.js": "7.1.0",
"geist": "1.7.0",
"lucide-react": "0.577.0",
"nanoid": "5.1.6",
"next": "16.1.6",
"next-themes": "0.4.6",
"posthog-js": "1.360.0",
"posthog-node": "5.28.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-error-boundary": "6.1.1",
"recharts": "3.8.0",
"resend": "6.9.3",
"server-only": "0.0.1",
"shiki": "4.0.2",
"sonner": "2.0.7",
"superjson": "2.2.6",
"tailwind-merge": "3.5.0",
"tw-animate-css": "1.4.0",
"zod": "4.3.6",
"zod-openapi": "5.4.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@eslint/eslintrc": "3.3.5",
"@tailwindcss/postcss": "4.2.1",
"@tanstack/react-query-devtools": "5.91.3",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/ui": "4.0.18",
"dotenv": "17.3.1",
"dotenv-cli": "11.0.0",
"drizzle-kit": "0.31.9",
"eslint": "10.0.3",
"eslint-config-next": "16.1.6",
"husky": "9.1.7",
"knip": "5.86.0",
"lint-staged": "16.3.3",
"postcss": "8.5.8",
"prettier": "3.8.1",
"tailwindcss": "4.2.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"packageManager": "pnpm@10.32.0",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"biome check --write --unsafe --files-ignore-unknown=true --no-errors-on-unmatched"
],
"*.{json,css}": [
"biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"
]
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
},
"onlyBuiltDependencies": [
"@posthog/cli",
"@tailwindcss/oxide",
"core-js",
"esbuild",
"sharp",
"unrs-resolver"
]
}
}