I have moved types and eslint plugin to dev deps, because it is not used in source code
Also, you can remove scripts like prettier and prettier:fix, because when you use eslint with prettier plugin it runs prettier under the hood. So you make a double check here:
yarn test:lint && yarn prettier
It will check prettier rules and eslint rules and then prettier again.
I have moved types and eslint plugin to dev deps, because it is not used in source code
Also, you can remove scripts like
prettier
andprettier:fix
, because when you use eslint with prettier plugin it runs prettier under the hood. So you make a double check here:yarn test:lint && yarn prettier
It will check prettier rules and eslint rules and then prettier again.