-
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) · 998 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 998 Bytes
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": "bigbax",
"version": "1.0.0",
"description": "AI-powered calorie tracker using Gemini with structured outputs",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cli": "tsx src/index.ts",
"test": "vitest run",
"test:ai": "vitest run --testNamePattern='Calorie Agent'",
"test:watch": "vitest"
},
"keywords": [
"ai",
"gemini",
"calories",
"structured-outputs"
],
"author": "",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"next": "^16.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.10.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"dotenv": "^16.4.7",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}