-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.84 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.84 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
{
"name": "synapse",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"serve": "vite preview",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"prepare": "husky",
"pre-commit": "lint-staged",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.1",
"@ai-sdk/google": "^2.0.44",
"@ai-sdk/openai": "^2.0.53",
"@ai-sdk/react": "^2.0.8",
"@ai-sdk/xai": "^2.0.39",
"@clerk/clerk-react": "^5.49.0",
"@convex-dev/react-query": "0.0.0-alpha.11",
"@dagrejs/dagre": "^1.1.5",
"@fontsource-variable/inter": "^5.2.8",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@t3-oss/env-core": "^0.13.8",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-devtools": "^0.7.0",
"@tanstack/react-query": "^5.66.5",
"@tanstack/react-query-devtools": "^5.84.2",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-router-devtools": "^1.132.0",
"@tanstack/react-router-ssr-query": "^1.131.7",
"@tanstack/react-start": "^1.132.0",
"@tanstack/react-store": "^0.7.0",
"@tanstack/router-plugin": "^1.132.0",
"@tanstack/store": "^0.7.0",
"@xyflow/react": "^12.9.0",
"ai": "^5.0.80",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.27.3",
"highlight.js": "^11.11.1",
"katex": "^0.16.25",
"lucide-react": "^0.544.0",
"nitro": "3.0.1-alpha.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.6",
"tw-animate-css": "^1.3.6",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.1.11"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.0.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vitest": "^4.0.18"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "biome check --write --unsafe",
"index.html": "biome format --write",
"vite.config.{js,ts}": "biome check --write --unsafe",
".vscode/**/*.{json,js,ts}": "biome format --write"
}
}