-
Notifications
You must be signed in to change notification settings - Fork 546
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.38 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.38 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
{
"name": "@hypr/api",
"private": true,
"type": "module",
"scripts": {
"dev": "dotenvx run --ignore MISSING_ENV_FILE -f ../../.env.supabase -f ../../.env.stripe -f ../../.env.restate -f .env -- bun --hot src/index.ts",
"stripe:migrate": "dotenvx run --ignore MISSING_ENV_FILE -f ../../.env.supabase -f ../../.env.stripe -f .env -- bun src/scripts/run-stripe-migrations.ts",
"openapi": "CI=true bun src/scripts/generate-openapi.ts",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@hono/zod-validator": "^0.7.6",
"@hypr/api-client": "workspace:*",
"@hypr/supabase": "workspace:*",
"@octokit/auth-app": "^8.1.2",
"@octokit/rest": "^22.0.1",
"@posthog/ai": "^7.4.2",
"@restatedev/restate-sdk-clients": "^1.10.2",
"@scalar/hono-api-reference": "^0.5.184",
"@sentry/bun": "^10.34.0",
"@supabase/stripe-sync-engine": "^0.45.0",
"@supabase/supabase-js": "^2.90.1",
"@t3-oss/env-core": "^0.13.10",
"@types/pg": "^8.16.0",
"effect": "^3.19.14",
"hono": "^4.11.4",
"hono-openapi": "^0.4.8",
"openai": "^6.16.0",
"pg": "^8.17.1",
"posthog-node": "^5.21.0",
"stripe": "^19.3.1",
"zod": "^4.3.5",
"zod-openapi": "^5.4.6"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.51.4",
"@hey-api/openapi-ts": "^0.78.3",
"@types/bun": "^1.3.6",
"typescript": "^5.9.3"
}
}