-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "ai-hack-mate",
"version": "1.0.0",
"description": "A multi-agent system that acts like a real teammate",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next out",
"dev:turbo": "next dev --turbo"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.9.0",
"@google/generative-ai": "^0.1.3",
"@octokit/rest": "^20.1.2",
"@pinecone-database/pinecone": "^6.1.2",
"@slack/web-api": "^6.10.0",
"@types/uuid": "^10.0.0",
"lucide-react": "^0.544.0",
"next": "^15.0.0",
"openai": "^4.20.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.0"
}
}