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": {
|
2023-12-27 18:30:08 +00:00
|
|
|
"format": "prettier --write \"./backend/src/**/*.{css,html,js,json,ts,tsx}\" \"./dashboard/src/**/*.{css,html,js,json,ts,tsx}\"",
|
|
|
|
"lint": "eslint \"./backend/src/**/*.{js,ts,tsx}\" \"./dashboard/src/**/*.{js,ts,tsx}\"",
|
|
|
|
"codestyle-check": "prettier --check \"./backend/src/**/*.{css,html,js,json,ts,tsx}\" \"./dashboard/src/**/*.{css,html,js,json,ts,tsx}\""
|
2018-07-07 14:27:54 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-05-08 21:53:09 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.5",
|
|
|
|
"@typescript-eslint/parser": "^5.59.5",
|
|
|
|
"eslint": "^8.40.0",
|
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2019-11-02 22:16:43 +02:00
|
|
|
"husky": "^3.0.9",
|
|
|
|
"lint-staged": "^9.4.2",
|
2023-04-01 12:58:17 +01:00
|
|
|
"prettier": "^2.8.4",
|
|
|
|
"prettier-plugin-organize-imports": "^3.2.2",
|
2023-04-29 21:07:18 +03:00
|
|
|
"tsc-watch": "^6.0.4",
|
|
|
|
"typescript": "^5.0.4"
|
2019-04-14 13:37:29 +03:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
2023-05-08 21:53:09 +03:00
|
|
|
"eslint",
|
2019-04-14 13:37:29 +03:00
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
2018-07-01 03:35:51 +03:00
|
|
|
}
|
|
|
|
}
|