buster/apps/trigger/package.json

42 lines
1.4 KiB
JSON

{
"name": "@buster-app/trigger",
"version": "1.0.0",
"private": false,
"type": "module",
"scripts": {
"dev": "npx trigger.dev@v4-beta dev",
"deploy": "npx trigger.dev@v4-beta deploy",
"prebuild": "tsx scripts/validate-env.ts",
"build": "echo 'No build step required but we run it to make sure env is loaded' && tsc --noEmit",
"lint": "biome check --write",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts",
"test:integration:watch": "vitest watch tests/integration",
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@buster/access-controls": "workspace:*",
"@buster/env-utils": "workspace:*",
"@buster/server-shared": "workspace:*",
"@buster/ai": "workspace:*",
"@buster/database": "workspace:*",
"@buster/slack": "workspace:*",
"@buster/test-utils": "workspace:*",
"@buster/typescript-config": "workspace:*",
"@buster/vitest-config": "workspace:*",
"@mastra/core": "catalog:",
"@trigger.dev/sdk": "catalog:",
"ai": "catalog:",
"braintrust": "catalog:",
"vitest": "catalog:",
"zod": "catalog:",
"drizzle-orm": "catalog:"
},
"devDependencies": {
"@trigger.dev/build": "catalog:"
}
}