Files
dbis_core-lite/package.json
2026-02-09 21:51:45 -08:00

80 lines
2.6 KiB
JSON

{
"name": "dbis-core-lite",
"version": "1.0.0",
"description": "IBM 800 Terminal to Core Banking Payment System - ISO 20022 pacs.008/pacs.009 with Raw TLS S2S",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only -r tsconfig-paths/register src/app.ts",
"start": "node dist/app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:compliance": "jest tests/compliance",
"test:security": "jest tests/security",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e --forceExit",
"test:all": "./tests/run-all-tests.sh",
"seed": "ts-node -r tsconfig-paths/register src/database/seed.ts",
"ensure-balance": "ts-node -r tsconfig-paths/register scripts/ensure-account-balance.ts",
"test:frontend": "ts-node -r tsconfig-paths/register scripts/test-frontend-flow.ts",
"migrate": "ts-node -r tsconfig-paths/register src/database/migrate.ts migrate",
"migrate:rollback": "ts-node -r tsconfig-paths/register src/database/migrate.ts rollback",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"keywords": [
"payments",
"iso20022",
"pacs008",
"pacs009",
"banking",
"tls"
],
"author": "Organisation Mondiale Du Numérique, L.P.B.C.A.",
"license": "PROPRIETARY",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"express-prometheus-middleware": "^1.2.0",
"helmet": "^8.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"prom-client": "^13.2.0",
"redis": "^4.6.12",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^5.0.0",
"xml2js": "^0.6.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"@types/pg": "^8.10.9",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}