-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.54 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.54 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": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check-types": "tsc --noEmit",
"test": "vitest run",
"tsc": "tsc --noEmit",
"trigger:dev": "npx trigger.dev@latest dev",
"backfill:repo": "npx tsx src/scripts/backfill/backfill-repo-events.ts"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.30",
"@octokit/auth-app": "^8.0.1",
"@octokit/rest": "^22.0.0",
"@openrouter/ai-sdk-provider": "^2.2.3",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-email/components": "^0.1.1",
"@sentry/esbuild-plugin": "^4.9.0",
"@sentry/nextjs": "^10.39.0",
"@sentry/node": "^10.39.0",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.97.0",
"@tanstack/react-query": "^5.81.5",
"@tavily/core": "^0.7.1",
"@trigger.dev/sdk": "4.4.1",
"ai": "^6.0.94",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"entities": "^7.0.1",
"geist": "^1.7.0",
"lucide-react": "^0.513.0",
"marked": "^16.0.0",
"minimatch": "^10.0.3",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"openai": "^6.22.0",
"posthog-js": "^1.351.1",
"posthog-node": "^5.24.17",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.60.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"resend": "^6.9.2",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@trigger.dev/build": "4.4.1",
"@types/node": "^22.19.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"playwright": "^1.53.1",
"prettier": "^3.8.1",
"react-scan": "^0.5.3",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}