-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.28 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.28 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
{
"name": "zero-to-one",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22 <=24"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --no-lint",
"start": "next start",
"lint": "next lint",
"db:init": "tsx lib/init-db.ts",
"db:test": "tsx lib/test-db-connection.ts",
"db:reset": "tsx lib/init-db.ts --reset"
},
"dependencies": {
"@ai-sdk/google": "^2.0.12",
"@clerk/nextjs": "^6.28.1",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@shadcn/ui": "^0.0.4",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.53.0",
"@tailwindcss/typography": "^0.5.16",
"@uiw/react-md-editor": "^4.0.8",
"@vercel/speed-insights": "^1.2.0",
"ai": "^5.0.86",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.1",
"framer-motion": "^12.23.12",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"lucide-react": "^0.536.0",
"mongoose": "^8.17.0",
"next": "15.4.5",
"openai": "^5.13.1",
"prism-react-renderer": "^2.4.1",
"react": "18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "18.3.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.6",
"react-to-print": "^3.1.1",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.76",
"zustand": "^5.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/dotenv": "^6.1.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.4.5",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"tsx": "^4.20.4",
"tw-animate-css": "^1.3.6",
"typescript": "^5"
}
}