In my `package.json` file I can use `husky` to run `prettier` to format my code after a commit. ``` "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } } ``` Is there a way to put this into my own custom cra template? Into the `template.json` file?