forked from duplicati/duplicati
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
16 lines (16 loc) · 875 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"devDependencies": {
"autoprefixer": "^10.4.20",
"less": "^4.2.0",
"less-plugin-clean-css": "^1.6.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"stylelint": "^16.9.0",
"stylelint-config-standard-less": "^3.0.1"
},
"scripts": {
"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",
"lint:style": "npx stylelint \"Duplicati/Server/**/less/*.less\"",
"lint:style-fix": "npx stylelint \"Duplicati/Server/**/less/*.less\" --fix"
}
}