-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.65 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
119
{
"name": "frontend",
"version": "0.1.0",
"platform": "node",
"scripts": {
"dev": "NODE_OPTIONS='--max-http-header-size=12800000' next dev --turbopack",
"build": "npx convex codegen && next build",
"start": "next start",
"lint": "eslint .",
"convex:dev": "convex dev --once",
"convex:deploy": "convex deploy",
"convex:codegen": "convex codegen",
"deploy:convex": "convex deploy --prod",
"deploy:vercel": "vercel --prod",
"deploy": "npm run deploy:convex && npm run deploy:vercel",
"deploy:ci": "convex deploy --prod && vercel deploy --prod",
"postinstall": "convex codegen"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.68",
"@babel/runtime": "^7.27.1",
"@formatjs/intl-localematcher": "^0.6.2",
"@hookform/resolvers": "^3.9.0",
"@next/swc-wasm-nodejs": "13.5.1",
"@opentelemetry/api-logs": "^0.217.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.218.0",
"@opentelemetry/instrumentation": "^0.217.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-logs": "^0.217.0",
"@opentelemetry/sdk-node": "^0.218.0",
"@polar-sh/sdk": "^0.40.3",
"@prelude.so/sdk": "^0.5.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "20.6.2",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"ai": "^6.0.197",
"babel-loader": "^10.0.0",
"bcryptjs": "^3.0.2",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"convex": "^1.0.3",
"date-fns": "^3.6.0",
"dotenv": "^16.5.0",
"encoding": "^0.1.13",
"eslint": "8.49.0",
"eslint-config-next": "13.5.1",
"framer-motion": "^12.6.2",
"ioredis": "^5.11.1",
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.2",
"katex": "^0.16.9",
"lucide-react": "^0.446.0",
"negotiator": "^1.0.0",
"next": "^16.2.6",
"next-auth": "^4.24.14",
"next-intl": "^4.11.2",
"next-themes": "^0.3.0",
"openai": "^4.0.0",
"posthog-js": "^1.313.0",
"posthog-node": "^5.18.1",
"react": "18.2.0",
"react-day-picker": "^8.10.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.53.0",
"react-markdown": "^9.1.0",
"react-resizable-panels": "^2.1.3",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"ribaunt": "^0.2.2",
"sharp": "^0.34.2",
"sonner": "^2.0.7",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2",
"web-vitals": "^5.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.6",
"@tailwindcss/typography": "^0.5.10",
"@types/bcryptjs": "^2.4.6",
"@types/react-syntax-highlighter": "^15.5.11",
"autoprefixer": "^10.4.16",
"baseline-browser-mapping": "^2.9.19",
"postcss": "^8.5.14",
"tailwindcss": "^3.3.3"
},
"overrides": {
"minimatch": "^9.0.7",
"postcss": "^8.5.14",
"uuid": "^11.1.1"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions",
"not dead",
"not op_mini all"
]
}