ubicloud/package.json
Jeremy Evans 311699eac2 Use herb linter for linting erb files, and fix most issues
After running these changes, there are 1 error and 3 warnings when
running the linter, due to bugs in the linter
(https://github.com/marcoroth/herb/issues 480, 481, 483).
2025-09-05 14:51:03 -07:00

23 lines
780 B
JSON

{
"devDependencies": {
"@redocly/cli": "^2.0.8",
"@stoplight/spectral-cli": "^6.15.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"openapi-format": "^1.27.3",
"tailwindcss": "^3.4.17",
"@herb-tools/linter": "^0.7.0",
"@herb-tools/formatter": "^0.7.0"
},
"scripts": {
"dev": "npx tailwindcss -o assets/css/app.css -i assets/css/tailwind.css",
"prod": "npx tailwindcss -o assets/css/app.css -i assets/css/tailwind.css --minify",
"watch": "npx tailwindcss -o assets/css/app.css -i assets/css/tailwind.css --watch",
"format-erb": "npx @herb-tools/formatter 'views/**/*.erb'",
"lint-erb": "npx @herb-tools/linter 'views/**/*.erb'"
},
"engines": {
"node": "24.6.0",
"npm": "11.5.2"
}
}