27 lines
735 B
JSON
27 lines
735 B
JSON
{
|
|
"name": "kreta",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"format:dotnet": "dotnet-format --folder .",
|
|
"format:prettier": "prettier --write \"**/*.{css,html,js,json,md,yml}\"",
|
|
"format": "npm run format:dotnet && npm run format:prettier"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://vsts.ekreta.hu/tfs/sda/Kreta/_git/Source"
|
|
},
|
|
"lint-staged": {
|
|
"*.cs": [
|
|
"dotnet-format --folder . --include"
|
|
],
|
|
"*.{css,html,js,json,md,yml}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"husky": "7.0.4",
|
|
"lint-staged": "11.2.6",
|
|
"prettier": "2.4.1"
|
|
}
|
|
}
|