-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.07 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.07 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
{
"name": "ai-workflow-builder-template",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "A template for building your own AI-driven workflow automation platform",
"scripts": {
"dev": "pnpm discover-plugins && next dev",
"build": "pnpm discover-plugins && next build",
"start": "next start",
"type-check": "tsc --noEmit",
"check": "npx ultracite@latest check",
"fix": "npx ultracite@latest fix",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"discover-plugins": "node scripts/discover-plugins.js"
},
"dependencies": {
"@ai-sdk/provider": "^2.0.0",
"@linear/sdk": "^63.2.0",
"@mendable/firecrawl-js": "^4.6.2",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@slack/web-api": "^7.12.0",
"@vercel/analytics": "^1.5.0",
"@vercel/sdk": "^1.17.1",
"@vercel/speed-insights": "^1.2.0",
"@xyflow/react": "^12.9.2",
"ai": "^5.0.102",
"better-auth": "^1.3.34",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"jotai": "^2.15.1",
"jszip": "^3.10.1",
"lucide-react": "^0.552.0",
"motion": "^12.23.24",
"nanoid": "^5.1.6",
"next": "16.0.1",
"next-themes": "^0.4.6",
"openai": "^6.8.1",
"postgres": "^3.4.7",
"radix-ui": "^1.4.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-resizable-panels": "^3.0.6",
"resend": "^6.4.1",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"vaul": "^1.1.2",
"workflow": "4.0.1-beta.17",
"zod": "^4.1.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.6",
"knip": "^5.70.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"ultracite": "6.3.0"
}
}