Files
Moonbase/package.json
tonym 98cabc514d v0.9.1 — Self-update: 403 on trigger mismatch + reliability
webhook returns 200 even when a trigger rule isn't satisfied, which would let
the app's res.ok check falsely report success if the secret drifted. Set
trigger-rule-mismatch-http-response-code: 403 so unauthorized triggers are
clearly rejected.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-15 22:44:36 -05:00

72 lines
2.1 KiB
JSON

{
"name": "moonbase",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts",
"db:backfill-locations": "tsx prisma/scripts/backfill-locations.ts",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset --force",
"db:backup": "sh scripts/db-backup.sh",
"db:restore": "sh scripts/db-restore.sh"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@otm/account-panel": "0.8.2",
"@paralleldrive/cuid2": "^3.3.0",
"@prisma/client": "^5.22.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"fflate": "^0.8.3",
"lucide-react": "^0.441.0",
"next": "14.2.29",
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.17.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.29",
"postcss": "^8.4.47",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^4.1.7"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}