- Add Foundry project configuration (foundry.toml, foundry.lock) - Add Solidity contracts (TokenFactory138, BridgeVault138, ComplianceRegistry, etc.) - Add API definitions (OpenAPI, GraphQL, gRPC, AsyncAPI) - Add comprehensive test suite (unit, integration, fuzz, invariants) - Add API services (REST, GraphQL, orchestrator, packet service) - Add documentation (ISO20022 mapping, runbooks, adapter guides) - Add development tools (RBC tool, Swagger UI, mock server) - Update OpenZeppelin submodules to v5.0.0
27 lines
654 B
JSON
27 lines
654 B
JSON
{
|
|
"name": "@emoney/packet-service",
|
|
"version": "1.0.0",
|
|
"description": "Packet generation and dispatch service",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"pdfkit": "^0.14.0",
|
|
"nodemailer": "^6.9.7",
|
|
"@emoney/blockchain": "workspace:*",
|
|
"@emoney/events": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.0",
|
|
"@types/nodemailer": "^6.4.14",
|
|
"typescript": "^5.3.0",
|
|
"ts-node-dev": "^2.0.0"
|
|
}
|
|
}
|
|
|