mirror of https://github.com/buster-so/buster.git
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "@buster-app/server",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prebuild": "bun run scripts/validate-env.js && pnpm run typecheck",
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"lint": "biome check",
|
|
"start": "bun dist/index.js",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest --coverage",
|
|
"test:watch": "vitest --watch",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@buster/access-controls": "workspace:*",
|
|
"@buster/database": "workspace:*",
|
|
"@buster/server-shared": "workspace:*",
|
|
"@buster/slack": "workspace:*",
|
|
"@buster/test-utils": "workspace:*",
|
|
"@buster/typescript-config": "workspace:*",
|
|
"@buster/vitest-config": "workspace:*",
|
|
"@hono/zod-validator": "^0.7.0",
|
|
"@supabase/supabase-js": "catalog:",
|
|
"@trigger.dev/sdk": "catalog:",
|
|
"drizzle-orm": "catalog:",
|
|
"hono": "catalog:",
|
|
"hono-pino": "^0.9.1",
|
|
"pino": "^9.7.0",
|
|
"pino-pretty": "^13.0.0",
|
|
"tsup": "catalog:",
|
|
"zod": "catalog:"
|
|
}
|
|
}
|