mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
30 lines
587 B
JSON
30 lines
587 B
JSON
{
|
|
"name": "@zeppelin/zeppelin",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "cd backend && npm run test && cd ../shared && npm run test"
|
|
},
|
|
"dependencies": {},
|
|
"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": "^3.7.2"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"tslint",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|