Skip to content

Commit ec185eb

Browse files
authored
Merge pull request #37 from tinybirdco/dash
more dashboards, ai chat
2 parents 8823cb4 + eb5e189 commit ec185eb

32 files changed

+16259
-2015
lines changed

apps/web/.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ANTHROPIC_API_KEY=
2+
NEXT_PUBLIC_VERCEL_URL=

apps/web/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ yarn-error.log*
3232

3333
# env files (can opt-in for committing if needed)
3434
.env*
35+
!.env.example
3536

3637
# vercel
3738
.vercel

apps/web/package.json

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
"dev": "next dev --turbopack",
77
"build": "next build",
88
"start": "next start",
9-
"lint": "next lint"
9+
"lint": "next lint",
10+
"clean": "rm -rf node_modules && rm -rf .next"
1011
},
1112
"dependencies": {
12-
"@nivo/core": "^0.88.0",
13-
"@nivo/treemap": "^0.88.0",
13+
"@ai-sdk/anthropic": "^1.0.6",
14+
"@ai-sdk/openai": "^1.0.11",
1415
"@radix-ui/react-checkbox": "^1.1.3",
1516
"@radix-ui/react-collapsible": "^1.1.2",
1617
"@radix-ui/react-dialog": "^1.1.4",
@@ -21,34 +22,34 @@
2122
"@radix-ui/react-separator": "^1.1.1",
2223
"@radix-ui/react-slot": "^1.1.1",
2324
"@radix-ui/react-tooltip": "^1.1.6",
24-
"@shadcn/ui": "^0.0.4",
25+
"ai": "^4.0.22",
2526
"class-variance-authority": "^0.7.1",
2627
"clsx": "^2.1.1",
27-
"cmdk": "1.0.0",
28+
"cmdk": "^1.0.4",
2829
"date-fns": "^4.1.0",
2930
"init": "^0.1.2",
30-
"lucide-react": "^0.468.0",
31-
"next": "15.1.1",
31+
"lucide-react": "^0.469.0",
32+
"next": "^15.1.3",
3233
"nuqs": "^2.2.3",
3334
"react": "^19.0.0",
3435
"react-day-picker": "^8.10.1",
3536
"react-dom": "^19.0.0",
3637
"react-markdown": "^9.0.1",
3738
"recharts": "^2.15.0",
38-
"shadcn-ui": "^0.9.4",
3939
"tailwind-merge": "^2.6.0",
40-
"tailwindcss-animate": "^1.0.7"
40+
"tailwindcss-animate": "^1.0.7",
41+
"zod": "^3.24.1"
4142
},
4243
"devDependencies": {
43-
"@eslint/eslintrc": "^3",
44+
"@eslint/eslintrc": "^3.2.0",
4445
"@tailwindcss/typography": "^0.5.15",
45-
"@types/node": "^20",
46-
"@types/react": "^19",
47-
"@types/react-dom": "^19",
48-
"eslint": "^9",
49-
"eslint-config-next": "15.1.1",
50-
"postcss": "^8",
51-
"tailwindcss": "^3.4.1",
52-
"typescript": "^5"
46+
"@types/node": "^22.10.3",
47+
"@types/react": "^19.0.2",
48+
"@types/react-dom": "^19.0.2",
49+
"eslint": "^9.17.0",
50+
"eslint-config-next": "^15.1.3",
51+
"postcss": "^8.4.49",
52+
"tailwindcss": "^3.4.17",
53+
"typescript": "^5.7.2"
5354
}
5455
}

0 commit comments

Comments
 (0)