26 lines
1 KiB
JSON
26 lines
1 KiB
JSON
{
|
|
"name": "kubeload",
|
|
"scripts": {
|
|
"watch": "concurrently \"npm:watch:*\"",
|
|
"watch:tailwind": "npx tailwindcss -i src/styles/tailwind.css -o static/css/tailwind.css --watch",
|
|
"watch:stylus": "stylus src/stylus -o static/css -w",
|
|
"watch:ts": "esbuild src/ts/Main.ts --bundle --outfile=static/js/bundle.js --format=esm --sourcemap --watch",
|
|
"build": "concurrently \"npm:build:*\"",
|
|
"build:tailwind": "tailwindcss -i src/styles/tailwind.css -o static/css/tailwind.css --minify",
|
|
"build:stylus": "stylus src/stylus -o static/css",
|
|
"build:ts": "esbuild src/ts/Main.ts --bundle --outfile=static/js/bundle.js --format=esm --sourcemap --minify"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/cli": "^4.1.13",
|
|
"@tailwindcss/forms": "^0.5.10",
|
|
"autoprefixer": "^10.4.21",
|
|
"concurrently": "^8.2.2",
|
|
"esbuild": "^0.24.0",
|
|
"postcss": "^8.5.6",
|
|
"preline": "^3.2.3",
|
|
"prettier": "^3.6.2",
|
|
"stylus": "^0.64.0",
|
|
"tailwindcss": "^4.1.13",
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|