- 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
32 lines
828 B
JSON
32 lines
828 B
JSON
{
|
|
"name": "@emoney/graphql-api",
|
|
"version": "1.0.0",
|
|
"description": "GraphQL 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": {
|
|
"@apollo/server": "^4.9.5",
|
|
"graphql": "^16.8.1",
|
|
"graphql-subscriptions": "^2.0.0",
|
|
"graphql-ws": "^5.14.2",
|
|
"@graphql-tools/schema": "^10.0.0",
|
|
"@graphql-tools/load-files": "^6.6.1",
|
|
"@graphql-tools/merge": "^9.0.0",
|
|
"@emoney/blockchain": "workspace:*",
|
|
"@emoney/events": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"typescript": "^5.3.0",
|
|
"ts-node-dev": "^2.0.0",
|
|
"jest": "^29.7.0",
|
|
"@types/jest": "^29.5.11"
|
|
}
|
|
}
|
|
|