- Complete project structure with Next.js frontend - GraphQL API backend with Apollo Server - Portal application with NextAuth - Crossplane Proxmox provider - GitOps configurations - CI/CD pipelines - Testing infrastructure (Vitest, Jest, Go tests) - Error handling and monitoring - Security hardening - UI component library - Documentation
87 lines
2.6 KiB
JSON
87 lines
2.6 KiB
JSON
{
|
|
"name": "phoenix-sankofa-cloud",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"type-check": "tsc --noEmit",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
|
|
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:coverage": "vitest --coverage",
|
|
"prepare": "husky install"
|
|
},
|
|
"dependencies": {
|
|
"next": "^14.2.0",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.0",
|
|
"@tanstack/react-query": "^5.28.0",
|
|
"@apollo/client": "^3.9.0",
|
|
"graphql": "^16.8.1",
|
|
"graphql-tag": "^2.12.6",
|
|
"zustand": "^4.5.0",
|
|
"framer-motion": "^11.0.0",
|
|
"reactflow": "^11.11.0",
|
|
"@dnd-kit/core": "^6.1.0",
|
|
"@dnd-kit/sortable": "^8.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"three": "^0.162.0",
|
|
"@react-three/fiber": "^8.16.0",
|
|
"@react-three/drei": "^9.105.0",
|
|
"postprocessing": "^6.36.0",
|
|
"echarts": "^5.5.0",
|
|
"echarts-for-react": "^3.0.2",
|
|
"@tanstack/react-table": "^8.14.0",
|
|
"clsx": "^2.1.0",
|
|
"tailwind-merge": "^2.3.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"lucide-react": "^0.378.0",
|
|
"zod": "^3.22.4",
|
|
"react-hook-form": "^7.49.3",
|
|
"@hookform/resolvers": "^3.3.4",
|
|
"@radix-ui/react-dialog": "^1.0.5",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
"@radix-ui/react-label": "^2.0.2",
|
|
"@radix-ui/react-select": "^2.0.0",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"@radix-ui/react-toast": "^1.1.5",
|
|
"@radix-ui/react-tabs": "^1.0.4",
|
|
"@radix-ui/react-tooltip": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.12.0",
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/three": "^0.162.0",
|
|
"typescript": "^5.4.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"postcss": "^8.4.0",
|
|
"autoprefixer": "^10.4.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "^14.2.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
"@typescript-eslint/parser": "^7.8.0",
|
|
"prettier": "^3.2.0",
|
|
"prettier-plugin-tailwindcss": "^0.5.0",
|
|
"vitest": "^1.2.0",
|
|
"@testing-library/react": "^14.1.2",
|
|
"@testing-library/jest-dom": "^6.1.5",
|
|
"@testing-library/user-event": "^14.5.1",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"jsdom": "^23.0.1",
|
|
"@vitest/ui": "^1.2.0",
|
|
"@vitest/coverage-v8": "^1.2.0",
|
|
"@tanstack/react-query-devtools": "^5.28.0",
|
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^15.2.0",
|
|
"@sentry/nextjs": "^7.91.0"
|
|
}
|
|
}
|
|
|