2025-11-28 12:54:33 -08:00
|
|
|
{
|
|
|
|
|
"name": "phoenix-sankofa-api",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "tsx watch src/server.ts",
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"start": "node dist/server.js",
|
|
|
|
|
"type-check": "tsc --noEmit",
|
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
2025-12-12 18:01:35 -08:00
|
|
|
"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",
|
2026-03-11 12:57:41 -07:00
|
|
|
"db:seed": "tsx src/db/seed.ts",
|
|
|
|
|
"db:seed:sovereign-stack": "tsx src/db/seeds/sovereign_stack_services.ts",
|
|
|
|
|
"verify:sovereign-stack": "tsx scripts/verify-sovereign-stack.ts",
|
|
|
|
|
"create-env": "bash scripts/create-env.sh"
|
2025-11-28 12:54:33 -08:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@apollo/server": "^4.9.5",
|
|
|
|
|
"@as-integrations/fastify": "^1.1.0",
|
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
2025-12-12 18:01:35 -08:00
|
|
|
"@fastify/websocket": "^10.0.1",
|
|
|
|
|
"@kubernetes/client-node": "^0.20.0",
|
|
|
|
|
"bcryptjs": "^2.4.3",
|
|
|
|
|
"dotenv": "^16.3.1",
|
|
|
|
|
"ethers": "^6.9.0",
|
2025-11-28 12:54:33 -08:00
|
|
|
"fastify": "^4.24.3",
|
|
|
|
|
"graphql": "^16.8.1",
|
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
2025-12-12 18:01:35 -08:00
|
|
|
"graphql-subscriptions": "^2.0.0",
|
2025-11-28 12:54:33 -08:00
|
|
|
"graphql-tag": "^2.12.6",
|
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
2025-12-12 18:01:35 -08:00
|
|
|
"graphql-ws": "^5.14.2",
|
2025-11-28 12:54:33 -08:00
|
|
|
"jsonwebtoken": "^9.0.2",
|
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
2025-12-12 18:01:35 -08:00
|
|
|
"node-fetch": "^3.3.2",
|
|
|
|
|
"pg": "^8.11.3",
|
|
|
|
|
"winston": "^3.11.0",
|
|
|
|
|
"ws": "^8.16.0",
|
|
|
|
|
"zod": "^3.22.4"
|
2025-11-28 12:54:33 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
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
2025-12-12 18:01:35 -08:00
|
|
|
"@types/bcryptjs": "^2.4.6",
|
|
|
|
|
"@types/jsonwebtoken": "^9.0.5",
|
2025-11-28 12:54:33 -08:00
|
|
|
"@types/node": "^20.12.0",
|
|
|
|
|
"@types/pg": "^8.10.9",
|
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
2025-12-12 18:01:35 -08:00
|
|
|
"@types/ws": "^8.5.10",
|
|
|
|
|
"@vitest/coverage-v8": "^1.0.0",
|
|
|
|
|
"tsx": "^4.7.0",
|
2025-11-28 12:54:33 -08:00
|
|
|
"typescript": "^5.4.0",
|
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
2025-12-12 18:01:35 -08:00
|
|
|
"vitest": "^1.0.0"
|
2025-11-28 12:54:33 -08:00
|
|
|
}
|
|
|
|
|
}
|