Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m25s
- Introduced .dockerignore to exclude unnecessary files from Docker context. - Updated Dockerfile to use Bun for building and running the application. - Removed entrypoint.sh as it is no longer needed. - Modified build-and-dockerise.yml to set up Bun and install dependencies. - Enhanced index.html with improved structure and hover effects. - Updated client.ts to include tooltips for music display. - Implemented caching in server.ts for Last.fm data. - Added custom styles for hover effects and tooltips in style.css.
32 lines
829 B
JSON
32 lines
829 B
JSON
{
|
|
"name": "homepage",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "bun src/server.ts",
|
|
"dev": "concurrently \"bun run --hot src/server.ts\" \"vite build --watch\"",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"prod": "NODE_ENV=production bun src/server.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify/json": "^2.2.367",
|
|
"bun-types": "latest",
|
|
"concurrently": "^9.2.0",
|
|
"unplugin-icons": "^22.2.0",
|
|
"vite": "^7.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@elysiajs/eden": "^1.3.2",
|
|
"@elysiajs/static": "^1.3.0",
|
|
"@fontsource-variable/exo-2": "^5.2.6",
|
|
"@fontsource-variable/inter": "^5.2.6",
|
|
"@tailwindcss/vite": "^4.1.11",
|
|
"elysia": "^1.3.8",
|
|
"tailwindcss": "^4.1.11"
|
|
},
|
|
"trustedDependencies": [
|
|
"@tailwindcss/oxide"
|
|
]
|
|
}
|