3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00
zeppelin/package.json

34 lines
768 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.3.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"knub": "^30.0.0-beta.39"
}
}