Barclays-banner-builder/frontend/package.json
Vadym Samoilenko 735b2ef141 Add full Sprint 0+1 implementation: Docker, FastAPI, React, RAG, deploy
- Backend: FastAPI + SQLAlchemy async, pgvector RAG, RQ workers, OpenAI gpt-5.4-mini structured output
- Frontend: React 18 + Vite + TypeScript + TailwindCSS + shadcn/ui, job polling pattern (no WebSocket)
- Admin panel: editable SystemPrompt with version history for FCA audit trail
- Deploy: idempotent deploy.sh with hash-based cache, Apache Include fragment, alembic migrations
- Docker: dev + prod compose configs, port 8010 (API) to avoid OliVAS conflict on host

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-17 12:01:42 +01:00

46 lines
1.2 KiB
JSON

{
"name": "barclays-banner-builder",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 5174",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1",
"@radix-ui/react-dropdown-menu": "^2.1",
"@radix-ui/react-label": "^2.1",
"@radix-ui/react-select": "^2.1",
"@radix-ui/react-separator": "^1.1",
"@radix-ui/react-slot": "^1.1",
"@radix-ui/react-tabs": "^1.1",
"@radix-ui/react-toast": "^1.2",
"@radix-ui/react-tooltip": "^1.1",
"class-variance-authority": "^0.7",
"clsx": "^2.1",
"konva": "^9.3",
"lucide-react": "^0.400",
"react": "^18.3",
"react-dom": "^18.3",
"react-konva": "^18.2",
"react-router-dom": "^6.24",
"tailwind-merge": "^2.4",
"tailwindcss-animate": "^1.0",
"zustand": "^4.5"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18.3",
"@types/react-dom": "^18.3",
"@vitejs/plugin-react": "^4.3",
"autoprefixer": "^10.4",
"eslint": "^9",
"postcss": "^8.4",
"tailwindcss": "^3.4",
"typescript": "^5.5",
"vite": "^5.3"
}
}