1
Fork 0
bauke-xyz/package.json

33 lines
837 B
JSON
Raw Normal View History

2020-07-31 10:45:37 +00:00
{
"name": "bauke.xyz",
2021-08-26 15:52:13 +00:00
"version": "0.0.0",
2021-08-14 10:57:12 +00:00
"license": "AGPL-3.0-or-later",
2020-07-31 10:45:37 +00:00
"scripts": {
2021-11-26 13:08:13 +00:00
"deploy": "cargo run --release -q && yarn deploy:netlify",
2021-08-26 15:52:13 +00:00
"deploy:netlify": "netlify deploy --prod --dir 'public/' -s bauke.xyz",
"test": "stylelint 'source/**/*.scss'"
2020-07-31 10:45:37 +00:00
},
"devDependencies": {
2021-11-25 15:00:56 +00:00
"netlify-cli": "^8.0.1",
"stylelint": "^14.1.0",
2021-08-26 15:52:13 +00:00
"stylelint-config-xo-scss": "^0.14.0",
"stylelint-config-xo-space": "^0.15.1"
2020-07-31 10:45:37 +00:00
},
"stylelint": {
"extends": [
"stylelint-config-xo-scss",
2020-07-31 10:45:37 +00:00
"stylelint-config-xo-space"
],
2021-08-26 15:52:13 +00:00
"ignoreFiles": [
"**/*.css"
],
2020-07-31 10:45:37 +00:00
"rules": {
2020-09-24 12:51:55 +00:00
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
2021-08-26 15:52:13 +00:00
"no-descending-specificity": null,
"scss/at-import-partial-extension": null,
"scss/at-rule-no-unknown": null
2020-07-31 10:45:37 +00:00
}
}
}