-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.83 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.83 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": "fuseion",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "next start",
"dev:convex": "convex dev",
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"preview": "next build --turbopack && next start",
"lint": "eslint . && echo Lint Checks successfully completed!",
"lint:fix": "eslint --fix . && echo Lint Checks successfully completed!",
"typecheck": "tsc --pretty --noEmit && echo Type Checks successfuly completed!",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache && echo Prettier Format successfully completed!",
"code-quality": "npm run lint && npm run typecheck && npm run build && echo Code Quality successfully completed!"
},
"dependencies": {
"@ai-sdk/google": "^3.0.10",
"@ai-sdk/groq": "^3.0.11",
"@ai-sdk/openai": "^3.0.12",
"@ai-sdk/provider-utils": "^4.0.8",
"@ai-sdk/react": "^3.0.44",
"@arcjet/next": "1.0.0-beta.17",
"@convex-dev/eslint-plugin": "1.1.1",
"@convex-dev/persistent-text-streaming": "^0.3.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@t3-oss/env-nextjs": "^0.13.10",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"@wooorm/starry-night": "^3.9.0",
"ai": "^6.0.42",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"convex": "^1.31.5",
"date-fns": "^4.1.0",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^12.27.5",
"lucide-react": "^0.562.0",
"next": "16.1.4",
"next-auth": "5.0.0-beta.29",
"next-themes": "^0.4.6",
"pino": "^10.2.1",
"pino-pretty": "^13.1.3",
"radix-ui": "latest",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-shiki": "^0.9.1",
"redis": "^5.10.0",
"rehype-sanitize": "^6.0.0",
"rehype-starry-night": "^2.2.0",
"remark-breaks": "^4.0.0",
"remark-parse": "^11.0.0",
"resumable-stream": "^2.2.10",
"shiki": "^3.21.0",
"sonner": "^2.0.7",
"streamdown": "^2.1.0",
"swr": "^2.3.8",
"tailwind-merge": "^3.4.0",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.0.9",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.4",
"prettier": "^3.8.0",
"react-scan": "^0.4.3",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}