-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.17 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.17 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
{
"name": "tambo-hackathon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"init": "npx tambo init",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"eslint"
]
},
"dependencies": {
"@clerk/nextjs": "^6.37.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@google/genai": "^1.40.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-tooltip": "1.2.8",
"@tailwindcss/oxide": "^4.1.18",
"@tambo-ai/react": "^0.69.1",
"@tambo-ai/typescript-sdk": "^0.84.0",
"@tiptap/extension-document": "^3.12.1",
"@tiptap/extension-hard-break": "^3.16.0",
"@tiptap/extension-mention": "^3.12.1",
"@tiptap/extension-paragraph": "^3.12.1",
"@tiptap/extension-placeholder": "^3.12.1",
"@tiptap/extension-text": "^3.12.1",
"@tiptap/react": "^3.12.1",
"@tiptap/suggestion": "^3.12.1",
"class-variance-authority": "^0.7.1",
"dompurify": "^3.3.1",
"fabric": "^6.9.1",
"framer-motion": "^12.29.0",
"highlight.js": "^11.11.1",
"html-to-image": "^1.11.13",
"json-stringify-pretty-compact": "^4.0.0",
"jspdf": "^4.1.0",
"lucide-react": "^0.562.0",
"mime": "^4.1.0",
"next": "^15.5.10",
"radix-ui": "^1.4.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"recharts": "^3.7.0",
"streamdown": "^2.1.0",
"tippy.js": "^6.3.7",
"use-debounce": "^10.1.0",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.23",
"clsx": "^2.1.1",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4",
"typescript": "5.9.3"
}
}