list-of-lp/package.json
m4x809 b93b0c2160
Update track IDs and add FontAwesome dependencies
- Changed track IDs in fetched-songs.json and song-links.json from hyphenated to underscore format for consistency.
- Added FontAwesome dependencies to package.json for icon support.
- Introduced a new function in fetch-song-links.ts to retrieve song links by ID.
- Refactored TrackCard component to utilize the new hash functionality for track modals.
- Updated layout.tsx to include FontAwesome styles and configuration.
2025-10-25 03:03:11 +02:00

46 lines
1.2 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"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
"@mantine/carousel": "^8.3.5",
"@mantine/core": "^8.3.5",
"@mantine/hooks": "^8.3.5",
"embla-carousel": "^8.5.2",
"embla-carousel-react": "^8.5.2",
"next": "^16.0.0",
"next-view-transitions": "^0.3.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.1.15"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/bun": "^1.3.1",
"@types/node": "^24.6.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0"
}
}