Some checks are pending
CI Pipeline / changes (push) Waiting to run
CI Pipeline / core (push) Blocked by required conditions
CI Pipeline / trading-backend (push) Blocked by required conditions
CI Pipeline / trading-data-service (push) Blocked by required conditions
CI Pipeline / trading-frontend (push) Blocked by required conditions
CI Pipeline / erp-core (push) Blocked by required conditions
CI Pipeline / erp-mecanicas (push) Blocked by required conditions
CI Pipeline / gamilit-backend (push) Blocked by required conditions
CI Pipeline / gamilit-frontend (push) Blocked by required conditions
Core: - Add catalog reference implementations (auth, payments, notifications, websocket, etc.) - New agent profiles: Database Auditor, Integration Validator, LLM Agent, Policy Auditor, Trading Strategist - Update SIMCO directives and add escalation/git guidelines - Add deployment inventory and audit execution reports Projects: - erp-suite: DevOps configs, Dockerfiles, shared libs, vertical enhancements - gamilit: Test structure, admin controllers, service refactoring, husky/commitlint - trading-platform: MT4 gateway, auth controllers, admin frontend, deployment scripts - platform_marketing_content: Full DevOps setup, tests, Docker configs - betting-analytics/inmobiliaria-analytics: Initial app structure 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
63 lines
2.2 KiB
JSON
63 lines
2.2 KiB
JSON
{
|
|
"name": "@gamilit/monorepo",
|
|
"version": "1.0.0",
|
|
"description": "GAMILIT Platform - Monorepo Root",
|
|
"private": true,
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"sync:enums": "ts-node apps/devops/scripts/sync-enums.ts",
|
|
"validate:constants": "ts-node apps/devops/scripts/validate-constants-usage.ts",
|
|
"validate:api-contract": "ts-node apps/devops/scripts/validate-api-contract.ts",
|
|
"validate:all": "npm run sync:enums && npm run validate:constants && npm run validate:api-contract",
|
|
"postinstall": "npm run sync:enums",
|
|
"backend:dev": "cd apps/backend && npm run dev",
|
|
"backend:build": "cd apps/backend && npm run build",
|
|
"backend:test": "cd apps/backend && npm run test",
|
|
"frontend:dev": "cd apps/frontend && npm run dev",
|
|
"frontend:build": "cd apps/frontend && npm run build",
|
|
"frontend:test": "cd apps/frontend && npm run test",
|
|
"dev": "concurrently \"npm run backend:dev\" \"npm run frontend:dev\"",
|
|
"build": "npm run backend:build && npm run frontend:build",
|
|
"test": "npm run backend:test && npm run frontend:test",
|
|
"lint": "npm run backend:lint && npm run frontend:lint",
|
|
"format": "npm run backend:format && npm run frontend:format",
|
|
"backend:lint": "cd apps/backend && npm run lint",
|
|
"backend:format": "cd apps/backend && npm run format",
|
|
"frontend:lint": "cd apps/frontend && npm run lint",
|
|
"frontend:format": "cd apps/frontend && npm run format",
|
|
"prepare": "cd ../.. && husky projects/gamilit/.husky install || true"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^18.4.3",
|
|
"@commitlint/config-conventional": "^18.4.3",
|
|
"@types/node": "^20.10.0",
|
|
"@types/web-push": "^3.6.4",
|
|
"concurrently": "^8.2.2",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^15.2.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"workspaces": [
|
|
"apps/backend",
|
|
"apps/frontend"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@types/uuid": "^10.0.0",
|
|
"axios": "^1.13.2",
|
|
"exceljs": "^4.4.0",
|
|
"pg": "^8.16.3",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"overrides": {
|
|
"jws": "^4.0.1",
|
|
"js-yaml": "^4.1.1",
|
|
"glob": "^11.0.0",
|
|
"validator": "^13.15.22"
|
|
}
|
|
}
|