feat: upgrade minor and bug versions of dependencies

This commit is contained in:
dennis.ludwig
2021-09-28 10:40:18 +02:00
parent 8bf898c486
commit bce561a0ac
11 changed files with 213 additions and 103 deletions

8
lint-staged.config.js Normal file
View File

@@ -0,0 +1,8 @@
module.exports = {
"*.{json, md, yml, scss}": ["prettier --write"],
"*.{js, ts, tsx}": [
"eslint",
"prettier --write",
"react-scripts test --watchAll=false --findRelatedTests",
],
};