-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.47 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
{
"name": "wayway",
"version": "0.1.0",
"private": true,
"scripts": {
"b:check": "biome check --write",
"b:lint": "biome lint",
"build": "next build",
"db:deploy": "prisma migrate deploy",
"db:dump": "pg_dump wayway > dump/wayway_$(date +'%Y%m%d%H%M%S').sql",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:reset": "prisma migrate reset",
"db:studio": "prisma studio --browser=none",
"dev": "next dev --port 4444 | pino-pretty",
"knip": "knip",
"ngrok": "ngrok http --domain=$NGROK_DOMAIN 4444",
"sort:pj": "sort-package-json",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.64",
"@clerk/nextjs": "^5.7.1",
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.20.0",
"@radix-ui/react-accessible-icon": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@tanstack/react-table": "^8.20.5",
"ai": "^3.4.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"collapse-white-space": "^2.1.0",
"date-fns": "^4.1.0",
"fast-shuffle": "^6.1.0",
"http-status-codes": "^2.3.0",
"lucide-react": "^0.447.0",
"next": "^14.2.14",
"next-themes": "^0.3.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"posthog-js": "^1.166.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-hotkeys-hook": "^4.5.1",
"server-only": "^0.0.1",
"sonner": "^1.5.0",
"svix": "^1.37.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"title-case": "^4.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/bun": "^1.1.10",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"knip": "^5.31.0",
"postcss": "^8.4.47",
"prisma": "^5.20.0",
"sort-package-json": "^2.10.1",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
}
}