Structure: - control-plane/: Registries, SIMCO directives, CI/CD templates - projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics - shared/: Libs catalog, knowledge-base Key features: - Centralized port, domain, database, and service registries - 23 SIMCO directives + 6 fundamental principles - NEXUS agent profiles with delegation rules - Validation scripts for workspace integrity - Dockerfiles for all services - Path aliases for quick reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
789 B
JSON
26 lines
789 B
JSON
{
|
|
"name": "@orbiquant/monorepo",
|
|
"version": "1.0.0",
|
|
"description": "OrbiQuant IA - Trading Platform Monorepo",
|
|
"private": true,
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"frontend:dev": "cd apps/frontend && npm run dev",
|
|
"frontend:build": "cd apps/frontend && npm run build",
|
|
"frontend:test": "cd apps/frontend && npm run test",
|
|
"frontend:lint": "cd apps/frontend && npm run lint",
|
|
"backend:dev": "cd apps/backend && python -m uvicorn app.main:app --reload",
|
|
"lint": "npm run frontend:lint"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^18.4.3",
|
|
"@commitlint/config-conventional": "^18.4.3",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^15.2.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
}
|
|
}
|