-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.39 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "agentnexus",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm db:generate && next dev --turbopack",
"build": "pnpm db:generate && next build",
"start": "next start",
"lint": "biome lint --fix --unsafe",
"tsc": "tsc --project ./tsconfig.json --noEmit",
"prepare": "husky",
"db:push": "prisma db push --schema ./prisma",
"db:generate": "prisma generate --schema ./prisma"
},
"dependencies": {
"@agentic/ai-sdk": "^7.2.0",
"@agentic/core": "^7.1.0",
"@agentic/e2b": "^7.2.0",
"@agentic/exa": "^7.2.0",
"@agentic/firecrawl": "^7.2.0",
"@agentic/weather": "^7.1.0",
"@ai-sdk/openai": "^1.0.6",
"@antv/xflow": "^2.2.3-beta",
"@auth/prisma-adapter": "^2.7.4",
"@chronark/zod-bird": "^0.3.10",
"@e2b/code-interpreter": "^1.0.4",
"@hookform/resolvers": "^3.9.0",
"@langchain/textsplitters": "^0.1.0",
"@number-flow/react": "^0.4.4",
"@prisma/client": "^5.20.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@uiw/react-textarea-code-editor": "^3.1.0",
"@vercel/functions": "^1.5.0",
"ai": "^4.0.10",
"ali-oss": "^6.21.0",
"chrono-node": "^2.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"consola": "^3.2.3",
"date-fns": "^4.1.0",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^11.5.6",
"geist": "^1.3.1",
"lucide-react": "^0.445.0",
"mammoth": "^1.8.0",
"ms": "^2.1.3",
"nanoid": "^5.0.8",
"next": "15.1.2",
"next-auth": "^5.0.0-beta.25",
"next-axiom": "^1.5.1",
"next-intl": "^3.19.4",
"next-themes": "^0.3.0",
"next-view-transitions": "^0.3.2",
"node-html-markdown": "^1.3.0",
"pdf-parse": "^1.1.1",
"react": "^18",
"react-day-picker": "^8.10.1",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-markdown": "^9.0.1",
"recharts": "^2.14.1",
"remark-gfm": "^4.0.0",
"sonner": "^1.5.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-radix": "^3.0.5",
"tippy.js": "^6.3.7",
"use-debounce": "^10.0.3",
"vaul": "^0.9.4",
"zod": "^3.23.8",
"zod-error": "^1.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@types/ali-oss": "^6.16.11",
"@types/ms": "^0.7.34",
"@types/node": "^20",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^18",
"@types/react-dom": "^18",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}