-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "matchmind",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "tsx scripts/seed.ts",
"sync": "tsx scripts/sync.ts",
"validate-feed": "tsx scripts/validate-feed.mjs",
"fotmob-feed": "tsx scripts/fotmob-to-feed.mjs data/sync/feed.json",
"fotmob-squads": "tsx scripts/fotmob-squads.mjs",
"fotmob-full": "tsx scripts/fotmob-squads.mjs --enrich --feed",
"agent:dev": "npx adk web",
"agent:run": "npx adk run agent/matchmind-agent.ts",
"agent:deploy": "npx adk deploy agent_engine"
},
"dependencies": {
"@auth/mongodb-adapter": "^3.11.2",
"@google/adk": "^1.2.0",
"@google/generative-ai": "^0.24.0",
"@vercel/analytics": "^2.0.1",
"bcryptjs": "^3.0.3",
"mongodb": "^6.16.0",
"next": "^16.2.7",
"next-auth": "^5.0.0-beta.31",
"nodemailer": "^7.0.13",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.8",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.15.21",
"@types/nodemailer": "^8.0.0",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"tailwindcss": "^4.1.8",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}