This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.43 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.43 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
{
"name": "mistral-thing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "mprocs",
"build": "next build",
"start": "next start",
"check": "biome check && tsgo --noEmit",
"check:fix": "biome check --write --unsafe && tsgo --noEmit",
"clean": "rm -rf .next node_modules",
"prepare": "husky"
},
"dependencies": {
"@convex-dev/better-auth": "^0.9.7",
"@convex-dev/resend": "^0.1.13",
"@mistralai/mistralai": "^1.10.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.1",
"@t3-oss/env-nextjs": "^0.13.8",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-form": "^1.25.0",
"@uidotdev/usehooks": "^2.4.1",
"@vercel/analytics": "^1.5.0",
"better-auth": "1.3.34",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"convex": "^1.29.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.553.0",
"motion": "^12.23.24",
"nanoid": "^5.1.6",
"next": "16.0.3",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"shiki": "^3.15.0",
"sonner": "^2.0.7",
"streamdown": "^1.5.1",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"throttleit": "^2.1.0",
"ts-pattern": "^5.9.0",
"ua-parser-js": "^2.0.6",
"use-stick-to-bottom": "^1.1.1",
"usehooks-ts": "^3.1.1",
"virtua": "^0.47.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.3.4",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript/native-preview": "^7.0.0-dev.20251114.1",
"babel-plugin-react-compiler": "1.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"mprocs": "^0.7.3",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"ultracite": "6.3.2"
},
"packageManager": "bun@1.3.1",
"engines": {
"node": "^22.x"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
}
}