-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.12 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.12 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
{
"name": "tanstack-start",
"private": true,
"type": "module",
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint",
"format": "prettier --check .",
"check": "prettier --write . && eslint --fix",
"post-cta-init": "pnpm dlx create-db@latest --user-agent tanstack/tsrouter",
"db:generate": "dotenv -e .env.local -- prisma generate",
"db:push": "dotenv -e .env.local -- prisma db push",
"db:migrate": "dotenv -e .env.local -- prisma migrate dev",
"db:studio": "dotenv -e .env.local -- prisma studio",
"db:seed": "dotenv -e .env.local -- prisma db seed"
},
"dependencies": {
"@ai-sdk/react": "^3.0.118",
"@base-ui/react": "^1.2.0",
"@hookform/resolvers": "^5.2.2",
"@mendable/firecrawl-js": "^4.15.4",
"@openrouter/ai-sdk-provider": "^2.3.1",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@streamdown/cjk": "^1.0.2",
"@streamdown/code": "^1.1.0",
"@streamdown/math": "^1.0.2",
"@streamdown/mermaid": "^1.0.2",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.7.0",
"@tanstack/react-form": "^1.28.4",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-router-devtools": "^1.132.0",
"@tanstack/react-router-ssr-query": "^1.131.7",
"@tanstack/react-start": "^1.132.0",
"@tanstack/router-plugin": "^1.132.0",
"@tanstack/zod-adapter": "^1.166.7",
"@vercel/analytics": "^2.0.1",
"ai": "^6.0.116",
"better-auth": "^1.5.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.545.0",
"next-themes": "^0.4.6",
"nitro": "npm:nitro-nightly@latest",
"prisma": "^7.2.0",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.71.2",
"react-resizable-panels": "^4.7.0",
"recharts": "2.15.4",
"sonner": "^2.0.7",
"streamdown": "^2.4.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.1.18",
"vaul": "^1.1.2"
},
"devDependencies": {
"@content-collections/core": "^0.13.1",
"@content-collections/markdown": "^0.1.4",
"@content-collections/mdx": "^0.2.2",
"@content-collections/vite": "^0.2.8",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "^0.3.11",
"@tanstack/eslint-config": "^0.3.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"dotenv-cli": "^10.0.0",
"jsdom": "^27.0.0",
"prettier": "^3.5.3",
"remark-gfm": "^4.0.1",
"shadcn": "^3.8.5",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5",
"zod": "^4.3.6"
}
}