Initial project setup: Add contracts, API definitions, tests, and documentation
- 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
This commit is contained in:
34
api/services/rest-api/package.json
Normal file
34
api/services/rest-api/package.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "@emoney/rest-api",
|
||||
"version": "1.0.0",
|
||||
"description": "REST API server for eMoney Token Factory",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"start": "node dist/index.js",
|
||||
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
||||
"test": "jest"
|
||||
},
|
||||
"dependencies": {
|
||||
"express": "^4.18.2",
|
||||
"express-openapi-validator": "^5.1.0",
|
||||
"cors": "^2.8.5",
|
||||
"helmet": "^7.1.0",
|
||||
"ethers": "^6.9.0",
|
||||
"redis": "^4.6.12",
|
||||
"@emoney/validation": "workspace:*",
|
||||
"@emoney/blockchain": "workspace:*",
|
||||
"@emoney/auth": "workspace:*",
|
||||
"@emoney/events": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/cors": "^2.8.17",
|
||||
"@types/node": "^20.10.0",
|
||||
"typescript": "^5.3.0",
|
||||
"ts-node-dev": "^2.0.0",
|
||||
"jest": "^29.7.0",
|
||||
"@types/jest": "^29.5.11"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user