zappyzep/package.json

35 lines
768 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 './**/*.{css,html,js,json,ts,tsx}'",
"lint": "tslint \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
"codestyle-check": "prettier --check './**/*.{css,html,js,json,ts,tsx}'"
},
"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",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
2019-08-04 13:18:41 +03:00
"tslint",
"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
}
}