-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.87 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
{
"name": "routerai",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"check": "next lint && tsc --noEmit",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"dev": "next dev --turbo",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"postinstall": "prisma generate",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.3",
"@base-ui/react": "^1.7.0",
"@phosphor-icons/react": "^2.1.10",
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-separator": "^1.1.15",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-tooltip": "^1.2.16",
"@t3-oss/env-nextjs": "^0.13.11",
"@trpc/client": "^11.18.0",
"@trpc/react-query": "^11.18.0",
"@trpc/server": "^11.18.0",
"@types/nodemailer": "^8.0.1",
"@upstash/ratelimit": "^2.0.8",
"@vercel/analytics": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"framer-motion": "^13.1.0",
"lucide-react": "^1.31.0",
"next": "16.3.0",
"next-auth": "^5.0.0-beta.32",
"next-themes": "^0.4.6",
"nodemailer": "^9.0.5",
"pg": "^8.23.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-hook-form": "^7.85.0",
"react-markdown": "^10.1.0",
"react-speech-kit": "^3.0.1",
"react-speech-recognition": "^4.0.1",
"react-syntax-highlighter": "^16.1.1",
"react-turnstile": "^1.1.5",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"shadcn": "^4.17.0",
"stripe": "^18.2.1",
"superjson": "^2.2.6",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.21.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-speech-kit": "^3.0.0",
"@types/react-speech-recognition": "^3.9.6",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9",
"eslint-config-next": "16.3.0",
"prettier-plugin-tailwindcss": "^0.8.1",
"prisma": "7.9.1",
"sonner": "^2.0.8",
"tailwindcss": "^4",
"typescript": "^5"
},
"packageManager": "bun@1.3.14",
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}