Apply Composer changes: comprehensive API updates, migrations, middleware, and infrastructure improvements
- Add comprehensive database migrations (001-024) for schema evolution - Enhance API schema with expanded type definitions and resolvers - Add new middleware: audit logging, rate limiting, MFA enforcement, security, tenant auth - Implement new services: AI optimization, billing, blockchain, compliance, marketplace - Add adapter layer for cloud integrations (Cloudflare, Kubernetes, Proxmox, storage) - Update Crossplane provider with enhanced VM management capabilities - Add comprehensive test suite for API endpoints and services - Update frontend components with improved GraphQL subscriptions and real-time updates - Enhance security configurations and headers (CSP, CORS, etc.) - Update documentation and configuration files - Add new CI/CD workflows and validation scripts - Implement design system improvements and UI enhancements
This commit is contained in:
30
blockchain/package.json
Normal file
30
blockchain/package.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "sankofa-phoenix-blockchain",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"compile": "hardhat compile",
|
||||
"test": "hardhat test",
|
||||
"deploy:local": "hardhat run scripts/deploy.ts --network localhost",
|
||||
"deploy:test": "hardhat run scripts/deploy.ts --network testnet",
|
||||
"node:start": "docker-compose up -d besu",
|
||||
"node:stop": "docker-compose down",
|
||||
"generate:types": "ts-node scripts/generate-types.ts",
|
||||
"compile:types": "hardhat compile && pnpm generate:types"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
|
||||
"@typechain/ethers-v6": "^0.5.0",
|
||||
"@typechain/hardhat": "^9.0.0",
|
||||
"hardhat": "^2.19.0",
|
||||
"typescript": "^5.4.0",
|
||||
"ts-node": "^10.9.0",
|
||||
"typechain": "^8.3.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@openzeppelin/contracts": "^5.0.0",
|
||||
"ethers": "^6.9.0",
|
||||
"web3": "^4.3.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user