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:
defiQUG
2025-12-12 18:01:35 -08:00
parent e01131efaf
commit 9daf1fd378
968 changed files with 160890 additions and 1092 deletions

View File

@@ -8,28 +8,45 @@
"build": "tsc",
"start": "node dist/server.js",
"type-check": "tsc --noEmit",
"db:migrate": "node dist/db/migrate.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:migrate": "tsx src/db/migrate.ts",
"db:migrate:create": "tsx src/db/migrate.ts create",
"db:migrate:up": "tsx src/db/migrate.ts up",
"db:migrate:down": "tsx src/db/migrate.ts down",
"db:migrate:status": "tsx src/db/migrate.ts status",
"db:seed": "tsx src/db/seed.ts"
},
"dependencies": {
"@apollo/server": "^4.9.5",
"@as-integrations/fastify": "^1.1.0",
"fastify": "^4.24.3",
"pg": "^8.11.3",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"jsonwebtoken": "^9.0.2",
"@fastify/websocket": "^10.0.1",
"@kubernetes/client-node": "^0.20.0",
"bcryptjs": "^2.4.3",
"zod": "^3.22.4",
"dotenv": "^16.3.1"
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"fastify": "^4.24.3",
"graphql": "^16.8.1",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.14.2",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2",
"pg": "^8.11.3",
"winston": "^3.11.0",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.12.0",
"@types/pg": "^8.10.9",
"@types/jsonwebtoken": "^9.0.5",
"@types/bcryptjs": "^2.4.6",
"@types/ws": "^8.5.10",
"@vitest/coverage-v8": "^1.0.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"tsx": "^4.7.0"
"vitest": "^1.0.0"
}
}