-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"name": "producthive",
"version": "2.0.0",
"description": "Professional multi-agent software creation platform with PRD generation and GitHub automation",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"workers": "npx tsx lib/queue/worker-server.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@google-cloud/aiplatform": "^3.27.0",
"@langchain/core": "^0.3.30",
"@langchain/google-vertexai": "^0.1.3",
"@octokit/rest": "^21.0.2",
"@supabase/supabase-js": "^2.97.0",
"bullmq": "^5.70.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"docx": "^9.0.5",
"framer-motion": "^11.15.0",
"groq-sdk": "^0.37.0",
"ioredis": "^5.9.3",
"jspdf": "^2.5.2",
"lucide-react": "^0.468.0",
"next": "^15.1.4",
"openai": "^6.22.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.6.0",
"tsx": "^4.21.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "^15.1.4",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}