-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.24 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.24 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
54
55
{
"name": "guardian-api",
"version": "0.1.0",
"private": true,
"description": "Kill Switch API — monitor cloud spending, auto-kill runaway services",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"deploy": "gcloud run deploy guardian-api --source . --region us-central1 --project openai-api-4375643 --allow-unauthenticated --port 8090 --memory 1Gi --min-instances 1 --set-secrets=GUARDIAN_MASTER_SECRET=KILL_SWITCH_MASTER_SECRET:latest,GUARDIAN_MONGODB_URI=KILL_SWITCH_MONGODB_URI:latest,STRIPE_API_SECRET_KEY=KILL_SWITCH_STRIPE_SECRET:latest,STRIPE_WEBHOOK_SECRET_GUARDIAN=KILL_SWITCH_STRIPE_WEBHOOK_SECRET:latest,CF_ORIGIN_SECRET=KILL_SWITCH_CF_ORIGIN_SECRET:latest,GUARDIAN_AGENT_API_KEY=KILL_SWITCH_AGENT_API_KEY:latest,GUARDIAN_POSTGRES_URL=KILL_SWITCH_POSTGRES_URL:latest,CLERK_ALLOWED_AZP=KILL_SWITCH_CLERK_ALLOWED_AZP:latest,RESEND_API_KEY=KILL_SWITCH_RESEND_API_KEY:latest,CLERK_SECRET_KEY=KILL_SWITCH_CLERK_SECRET_KEY:latest"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.1019.0",
"@aws-sdk/client-cost-explorer": "^3.700.0",
"@aws-sdk/client-ec2": "^3.700.0",
"@aws-sdk/client-ecs": "^3.700.0",
"@aws-sdk/client-eks": "^3.700.0",
"@aws-sdk/client-elasticache": "^3.1019.0",
"@aws-sdk/client-lambda": "^3.700.0",
"@aws-sdk/client-rds": "^3.700.0",
"@aws-sdk/client-s3": "^3.700.0",
"@aws-sdk/client-sagemaker": "^3.700.0",
"@aws-sdk/client-sts": "^3.700.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"express-rate-limit": "^7.2.0",
"ioredis": "^5.10.1",
"jose": "^5.2.0",
"mongodb": "^7.1.1",
"mongoose": "^8.2.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"pg": "^8.12.0",
"resend": "^6.10.0",
"stripe": "^17.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.0",
"@types/supertest": "^6.0.0",
"@vitest/coverage-v8": "^3.2.4",
"supertest": "^7.0.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"vite": "^6.4.1",
"vitest": "^3.2.4"
}
}