mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-14 21:31:50 +00:00
34 lines
765 B
JSON
34 lines
765 B
JSON
{
|
|
"name": "@zeppelin/zeppelin",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"private": true,
|
|
"scripts": {
|
|
"format": "prettier --write './**/*.{css,html,js,json,ts,tsx}'",
|
|
"lint": "tslint \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
|
|
"codestyle-check": "prettier --check './**/*.{css,html,js,json,ts,tsx}'"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^3.0.9",
|
|
"lint-staged": "^9.4.2",
|
|
"prettier": "^2.4.0",
|
|
"tslint": "^5.13.1",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "4.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"tslint",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"knub": "^30.0.0-beta.39"
|
|
}
|
|
}
|