-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.54 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.54 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
{
"name": "glotti",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev:server": "tsx watch server/main.ts",
"dev:client": "cd client && npm run dev",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build:server": "tsc",
"build:client": "cd client && npm run build",
"build": "npm run build:server && npm run build:client",
"start": "node dist/server/main.js",
"deploy:backend": "gcloud run deploy debatepro-backend --source . --region us-central1 --allow-unauthenticated --set-secrets=\"GEMINI_API_KEY=GEMINI_API_KEY:latest\" --port=8080",
"deploy": "npm run build:server && npm run deploy:backend"
},
"dependencies": {
"@google-cloud/firestore": "^7.0.0",
"@google/adk": "^0.4.0",
"@google/genai": "^1.0.0",
"@resvg/resvg-js": "^2.6.2",
"cors": "^2.8.6",
"dotenv": "^16.4.0",
"express": "^5.0.0",
"express-rate-limit": "^8.2.1",
"jsonrepair": "^3.13.2",
"lucide-react": "^0.575.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"satori": "^0.19.2",
"ws": "^8.18.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/express-rate-limit": "^5.1.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.5.0",
"concurrently": "^9.1.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}