-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "bun prettier --write .",
"check": "bun prettier --check .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:reset": "drizzle-kit drop",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/react": "^1.2.12",
"@huggingface/transformers": "3.3.3",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.6",
"@supabase/ssr": "^0.6.1",
"@tailwindcss/postcss": "4.1.5",
"@upstash/redis": "^1.34.9",
"ai": "^4.3.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.40.1",
"drizzle-zod": "^0.7.1",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^12.10.1",
"google-play-scraper": "^10.0.1",
"lucide-react": "^0.508.0",
"markdown-parser-react": "^2.0.2",
"motion": "^12.10.1",
"next": "15.3.2",
"node-vibrant": "^3.1.6",
"postcss": "^8.5.3",
"postgres": "^3.4.5",
"prop-types": "^15.8.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-lottie": "^1.2.10",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"slugify": "^1.6.6",
"supports-color": "^10.0.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "4.1.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/bun": "^1.2.12",
"@types/node": "^22.15.15",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@types/react-lottie": "^1.2.10",
"drizzle-kit": "^0.30.6",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"supabase": "^2.22.12",
"typescript": "^5.8.3"
}
}