Files
brazil-swift-ops/apps/api/package.json
defiQUG 95380cc6b7 Complete remaining todos: integration tests, E2E tests, REST API, data visualization, database abstraction, monitoring
- Added comprehensive integration tests for all packages
- Set up Playwright for E2E testing
- Created REST API with Express
- Added data visualization components (Bar, Line, Pie charts)
- Created database abstraction layer
- Added health check and monitoring endpoints
- Created API documentation
2026-01-23 16:46:12 -08:00

26 lines
622 B
JSON

{
"name": "@brazil-swift-ops/api",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@brazil-swift-ops/types": "workspace:*",
"@brazil-swift-ops/utils": "workspace:*",
"@brazil-swift-ops/rules-engine": "workspace:*",
"cors": "^2.8.5",
"express": "^4.18.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}