-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.66 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.66 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
{
"name": "figma-plugins",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.21.0",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "node_modules/next/dist/bin/next build",
"dev": "node_modules/next/dist/bin/next dev",
"postinstall": "npx prisma generate",
"lint": "node_modules/next/dist/bin/next lint",
"start": "node_modules/next/dist/bin/next start",
"db:push": "dotenv -f .env.local run npx prisma db push",
"db:migrate": "dotenv -f .env.local run npx prisma db migrate dev",
"dev:local": "dotenv -e .env.dev-local -- npm run dev",
"db:push:local": "dotenv -e .env.dev-local -- npx prisma db push",
"db:studio:local": "dotenv -e .env.dev-local -- npx prisma studio",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@hookform/resolvers": "^3.10.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.14.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.0",
"@t3-oss/env-nextjs": "^0.6.1",
"@tanstack/react-query": "^4.40.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@upstash/ratelimit": "^2.0.6",
"@upstash/redis": "^1.35.3",
"class-variance-authority": "^0.6.1",
"clsx": "^2.1.1",
"eventsource-parser": "^1.1.2",
"framer-motion": "^11.18.2",
"lucide-react": "^0.460.0",
"nanoid": "^4.0.2",
"next": "^14.2.32",
"next-auth": "^4.24.11",
"next-themes": "^0.2.1",
"nextjs-cors": "^2.2.0",
"openai": "^6.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.62.0",
"rollbar": "^2.26.4",
"superjson": "1.12.2",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"trpc-openapi": "^1.2.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/node": "^20.19.11",
"@types/prettier": "^2.7.2",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"autoprefixer": "^10.4.14",
"encoding": "^0.1.13",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.32",
"nodemon": "^3.0.1",
"peggy": "^3.0.2",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^6.14.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.2"
},
"ct3aMetadata": {
"initVersion": "7.14.1"
}
}