mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-11-21 03:15:49 +08:00
27 lines
426 B
JSON
27 lines
426 B
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"scripts": {
|
|
"lerna": "lerna"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^6.0.0",
|
|
"lerna": "^4.0.0",
|
|
"lint-staged": "^11.0.0"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"packages/**/!(generated)/*.{js,ts,tsx,yml,json}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|