- Complete Dashboard page with statistics, recent activity, compliance status - Complete Transactions page with form, validation, E&O uplift display - Complete Treasury page with account management - Complete Reports page with BCB report generation and export - Add LoadingSpinner component - Add ErrorBoundary component - Add Toast notification system - Add comprehensive input validation - Add error handling utilities - Add basic unit tests structure - Fix XML exporter TypeScript errors - All quick wins completed
24 lines
535 B
JSON
24 lines
535 B
JSON
{
|
|
"name": "@brazil-swift-ops/rules-engine",
|
|
"version": "1.0.0",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@brazil-swift-ops/types": "workspace:*",
|
|
"@brazil-swift-ops/utils": "workspace:*",
|
|
"decimal.js": "^10.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.3.3",
|
|
"vitest": "^1.0.0"
|
|
}
|
|
}
|