-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
95 lines (95 loc) · 2.67 KB
/
package.json
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
{
"name": "tutor-gpt",
"version": "0.7.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint components/ app/ utils/",
"pretty": "prettier --write components/ app/ utils/",
"sync-stripe": "node scripts/stripeSync.mjs"
},
"dependencies": {
"@openrouter/ai-sdk-provider": "^0.2.1",
"@opentelemetry/api-logs": "^0.57.2",
"@opentelemetry/instrumentation": "^0.57.2",
"@opentelemetry/sdk-logs": "^0.57.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@sentry/nextjs": "^9.1.0",
"@stripe/stripe-js": "^5.6.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.48.1",
"@vercel/otel": "^1.10.1",
"@vercel/speed-insights": "^1.2.0",
"ai": "^4.1.41",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dedent-js": "^1.0.1",
"honcho-ai": "^0.0.11",
"jsonwebtoken": "^9.0.2",
"katex": "^0.16.21",
"langfuse-vercel": "^3.35.2",
"next": "15.1.7",
"next-themes": "^0.4.4",
"openai": "^4.85.1",
"posthog-js": "^1.219.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^4.12.0",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^9.0.3",
"react-syntax-highlighter": "^15.6.1",
"react-toggle-dark-mode": "^1.1.1",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"retry": "^0.13.1",
"sharp": "^0.32.6",
"stripe": "^17.6.0",
"sweetalert2": "^11.17.2",
"sweetalert2-react-content": "^5.1.0",
"swr": "^2.3.2",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@next/eslint-plugin-next": "^15.1.7",
"@shadcn/ui": "^0.0.4",
"@tailwindcss/postcss": "^4.0.6",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "22.13.4",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/retry": "^0.12.5",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.7",
"encoding": "^0.1.13",
"eslint": "^9.20.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.15.0",
"postcss": "8.4.28",
"prettier": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"supabase": "^2.12.1",
"tailwindcss": "4.0.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.24.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"pnpm": {
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
}
}
}