3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00
zeppelin/package.json
2019-11-07 22:52:40 +02:00

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.16.4",
"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"
]
}
}