forked from plastic-labs/tutor-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.57 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "tutor-gpt",
"version": "0.8.0",
"private": true,
"scripts": {
"dev": "SENTRY_SUPPRESS_TURBOPACK_WARNING=1 next dev --turbopack",
"build": "next build",
"start": "next start",
"test": "vitest",
"lint": "eslint components/ app/ utils/",
"pretty": "prettier --write components/ app/ utils/",
"sync-stripe": "node scripts/stripeSync.mjs",
"test:security": "node tests/arcjet/test-bot-protection.js",
"test:bot-protection": "node tests/arcjet/test-bot-protection.js"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^0.2.13",
"@arcjet/next": "1.0.0-beta.8",
"@mistralai/mistralai": "^1.5.1",
"@opentelemetry/api-logs": "^0.57.2",
"@opentelemetry/instrumentation": "^0.57.2",
"@opentelemetry/sdk-logs": "^0.57.2",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-context-menu": "^2.2.15",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@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.1.0",
"import-in-the-middle": "^1.14.0",
"jsonwebtoken": "^9.0.2",
"katex": "^0.16.21",
"langfuse-vercel": "^3.35.2",
"lucide-react": "^0.508.0",
"motion": "^12.10.1",
"next": "15.1.7",
"next-themes": "^0.4.4",
"openai": "^4.85.1",
"posthog-js": "^1.240.6",
"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-resizable-panels": "^3.0.2",
"react-syntax-highlighter": "^15.6.1",
"react-toggle-dark-mode": "^1.1.1",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"require-in-the-middle": "^7.5.2",
"retry": "^0.13.1",
"sharp": "^0.32.6",
"sonner": "^2.0.3",
"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",
"zod": "^3.24.2"
},
"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",
"@vitejs/plugin-react": "^4.3.4",
"csv-parse": "^6.1.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",
"ts-node": "^10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "^8.24.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.8"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"pnpm": {
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
}
}
}