Files
tuxmate/package.json
NIJAT a97779fa3b fix: use static export for both CF Pages and Docker
- Set output: 'export' in next.config.ts (creates /out directory)
- Replaced Node.js standalone Dockerfile with nginx serving static files
- Updated docker-compose.yml for nginx (port 80)
- Both CF Pages and Docker now use the same static build
2025-12-29 18:40:07 +04:00

38 lines
898 B
JSON

{
"name": "tuxmate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^12.23.26",
"gsap": "^3.14.2",
"lucide-react": "^0.561.0",
"next": "16.0.10",
"react": "19.2.1",
"react-dom": "19.2.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"jsdom": "^27.4.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.16"
}
}