mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
Removed massive images slowing our site Fixed rate limters for upstash Fixed docker build issue Updated documentation
43 lines
1.4 KiB
JSON
43 lines
1.4 KiB
JSON
{
|
|
"name": "@nimbus/server",
|
|
"version": "0.0.3",
|
|
"type": "module",
|
|
"private": true,
|
|
"module": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "bun --watch src/index.ts",
|
|
"dev:hot": "bun --hot src/index.ts",
|
|
"build": "bun build src/index.ts --target bun --outdir dist",
|
|
"start": "bun dist/index.js",
|
|
"deploy": "bunx wrangler deploy --env production --keep-vars",
|
|
"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": "^13.0.1",
|
|
"@hono/zod-validator": "^0.7.0",
|
|
"@nimbus/auth": "workspace:*",
|
|
"@nimbus/cache": "workspace:*",
|
|
"@nimbus/db": "workspace:*",
|
|
"@nimbus/env": "workspace:*",
|
|
"@upstash/ratelimit": "^2.0.5",
|
|
"drizzle-orm": "^0.43.1",
|
|
"google-auth-library": "^10.1.0",
|
|
"hono": "^4.8.0",
|
|
"nanoid": "^5.1.5",
|
|
"pg": "^8.16.1",
|
|
"rate-limiter-flexible": "^7.1.1",
|
|
"resend": "^4.6.0",
|
|
"zod": "^3.25.67"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^4.20250704.0",
|
|
"@nimbus/tsconfig": "workspace:*",
|
|
"@types/pg": "^8.15.4"
|
|
}
|
|
}
|