- Complete monorepo structure with pnpm workspaces and Turborepo - All packages implemented: types, utils, rules-engine, iso20022, treasury, risk-models, audit - React web application with TypeScript and Tailwind CSS - Full Brazil regulatory compliance (BCB requirements) - ISO 20022 message support (pacs.008, pacs.009, pain.001) - Treasury and subledger management - Risk, capital, and liquidity stress allocation - Audit logging and BCB reporting - E&O +10% uplift implementation
36 lines
992 B
JSON
36 lines
992 B
JSON
{
|
|
"name": "@brazil-swift-ops/web",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@brazil-swift-ops/types": "workspace:*",
|
|
"@brazil-swift-ops/utils": "workspace:*",
|
|
"@brazil-swift-ops/rules-engine": "workspace:*",
|
|
"@brazil-swift-ops/iso20022": "workspace:*",
|
|
"@brazil-swift-ops/treasury": "workspace:*",
|
|
"@brazil-swift-ops/risk-models": "workspace:*",
|
|
"@brazil-swift-ops/audit": "workspace:*",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.20.0",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.43",
|
|
"@types/react-dom": "^18.2.17",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"autoprefixer": "^10.4.16",
|
|
"postcss": "^8.4.32",
|
|
"tailwindcss": "^3.3.6",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.8"
|
|
}
|
|
}
|