55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "landingpage-haus-schleusingen",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint:html": "htmlhint \"**/*.html\"",
|
|
"lint:css": "stylelint \"css/**/*.css\" \"fonts/**/*.css\"",
|
|
"lint:js": "eslint \"js/**/*.js\" --ignore-pattern \"**/*.min.js\"",
|
|
"lint": "npm run lint:html && npm run lint:css && npm run lint:js",
|
|
"format": "prettier --write \"**/*.{html,css,js,json,md}\" --ignore-path .prettierignore",
|
|
"format:check": "prettier --check \"**/*.{html,css,js,json,md}\" --ignore-path .prettierignore",
|
|
"prepare": "husky"
|
|
},
|
|
"lint-staged": {
|
|
"*.{html}": [
|
|
"htmlhint",
|
|
"prettier --write"
|
|
],
|
|
"*.{css}": [
|
|
"stylelint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{js}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,md}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.home.kies-media.de/greggy/landingpage-haus-schleusingen.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"eslint": "^10.3.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
"globals": "^17.6.0",
|
|
"htmlhint": "^1.9.2",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.4.0",
|
|
"prettier": "^3.8.3",
|
|
"stylelint": "^16.26.1",
|
|
"stylelint-config-standard": "^36.0.1",
|
|
"stylelint-prettier": "^5.0.3"
|
|
}
|
|
}
|