* Update npm dependencies.

* Move @storybook/react to devDependencies. Minor update to recoil.

* Exempt stories.tsx files from the extraneous dependency check so that we can use npm audit --omit=dev to get a clearer idea of vulnerabilities present in a production build.

* Prettified Code!

Co-authored-by: heller <heller@users.noreply.github.com>
This commit is contained in:
Matthew Heller
2022-10-12 00:53:51 -05:00
committed by GitHub
parent 71152decdd
commit a831b9805c
3 changed files with 4793 additions and 1618 deletions

View File

@@ -66,6 +66,13 @@ module.exports = {
tsx: 'never',
},
],
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: ['**/*.stories.*', '**/.storybook/**/*.*'],
peerDependencies: true,
},
],
},
settings: {
'import/resolver': {