Better inital

This commit is contained in:
Simon Martens
2026-02-18 16:28:05 +01:00
parent e9f1d32e3a
commit df79656c77
22 changed files with 1850 additions and 30 deletions

22
templates/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "lenz-templates",
"version": "1.0.0",
"description": "Templates for the JMR Lenz briefausgabe",
"license": "MIT",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"bundle": "npm run js_prod && npm run css_prod",
"js_prod": "esbuild ./src/index.js --bundle --minify --outfile=./public/index.js",
"js": "esbuild ./src/index.js --bundle --sourcemap --outfile=./public/index.js",
"css_prod": "tailwindcss -i ./src/style.css -o ./public/style.css --minify",
"css": "tailwindcss -i ./src/style.css -o ./public/style.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@tailwindcss/cli": "^4.1.18",
"esbuild": "^0.27.3",
"tailwindcss": "^4.1.18"
}
}