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

31 lines
587 B
JSON
Raw Normal View History

2018-07-01 03:35:51 +03:00
{
"name": "@zeppelin/zeppelin",
2018-07-01 03:35:51 +03:00
"version": "0.0.1",
"description": "",
"private": true,
2018-07-01 03:35:51 +03:00
"scripts": {
"test": "cd backend && npm run test && cd ../shared && npm run test"
},
"dependencies": {},
"devDependencies": {
2019-11-02 22:16:43 +02:00
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
2019-11-07 22:52:40 +02:00
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
2019-08-04 13:18:41 +03:00
"tslint",
"prettier --write",
"git add"
]
2018-07-01 03:35:51 +03:00
}
}