airi/server/apps/api/package.json
RainbowBird bd790098d2
Some checks failed
CI / Lint (push) Waiting to run
CI / Build Test (stage-tamagotchi) (push) Waiting to run
CI / Build Test (stage-tamagotchi-godot) (push) Waiting to run
CI / Build Test (stage-web) (push) Waiting to run
CI / Build Test (ui-loading-screens) (push) Waiting to run
CI / Build Test (ui-transitions) (push) Waiting to run
CI / Unit Test (push) Waiting to run
CI / Type Check (push) Waiting to run
CI / Check Provenance (push) Waiting to run
Cloudflare Pages (Auth UI) / Deploy - ui-server-auth (push) Waiting to run
Cloudflare Workers / Deploy - stage-web (push) Waiting to run
Update Nix pnpmDeps Hash / update (push) Has been cancelled
fix(api): load Drizzle migrations at runtime (#2307)
2026-08-17 11:19:53 +00:00

73 lines
2.5 KiB
JSON

{
"name": "@proj-airi/api-server",
"type": "module",
"version": "0.11.3",
"private": true,
"exports": {
"./app-type": "./src/app-type.ts"
},
"scripts": {
"apply:env": "dotenvx run -f .env.local --overload --ignore=MISSING_ENV_FILE",
"dev": "pnpm run apply:env -- tsx --import ./instrumentation.ts --watch src/main.ts",
"start": "pnpm run apply:env -- tsx --import ./instrumentation.ts src/main.ts",
"build": "tsc -b",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:push": "pnpm run apply:env -- drizzle-kit push"
},
"dependencies": {
"@dotenvx/dotenvx": "catalog:",
"@electric-sql/pglite": "catalog:",
"@guiiai/logg": "catalog:",
"@hono/node-server": "catalog:",
"@hono/node-ws": "catalog:",
"@hono/otel": "catalog:",
"@langfuse/otel": "catalog:",
"@langfuse/tracing": "catalog:",
"@moeru/eventa": "catalog:",
"@moeru/std": "catalog:",
"@opentelemetry/api": "catalog:",
"@opentelemetry/api-logs": "catalog:",
"@opentelemetry/exporter-logs-otlp-proto": "catalog:",
"@opentelemetry/exporter-metrics-otlp-proto": "catalog:",
"@opentelemetry/exporter-trace-otlp-proto": "catalog:",
"@opentelemetry/instrumentation": "catalog:",
"@opentelemetry/instrumentation-http": "catalog:",
"@opentelemetry/instrumentation-ioredis": "catalog:",
"@opentelemetry/instrumentation-pg": "catalog:",
"@opentelemetry/instrumentation-runtime-node": "catalog:",
"@opentelemetry/instrumentation-undici": "catalog:",
"@opentelemetry/resources": "catalog:",
"@opentelemetry/sdk-logs": "catalog:",
"@opentelemetry/sdk-metrics": "catalog:",
"@opentelemetry/sdk-node": "catalog:",
"@opentelemetry/sdk-trace-node": "catalog:",
"@opentelemetry/semantic-conventions": "catalog:",
"@proj-airi/auth-shared": "workspace:*",
"@proj-airi/server-sdk-shared": "workspace:*",
"drizzle-orm": "catalog:",
"drizzle-valibot": "catalog:",
"es-toolkit": "catalog:",
"hono": "catalog:",
"hono-rate-limiter": "catalog:",
"injeca": "catalog:",
"ioredis": "catalog:",
"jose": "catalog:",
"nanoid": "catalog:",
"ofetch": "catalog:",
"pg": "catalog:",
"posthog-node": "catalog:",
"stripe": "catalog:",
"unspeech": "catalog:xsai",
"valibot": "catalog:",
"ws": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@types/ioredis-mock": "catalog:",
"@types/pg": "catalog:",
"@types/ws": "catalog:",
"drizzle-kit": "catalog:",
"ioredis-mock": "catalog:"
}
}