mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
31 lines
752 B
JSON
31 lines
752 B
JSON
{
|
|
"name": "@zeppelin/zeppelin",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"private": true,
|
|
"scripts": {
|
|
"format": "prettier --write \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
|
|
"lint": "tslint \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
|
|
"codestyle-check": "prettier --check \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\""
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^3.0.9",
|
|
"lint-staged": "^9.4.2",
|
|
"prettier": "^1.19.1",
|
|
"tslint": "^5.13.1",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^4.3.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"tslint",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|