All checks were successful
- Create apps/docs/ with Docusaurus 3.7.0 - Add documentation: architecture, backend, frontend, infrastructure, development, ADR - Include 5 Mermaid diagrams (system architecture, request flow, modules, caching, deployment) - Configure as npm workspace with dev:docs/build:docs scripts - Copy existing ADR documents from docs/architecture/adr/
25 lines
713 B
JSON
25 lines
713 B
JSON
{
|
|
"name": "moex-vibe",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/backend",
|
|
"apps/frontend",
|
|
"apps/docs"
|
|
],
|
|
"scripts": {
|
|
"dev:backend": "npm run start:dev -w apps/backend",
|
|
"dev:frontend": "npm run dev -w apps/frontend",
|
|
"build:backend": "npm run build -w apps/backend",
|
|
"build:frontend": "npm run build -w apps/frontend",
|
|
"test:backend": "npm run test -w apps/backend",
|
|
"lint": "npm run lint -w apps/backend",
|
|
"format": "prettier --write \"**/*.{ts,tsx}\"",
|
|
"format:check": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"dev:docs": "npm run dev -w apps/docs",
|
|
"build:docs": "npm run build -w apps/docs"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.0.0"
|
|
}
|
|
}
|