Files
auto_rfp/package.json
T
Roland Tritsch 7f93393f10 Adding support to build and run auto_rfp in a docker container (#38)
* consolidate duplicate Next.js config files into TypeScript version

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Add Dockerfile

* Add the docker scripts to package.json

* Add docker doc to the README

* Update the README with the env file changes/requirements

* Update README with build- vs. run-time configuration requirements

* Ignore a/the .devcontainer (if there is one)

* Adding more docker scripts

* Adding a health endpoint to check the health of the container

* Make sure we can hit the health endpoint without authentication

* Make docker-build work

* Add more health-check script

* Moving docker config to next.config.ts

* Fix docker-run script. Remove network host access.

---------

Co-authored-by: Roland Tritsch <roland@tritsch.email>
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-26 10:51:58 -06:00

94 lines
3.1 KiB
JSON

{
"name": "auto_rfp",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --turbopack",
"docker-build": "docker build --tag auto-rfp .",
"docker-log": "docker logs --follow auto-rfp",
"docker-run": "docker run --rm --detach --env-file .env --name auto-rfp auto-rfp",
"docker-stop": "docker stop auto-rfp",
"health-check": "curl http://localhost:3000/api/health",
"lint": "next lint",
"postinstall": "prisma generate",
"start": "next start"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@hookform/resolvers": "^5.0.1",
"@prisma/client": "^6.7.0",
"@radix-ui/react-accordion": "^1.2.8",
"@radix-ui/react-alert-dialog": "^1.1.11",
"@radix-ui/react-aspect-ratio": "^1.1.4",
"@radix-ui/react-avatar": "^1.1.7",
"@radix-ui/react-checkbox": "^1.2.3",
"@radix-ui/react-collapsible": "^1.1.8",
"@radix-ui/react-context-menu": "^2.2.12",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-hover-card": "^1.1.11",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-menubar": "^1.1.12",
"@radix-ui/react-navigation-menu": "^1.2.10",
"@radix-ui/react-popover": "^1.1.11",
"@radix-ui/react-progress": "^1.1.4",
"@radix-ui/react-radio-group": "^1.3.4",
"@radix-ui/react-scroll-area": "^1.2.6",
"@radix-ui/react-select": "^2.2.2",
"@radix-ui/react-separator": "^1.1.4",
"@radix-ui/react-slider": "^1.3.2",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.9",
"@radix-ui/react-toast": "^1.2.11",
"@radix-ui/react-toggle": "^1.1.6",
"@radix-ui/react-toggle-group": "^1.1.7",
"@radix-ui/react-tooltip": "^1.2.4",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"@tabler/icons-react": "^3.34.0",
"ai": "^4.3.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.15.0",
"input-otp": "^1.4.2",
"llamaindex": "^0.10.3",
"lucide-react": "^0.507.0",
"next": "15.3.8",
"next-themes": "^0.4.6",
"openai": "^4.97.0",
"prisma": "^6.7.0",
"react": "^19.0.0",
"react-day-picker": "8.10.1",
"react-dom": "^19.0.0",
"react-hook-form": "^7.56.1",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.0",
"recharts": "^2.15.3",
"sonner": "^2.0.3",
"swr": "^2.3.3",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"vaul": "^1.1.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.2.9",
"typescript": "^5"
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}