-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.7 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "text2sql-monorepo",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "pnpm --parallel --filter \"./apps/*\" run dev",
"prisma:studio": "pnpm --filter @text2sql/backend run prisma:studio",
"db:studio": "pnpm --filter @text2sql/backend run prisma:studio",
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:backend": "pnpm --filter @text2sql/backend test",
"test:frontend": "pnpm --filter @text2sql/frontend test",
"format:check": "pnpm -r lint",
"governance:terminology:check": "pnpm --filter @text2sql/backend exec ts-node --transpile-only --skipProject --compilerOptions '{\"module\":\"CommonJS\",\"moduleResolution\":\"Node\"}' ../../scripts/check-governance-terminology.ts",
"backend:capability-boundary:check": "BACKEND_CAPABILITY_BOUNDARY_CONVERSATION_KNOWLEDGE_BASELINE=${BACKEND_CAPABILITY_BOUNDARY_CONVERSATION_KNOWLEDGE_BASELINE:-9} pnpm --filter @text2sql/backend exec ts-node --transpile-only --skipProject --compilerOptions '{\"module\":\"CommonJS\",\"moduleResolution\":\"Node\"}' ../../scripts/check-backend-capability-boundaries.ts",
"text2sql:no-legacy-compat:check": "pnpm --filter @text2sql/backend run check:text2sql-no-legacy-compat",
"text2sql:v2-eval:gate": "pnpm --filter @text2sql/backend run collect:text2sql-v2-eval-gate",
"text2sql:v2-eval:gate:strict": "pnpm --filter @text2sql/backend run collect:text2sql-v2-eval-gate:strict",
"text2sql:v2-focused-coverage:gate": "pnpm --filter @text2sql/backend run collect:text2sql-v2-focused-coverage-gate",
"text2sql:v2-focused-coverage:gate:strict": "pnpm --filter @text2sql/backend run collect:text2sql-v2-focused-coverage-gate:strict"
}
}