2018-07-01 03:35:51 +03:00
|
|
|
{
|
2019-11-02 22:11:26 +02:00
|
|
|
"name": "@zeppelin/zeppelin",
|
2018-07-01 03:35:51 +03:00
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "",
|
2018-12-14 06:32:17 +02:00
|
|
|
"private": true,
|
2018-07-01 03:35:51 +03:00
|
|
|
"scripts": {
|
2020-01-12 12:03:07 +02:00
|
|
|
"format": "prettier --write \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
|
|
|
|
"lint": "tslint \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
|
|
|
|
"codestyle-check": "prettier --check \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\""
|
2018-07-07 14:27:54 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-11-02 22:16:43 +02:00
|
|
|
"husky": "^3.0.9",
|
|
|
|
"lint-staged": "^9.4.2",
|
2021-09-11 19:01:55 +03:00
|
|
|
"prettier": "^2.4.0",
|
2019-03-04 19:45:51 +02:00
|
|
|
"tslint": "^5.13.1",
|
2019-11-02 22:11:26 +02:00
|
|
|
"tslint-config-prettier": "^1.18.0",
|
2021-06-30 23:06:02 +02:00
|
|
|
"typescript": "^4.3.4"
|
2019-04-14 13:37:29 +03:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
2019-08-04 13:18:41 +03:00
|
|
|
"tslint",
|
2019-04-14 13:37:29 +03:00
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
2021-08-14 14:37:14 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"knub": "^30.0.0-beta.39"
|
2018-07-01 03:35:51 +03:00
|
|
|
}
|
|
|
|
}
|