25 lines
581 B
JSON
25 lines
581 B
JSON
{
|
|
"name": "test-samples",
|
|
"license": "Unlicense",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "xo --extension astro ; xo --extension mdx ; stylelint '**/*.scss'"
|
|
},
|
|
"devDependencies": {
|
|
"@bauke/eslint-config": "workspace:*",
|
|
"@bauke/prettier-config": "workspace:*",
|
|
"@bauke/stylelint-config": "workspace:*",
|
|
"stylelint": "^16.1.0",
|
|
"xo": "^0.56.0"
|
|
},
|
|
"prettier": "@bauke/prettier-config",
|
|
"stylelint": {
|
|
"extends": "@bauke/stylelint-config"
|
|
},
|
|
"xo": {
|
|
"extends": "@bauke/eslint-config",
|
|
"prettier": true,
|
|
"space": true
|
|
}
|
|
}
|