- Add comprehensive naming convention (provider-region-resource-env-purpose) - Implement Terraform locals for centralized naming - Update all Terraform resources to use new naming convention - Create deployment automation framework (18 phase scripts) - Add Azure setup scripts (provider registration, quota checks) - Update deployment scripts config with naming functions - Create complete deployment documentation (guide, steps, quick reference) - Add frontend portal implementations (public and internal) - Add UI component library (18 components) - Enhance Entra VerifiedID integration with file utilities - Add API client package for all services - Create comprehensive documentation (naming, deployment, next steps) Infrastructure: - Resource groups, storage accounts with new naming - Terraform configuration updates - Outputs with naming convention examples Deployment: - Automated deployment scripts for all 15 phases - State management and logging - Error handling and validation Documentation: - Naming convention guide and implementation summary - Complete deployment guide (296 steps) - Next steps and quick start guides - Azure prerequisites and setup completion docs Note: ESLint warnings present - will be addressed in follow-up commit
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@the-order/portal-public",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"next": "^14.0.4",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"@the-order/ui": "workspace:*",
|
|
"@the-order/schemas": "workspace:*",
|
|
"@the-order/api-client": "workspace:*",
|
|
"@tanstack/react-query": "^5.17.0",
|
|
"zustand": "^4.4.7",
|
|
"axios": "^1.6.2",
|
|
"clsx": "^2.1.0",
|
|
"tailwind-merge": "^2.2.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"lucide-react": "^0.309.0",
|
|
"react-hook-form": "^7.49.2",
|
|
"@hookform/resolvers": "^3.3.4",
|
|
"zod": "^3.22.4",
|
|
"date-fns": "^3.0.6",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.6",
|
|
"@types/react": "^18.2.45",
|
|
"@types/react-dom": "^18.2.18",
|
|
"typescript": "^5.3.3",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-next": "^14.0.4",
|
|
"tailwindcss": "^3.4.1",
|
|
"postcss": "^8.4.33",
|
|
"autoprefixer": "^10.4.16",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
}
|
|
}
|
|
|