Skip to content

Commit

Permalink
chore: fix deps for config packages (#2065)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebald authored May 9, 2022
1 parent 3c17763 commit 9a3a02c
Show file tree
Hide file tree
Showing 4 changed files with 989 additions and 1,692 deletions.
11 changes: 9 additions & 2 deletions config/eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"directory": "config/eslint"
},
"dependencies": {
"@babel/core": "7.17.10",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@typescript-eslint/eslint-plugin": "5.18.0",
Expand All @@ -33,9 +34,15 @@
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "5.2.1"
"eslint-plugin-testing-library": "5.2.1",
"prettier": "2.6.2"
},
"peerDependencies": {
"eslint": "8.12.0"
"eslint": "8.12.0",
"typescript": "4.6.3"
},
"devDependencies": {
"eslint": "8.12.0",
"typescript": "4.6.3"
}
}
17 changes: 12 additions & 5 deletions config/jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,25 @@
"directory": "config/jest"
},
"dependencies": {
"@swc/core": "^1.2.120",
"@swc/jest": "^0.2.15",
"@babel/core": "7.17.10",
"@swc/core": "1.2.120",
"@swc/jest": "0.2.15",
"@types/jest": "27.4.1",
"babel-jest": "27.5.1",
"find-up": "5.0.0",
"jest-watch-typeahead": "1.0.0",
"merge-deep": "^3.0.3",
"merge-deep": "3.0.3",
"react-test-renderer": "17.0.2",
"ts-jest": "27.1.4"
},
"peerDependencies": {
"jest": "25.x || 26.x || 27.x",
"typescript": "3.8.x || 3.9.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x || 4.6.x"
"jest": "27.x",
"react": "17.0.2",
"typescript": "4.6.3"
},
"devDependencies": {
"jest": "27.5.1",
"react": "17.0.2",
"typescript": "4.6.3"
}
}
13 changes: 11 additions & 2 deletions config/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,21 @@
"babel-loader": "8.2.5",
"find-up": "5.0.0",
"storybook-addon-themes": "6.1.0",
"tsconfig-paths-webpack-plugin": "3.5.2"
"tsconfig-paths-webpack-plugin": "3.5.2",
"webpack": "4"
},
"peerDependencies": {
"@storybook/react": "6.4.22"
"@storybook/react": "6.4.22",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.6.3"
},
"scripts": {
"start": "start-storybook -p 1337 -c ."
},
"devDependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.6.3"
}
}
Loading

0 comments on commit 9a3a02c

Please sign in to comment.