forked from theam/facility
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "facility-monorepo",
"private": true,
"version": "0.3.0",
"description": "Facility — the self-hostable platform that governs your AI SDLC. Monorepo: control plane, gateway, web, docs, CLI, MCP, harnesses.",
"license": "Apache-2.0",
"author": "The Agile Monkeys (https://theagilemonkeys.com)",
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.20.0",
"scripts": {
"build": "turbo run build",
"clean:outputs": "node scripts/clean-outputs.mjs",
"build:clean": "pnpm clean:outputs && turbo run build --force",
"dev": "node scripts/dev.mjs",
"deploy:aws": "node scripts/deploy-aws.mjs deploy",
"dev:services": "turbo run dev dev:worker",
"test": "pnpm test:dev && turbo run test",
"test:dev": "node --test scripts/*.test.mjs",
"test:critical": "node scripts/test-critical.mjs",
"test:uncached": "pnpm test:dev && turbo run test --force --filter='!@facility/db' --filter='!@facility/api' --filter='!@facility/gateway' --filter='!@theagilemonkeys/facility'",
"test:e2e-sandbox": "turbo run build --filter='@facility/api^...' && pnpm --filter @facility/api test:e2e-sandbox",
"typecheck": "turbo run typecheck",
"lint": "biome check .",
"format": "biome format --write .",
"guards": "node guards/run.mjs",
"migrations:check": "node scripts/migrations.mjs check",
"verify": "node scripts/verify.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
}
}