1c5e5ce70e
Corrects the team count and league level on the homepage. Removes the `package-lock.json` file and updates `package.json` and `pnpm-lock.yaml` to use the latest Tailwind CSS CLI and Tailwind CSS versions. Sorts upcoming events by date and improves the responsive behavior of the event cards on the homepage by adjusting the number of cards shown and managing arrow button states.
20 lines
780 B
JSON
20 lines
780 B
JSON
{
|
|
"name": "kirby-composer",
|
|
"version": "1.0.0",
|
|
"description": "Kirby Composer Template",
|
|
"dependencies": {
|
|
"@tailwindcss/cli": "^4.1.13",
|
|
"tailwindcss": "^4.1.13"
|
|
},
|
|
"scripts": {
|
|
"watch": "npx @tailwindcss/cli -i ./src/css/input.css -o ./assets/css/styles.css --content './site/**/*.php' --watch",
|
|
"build": "npx @tailwindcss/cli -i ./src/css/input.css -o ./assets/css/styles.css --content './site/**/*.php'",
|
|
"serve": "php -S localhost:8000 vendor/getkirby/cms/router.php",
|
|
"sync": "npx browser-sync start --proxy \"localhost:8000\" --files \"site/**/*.php,assets/**/*.css,assets/**/*.js,content/**/*.txt\" --no-open",
|
|
"dev": "concurrently \"npm run serve\" \"npm run sync\""
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.2.0"
|
|
}
|
|
}
|