Files
duplicati/package.json
T

17 lines
875 B
JSON
Raw Normal View History

2024-08-14 12:11:31 -04:00
{
"devDependencies": {
2024-11-05 00:01:48 -05:00
"autoprefixer": "^10.4.20",
2024-08-14 12:23:06 -04:00
"less": "^4.2.0",
"less-plugin-clean-css": "^1.6.0",
2024-11-05 00:01:48 -05:00
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
2024-08-31 12:37:39 -04:00
"stylelint": "^16.9.0",
2024-08-14 12:11:31 -04:00
"stylelint-config-standard-less": "^3.0.1"
2024-08-14 15:01:14 -04:00
},
"scripts": {
2024-11-05 00:06:00 -05:00
"build:style": "npm run lint:style-fix; npx lessc Duplicati/Server/webroot/ngax/less/dark.less Duplicati/Server/webroot/ngax/styles/dark.css --clean-css -m=always && npx lessc Duplicati/Server/webroot/ngax/less/default.less Duplicati/Server/webroot/ngax/styles/default.css --clean-css -m=always && npx postcss Duplicati/Server/webroot/ngax/styles/dark.css Duplicati/Server/webroot/ngax/styles/default.css --no-map --use autoprefixer --replace",
2024-08-14 15:01:14 -04:00
"lint:style": "npx stylelint \"Duplicati/Server/**/less/*.less\"",
"lint:style-fix": "npx stylelint \"Duplicati/Server/**/less/*.less\" --fix"
2024-08-14 12:11:31 -04:00
}
}