29 lines
713 B
JSON
29 lines
713 B
JSON
{
|
|
"private": "true",
|
|
"scripts": {
|
|
"deploy": "cargo run --release -q && pnpm deploy:netlify",
|
|
"deploy:netlify": "netlify deploy --prod --dir 'public/' -s bauke.xyz",
|
|
"test": "xo && stylelint 'source/**/*.scss'"
|
|
},
|
|
"dependencies": {
|
|
"modern-normalize": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@bauke/eslint-config": "^0.1.2",
|
|
"@bauke/prettier-config": "^0.1.2",
|
|
"@bauke/stylelint-config": "^0.1.2",
|
|
"netlify-cli": "^12.5.0",
|
|
"stylelint": "^14.16.1",
|
|
"xo": "^0.53.1"
|
|
},
|
|
"prettier": "@bauke/prettier-config",
|
|
"stylelint": {
|
|
"extends": "@bauke/stylelint-config"
|
|
},
|
|
"xo": {
|
|
"extends": "@bauke/eslint-config",
|
|
"prettier": true,
|
|
"space": true
|
|
}
|
|
}
|