feat: rework to use next and host from single dockerfile

This commit is contained in:
Lucas Oskorep
2026-01-20 21:48:33 -05:00
parent dae0625278
commit 28a84293c9
44 changed files with 7592 additions and 10664 deletions

View File

@@ -5,30 +5,37 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"build:watch": "chokidar 'app/**/*' 'components/**/*' 'public/**/*' -c 'next build'",
"start": "next start",
"lint": "next lint",
"gen-apis-old": "rm -rf ./gen-sources/mta-sign-api/* && curl localhost:8000/openapi.json -O --output-dir ./gen-sources/mta-sign-api && openapi-generator-cli generate",
"test": "vitest run",
"test:watch": "vitest",
"gen-apis": "npx openapi-typescript http://localhost:8000/openapi.json --output gen-sources/mtaserver.ts"
},
"dependencies": {
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.10",
"follow-redirects": "^1.15.2",
"next": "^13.4.10",
"openapi-typescript-fetch": "^1.1.3",
"postcss": "^8.4.26",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
"@heroicons/react": "^2.2.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"bootstrap": "^5.3.8",
"next": "^16.1.2",
"openapi-typescript-fetch": "^2.0.0",
"postcss": "^8.5.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.17"
},
"packageManager": "yarn@3.6.1",
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.6.0"
}
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"chokidar-cli": "^3.0.0",
"eslint": "^9.18.0",
"eslint-config-next": "^16.1.2",
"jsdom": "^26.0.0",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
},
"packageManager": "pnpm@10.28.1"
}