mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-14 21:31:50 +00:00
33 lines
926 B
JSON
33 lines
926 B
JSON
{
|
|
"name": "@zeppelin/zeppelin",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"private": true,
|
|
"scripts": {
|
|
"format": "prettier --write './backend/src/**/*.{css,html,js,json,ts,tsx}' './dashboard/src/**/*.{css,html,js,json,ts,tsx}'",
|
|
"lint": "tslint './backend/src/**/*.{js,ts,tsx}' './dashboard/src/**/*.{js,ts,tsx}'",
|
|
"codestyle-check": "prettier --check './backend/src/**/*.{css,html,js,json,ts,tsx}' './dashboard/src/**/*.{css,html,js,json,ts,tsx}'"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^3.0.9",
|
|
"lint-staged": "^9.4.2",
|
|
"prettier": "^2.8.4",
|
|
"prettier-plugin-organize-imports": "^3.2.2",
|
|
"tsc-watch": "^6.0.4",
|
|
"tslint": "^5.13.1",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"tslint",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|