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 11:56:01 +02:00
|
|
|
"format": "prettier --write \"./{backend,dashboard}/**/*.ts\"",
|
2020-01-12 11:57:25 +02:00
|
|
|
"lint": "tslint",
|
|
|
|
"codestyle-check": "prettier --check \"./{backend,dashboard}/**/*.ts\""
|
2018-07-07 14:27:54 +03:00
|
|
|
},
|
2019-11-02 22:11:26 +02:00
|
|
|
"dependencies": {},
|
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",
|
2019-11-27 22:02:37 +02:00
|
|
|
"prettier": "^1.19.1",
|
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",
|
2019-11-07 22:52:40 +02:00
|
|
|
"typescript": "^3.7.2"
|
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"
|
|
|
|
]
|
2018-07-01 03:35:51 +03:00
|
|
|
}
|
|
|
|
}
|