compiling node modules

This commit is contained in:
Priec
2026-05-16 22:42:22 +02:00
parent 2eb8cbac5c
commit fcaf2038ad
9 changed files with 1159 additions and 6 deletions

21
ht_booking/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "ht_booking",
"version": "1.0.0",
"description": "Booking site for the tennis courts in Rajec. Visitors browse the weekly court calendar and an *About* page; the single admin manages courts, bookings and the About-page content.",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"build:css": "tailwindcss -i assets/css/tailwind.css -o assets/static/css/app.css --minify",
"watch:css": "tailwindcss -i assets/css/tailwind.css -o assets/static/css/app.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"daisyui": "^4.12.24",
"tailwindcss": "^3.4.19"
}
}