- Add missing pacs008.ts, pacs009.ts, pain001.ts files - Add missing config.ts, threshold.ts, documentation.ts files - Fix property access errors (orderingCustomerTaxId -> orderingCustomer.taxId) - Add contractActive property to FXContractCheckResult type - Fix undefined handling in validateBrazilianTaxId calls - Update web app tsconfig to exclude dist folders - Remove tsc from web build (Vite handles TypeScript)
36 lines
985 B
JSON
36 lines
985 B
JSON
{
|
|
"name": "@brazil-swift-ops/web",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "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"
|
|
}
|
|
}
|