mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
Releases: @nimbus/auth@0.0.3 @nimbus/server@0.0.4 @nimbus/web@0.0.5 [skip ci] chore: updating dependencies via bun update --lockfile-only
50 lines
1.7 KiB
JSON
50 lines
1.7 KiB
JSON
{
|
|
"name": "@nimbus/server",
|
|
"version": "0.0.4",
|
|
"type": "module",
|
|
"private": true,
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun --watch src/index.ts",
|
|
"dev:hot": "bun --hot src/index.ts",
|
|
"check": "tsc --noEmit",
|
|
"build": "bun run check && bun build src/index.ts --target bun --minify --outdir dist",
|
|
"start": "bun dist/index.js",
|
|
"cf:dev": "sudo wrangler dev",
|
|
"cf:deploy:preview": "wrangler deploy --env preview",
|
|
"cf:deploy:staging": "wrangler deploy --env staging",
|
|
"cf:deploy:production": "wrangler deploy --env production",
|
|
"sync-wrangler-secrets": "bun run scripts/sync-wrangler-secrets.ts",
|
|
"docker:build": "bun run build && docker build -t nimbus-server-manual .",
|
|
"docker:run": "source .env && docker run --name nimbus-server-manual --env-file .env -p $SERVER_PORT:$SERVER_PORT nimbus-server-manual:latest",
|
|
"docker:up": "bun run build && docker compose up -d",
|
|
"docker:down": "docker compose down",
|
|
"docker:remove": "docker compose down --rmi local -v",
|
|
"docker:reset": "bun run docker:remove && bun run docker:up"
|
|
},
|
|
"dependencies": {
|
|
"@googleapis/drive": "^14.2.0",
|
|
"@hono/zod-validator": "^0.7.2",
|
|
"@microsoft/microsoft-graph-client": "^3.0.7",
|
|
"@nimbus/auth": "workspace:*",
|
|
"@nimbus/cache": "workspace:*",
|
|
"@nimbus/db": "workspace:*",
|
|
"@nimbus/env": "workspace:*",
|
|
"@nimbus/shared": "workspace:*",
|
|
"drizzle-orm": "^0.44.4",
|
|
"google-auth-library": "^10.2.0",
|
|
"hono": "^4.8.10",
|
|
"nanoid": "^5.1.5",
|
|
"pg": "^8.16.3",
|
|
"resend": "^4.7.0",
|
|
"zod": "^4.0.13"
|
|
},
|
|
"devDependencies": {
|
|
"@microsoft/microsoft-graph-types": "^2.40.0",
|
|
"@nimbus/tsconfig": "workspace:*",
|
|
"@types/pg": "^8.15.5"
|
|
}
|
|
}
|