forked from AcaMate/AcaMate_Web
23 lines
770 B
JSON
23 lines
770 B
JSON
{
|
|
"name": "tailwind-blazor-template",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"watch:css": "tailwindcss -i ./wwwroot/css/app.css -o ./wwwroot/css/tailwind.css --watch",
|
|
"build:css": "tailwindcss -i ./wwwroot/css/app.css -o ./wwwroot/css/tailwind.css --minify",
|
|
"build:publish": "rm -rf ./publish && /Users/tanine/.dotnet/dotnet publish -c Debug -o ./publish",
|
|
"build:test": "rm -rf ../AcaMate_API/publish/debug/ && /Users/tanine/.dotnet/dotnet publish -c Debug -o ../AcaMate_API/publish/debug",
|
|
"build:copy": "mkdir -p ../AcaMate_API/publish/debug/wwwroot && cp -r ./publish/wwwroot/* ../AcaMate_API/publish/debug/wwwroot"
|
|
},
|
|
|
|
"devDependencies": {
|
|
"tailwindcss": "^3.4.1",
|
|
"postcss": "^8.4.21",
|
|
"autoprefixer": "^10.4.14"
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|