48 lines
1.5 KiB
JSON
48 lines
1.5 KiB
JSON
{
|
|
"schema_version": 1,
|
|
"project_id": "__PROJECT_SLUG__",
|
|
"display_name": "__PROJECT_NAME__",
|
|
"domain_root": "apps/__PROJECT_SLUG__/domain",
|
|
"requirements": "apps/__PROJECT_SLUG__/domain/input/requirement.md",
|
|
"architecture": "apps/__PROJECT_SLUG__/domain/input/architecture.md",
|
|
"quality_profile": "config/casan/quality-profiles/enterprise-web-v1.json",
|
|
"feature": {
|
|
"id": "__FEATURE_ID__",
|
|
"module_id": "__MODULE_ID__",
|
|
"slug": "__PROJECT_SLUG__-core",
|
|
"title": "__PROJECT_NAME__ Core"
|
|
},
|
|
"source_roots": [
|
|
"apps/__PROJECT_SLUG__/backend",
|
|
"apps/__PROJECT_SLUG__/frontend"
|
|
],
|
|
"commands": {
|
|
"build": [["npm", "run", "build"]],
|
|
"test": [["npm", "test"]]
|
|
},
|
|
"verification": [
|
|
{
|
|
"path_prefix": "apps/__PROJECT_SLUG__/backend/",
|
|
"commands": [
|
|
["npm", "run", "build", "-w", "@__PROJECT_SLUG__/backend"],
|
|
["npm", "test", "-w", "@__PROJECT_SLUG__/backend"]
|
|
]
|
|
},
|
|
{
|
|
"path_prefix": "apps/__PROJECT_SLUG__/frontend/",
|
|
"commands": [
|
|
["npm", "run", "build", "-w", "@__PROJECT_SLUG__/frontend"],
|
|
["npm", "test", "-w", "@__PROJECT_SLUG__/frontend"]
|
|
]
|
|
}
|
|
],
|
|
"artifacts_root": "docs/output",
|
|
"implementation_evidence": [
|
|
"apps/__PROJECT_SLUG__/backend/src/main.ts",
|
|
"apps/__PROJECT_SLUG__/backend/test/health.test.ts",
|
|
"apps/__PROJECT_SLUG__/frontend/src/App.tsx",
|
|
"apps/__PROJECT_SLUG__/frontend/src/__tests__/App.test.tsx"
|
|
],
|
|
"tech_stack": "NestJS 10, React 18, Vite 5, Tailwind CSS 3, strict TypeScript"
|
|
}
|