-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.7 KB
/
package.json
File metadata and controls
32 lines (32 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
24
25
26
27
28
29
30
31
32
{
"name": "ficecal-monorepo",
"private": true,
"version": "0.1.0",
"description": "Public monorepo bootstrap for FiceCal v2 web, MCP, and modular contracts.",
"packageManager": "pnpm@10.6.0",
"scripts": {
"dev": "bash scripts/dev.sh",
"dev:full": "bash scripts/dev.sh",
"dev:mcp": "pnpm --filter @ficecal/service-mcp dev",
"dev:web": "pnpm --filter @ficecal/web dev",
"validate:feature-catalog": "python3 scripts/validate-feature-catalog.py",
"validate:fixture-coverage": "python3 scripts/validate-fixture-coverage.py",
"validate:legacy-alias-parity": "python3 scripts/validate-legacy-alias-parity.py",
"validate:billing-canonical-handoff": "python3 scripts/validate-billing-canonical-handoff.py",
"validate:billing-live-readiness": "python3 scripts/validate-billing-live-readiness.py",
"validate:billing-live-smoke:dry-run": "python3 scripts/run-billing-live-smoke.py --mode dry-run",
"validate:billing-live-smoke": "python3 scripts/run-billing-live-smoke.py --mode live --require-provider-commands",
"validate:billing-live-reconciliation": "python3 scripts/validate-billing-live-reconciliation.py",
"validate:qa-evidence-policy": "python3 scripts/validate-qa-evidence-policy.py",
"validate:docs-links": "python3 scripts/validate-doc-links.py",
"validate": "npm run validate:feature-catalog && npm run validate:fixture-coverage && npm run validate:legacy-alias-parity && npm run validate:billing-canonical-handoff && npm run validate:billing-live-readiness && npm run validate:qa-evidence-policy && npm run validate:docs-links"
},
"devDependencies": {
"typescript": "~5.4.5"
},
"pnpm": {
"overrides": {
"typescript": "~5.4.5"
}
}
}