zappyzep/package.json

33 lines
774 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": {
"format": "prettier --write \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
"lint": "tslint \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
"codestyle-check": "prettier --check \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\""
},
"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",
"typescript": "^3.9.6"
},
"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
}
}