-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.05 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
{
"name": "taxstudio",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"dev:emulators": "dotenv -e .env.local -- firebase emulators:start",
"dev:all": "concurrently \"npm run dev:emulators\" \"npm run dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:chat-url": "node --test tests/chat-url-state.test.mjs",
"setup": "bash scripts/setup.sh",
"generate:mcp-automations": "node scripts/generate-mcp-automations.js",
"generate:tool-definitions": "node scripts/generate-tool-definitions.js"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/google": "^3.0.53",
"@ai-sdk/langchain": "^2.0.143",
"@ai-sdk/react": "^3.0.139",
"@anthropic-ai/sdk": "^0.80.0",
"@google-cloud/vertexai": "^1.10.2",
"@langchain/anthropic": "^1.3.25",
"@langchain/core": "^1.1.35",
"@langchain/google-vertexai": "^2.1.26",
"@langchain/langgraph": "^1.2.5",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@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-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@simplewebauthn/browser": "^13.3.0",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.23",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@xyflow/react": "^12.10.1",
"ai": "^6.0.43",
"autoprefixer": "^10.4.27",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.2.1",
"firebase": "^12.11.0",
"firebase-admin": "^13.7.0",
"jszip": "^3.10.1",
"langfuse": "^3.38.6",
"langfuse-langchain": "^3.38.6",
"lucide-react": "^1.0.1",
"next": "^16.2.1",
"next-intl": "^4.8.3",
"next-themes": "^0.4.6",
"pdf-lib": "^1.17.1",
"postcss": "^8.5.8",
"puppeteer": "^24.40.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.4",
"react-dropzone": "^14.3.8",
"react-markdown": "^10.1.0",
"react-pdf": "^10.4.1",
"react-plaid-link": "^4.1.1",
"recharts": "^3.8.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@simplewebauthn/types": "^12.0.0",
"concurrently": "^9.2.1",
"dotenv-cli": "^11.0.0"
}
}