Initial commit
This commit is contained in:
79
package.json
Normal file
79
package.json
Normal file
@@ -0,0 +1,79 @@
|
||||
{
|
||||
"name": "dbis-core-banking-system",
|
||||
"version": "1.0.0",
|
||||
"description": "DBIS Core Banking System - Sovereign-grade financial infrastructure",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
||||
"start": "node dist/index.js",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
"test:coverage": "jest --coverage",
|
||||
"prisma:generate": "prisma generate",
|
||||
"prisma:migrate": "prisma migrate dev",
|
||||
"prisma:studio": "prisma studio",
|
||||
"lint": "eslint src --ext .ts",
|
||||
"format": "prettier --write \"src/**/*.ts\"",
|
||||
"prepare": "husky install"
|
||||
},
|
||||
"keywords": [
|
||||
"banking",
|
||||
"core-banking",
|
||||
"sovereign",
|
||||
"ledger",
|
||||
"fx",
|
||||
"cbdc",
|
||||
"iso20022"
|
||||
],
|
||||
"author": "DBIS",
|
||||
"license": "UNLICENSED",
|
||||
"dependencies": {
|
||||
"@prisma/client": "^5.7.1",
|
||||
"express": "^4.18.2",
|
||||
"express-rate-limit": "^7.1.5",
|
||||
"helmet": "^7.1.0",
|
||||
"cors": "^2.8.5",
|
||||
"dotenv": "^16.3.1",
|
||||
"winston": "^3.11.0",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
"bcryptjs": "^2.4.3",
|
||||
"crypto": "^1.0.1",
|
||||
"uuid": "^9.0.1",
|
||||
"zod": "^3.22.4",
|
||||
"xml2js": "^0.6.2",
|
||||
"amqplib": "^0.10.3",
|
||||
"kafkajs": "^2.2.4",
|
||||
"@grpc/grpc-js": "^1.9.14",
|
||||
"@grpc/proto-loader": "^0.7.10",
|
||||
"swagger-ui-express": "^5.0.0",
|
||||
"swagger-jsdoc": "^6.2.8",
|
||||
"date-fns": "^3.0.6",
|
||||
"decimal.js": "^10.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/node": "^20.10.5",
|
||||
"@types/cors": "^2.8.17",
|
||||
"@types/jsonwebtoken": "^9.0.5",
|
||||
"@types/bcryptjs": "^2.4.6",
|
||||
"@types/uuid": "^9.0.7",
|
||||
"@types/xml2js": "^0.4.14",
|
||||
"@types/swagger-ui-express": "^4.1.6",
|
||||
"@types/swagger-jsdoc": "^6.0.4",
|
||||
"@types/jest": "^29.5.11",
|
||||
"@types/supertest": "^6.0.2",
|
||||
"typescript": "^5.3.3",
|
||||
"ts-node-dev": "^2.0.0",
|
||||
"prisma": "^5.7.1",
|
||||
"jest": "^29.7.0",
|
||||
"ts-jest": "^29.1.1",
|
||||
"supertest": "^6.3.3",
|
||||
"eslint": "^8.56.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.17.0",
|
||||
"@typescript-eslint/parser": "^6.17.0",
|
||||
"prettier": "^3.1.1",
|
||||
"husky": "^8.0.3",
|
||||
"lint-staged": "^15.2.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user