list-of-lp/package.json
m4x809 262cef28f8
chore: update dependencies and small UI tweaks
- Refresh bun.lock and package.json dependencies to newer minor/major
  releases across Mantine, Next.js, React, Tailwind, FontAwesome, and
  supporting tooling.
- Upgrade dev tooling: ESLint, Prettier, TypeScript, and related
  plugins.
- Improve performance by loading album cover images eagerly in
  AlbumCard.
- Simplify Home page Title styling to a plain white heading.
- Fix formatting/indentation for emilyLive entry in src/lib/list.ts.
2026-05-14 13:47:47 +02:00

49 lines
1.3 KiB
JSON

{
"name": "list-of-lp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"fetch-links": "bun run scripts/fetch-song-links.ts",
"prod": "next start"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.1",
"@mantine/carousel": "^9.2.0",
"@mantine/core": "^9.2.0",
"@mantine/hooks": "^9.2.0",
"@tailwindcss/postcss": "^4.3.0",
"embla-carousel": "^8.5.2",
"embla-carousel-react": "^8.5.2",
"next": "^16.2.6",
"next-view-transitions": "^0.3.5",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.14",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"postcss": "^8.5.14",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.3"
}
}