build: upgrade deps
This commit is contained in:
parent
25e2680cef
commit
9cd5b4efc2
4 changed files with 902 additions and 924 deletions
24
package.json
24
package.json
|
@ -34,14 +34,14 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime": "^7.10.3",
|
||||
"@hsjs/react-cache": "0.0.0-alpha.aa94237",
|
||||
"@sentry/browser": "^5.16.1",
|
||||
"@sentry/browser": "^5.18.1",
|
||||
"chart.js": "^2.9.2",
|
||||
"clsx": "^1.1.0",
|
||||
"core-js": "^3.6.2",
|
||||
"date-fns": "^2.13.0",
|
||||
"framer-motion": "^1.11.1",
|
||||
"history": "^5.0.0",
|
||||
"immer": "^7.0.3",
|
||||
"immer": "^7.0.5",
|
||||
"invariant": "^2.2.4",
|
||||
"lodash-es": "^4.17.14",
|
||||
"memoize-one": "^5.1.1",
|
||||
|
@ -77,33 +77,33 @@
|
|||
"@babel/preset-typescript": "^7.10.1",
|
||||
"@hsjs/react-refresh-webpack-plugin": "^0.1.3",
|
||||
"@pmmmwh/react-refresh-webpack-plugin": "^0.2.0",
|
||||
"@types/jest": "^26.0.0",
|
||||
"@types/react": "^16.9.38",
|
||||
"@types/jest": "^26.0.3",
|
||||
"@types/react": "^16.9.41",
|
||||
"@types/react-dom": "^16.9.8",
|
||||
"@typescript-eslint/eslint-plugin": "^3.3.0",
|
||||
"@typescript-eslint/parser": "^3.3.0",
|
||||
"autoprefixer": "^9.8.1",
|
||||
"@typescript-eslint/eslint-plugin": "^3.4.0",
|
||||
"@typescript-eslint/parser": "^3.4.0",
|
||||
"autoprefixer": "^9.8.4",
|
||||
"babel-eslint": "10.x",
|
||||
"babel-loader": "^8.0.5",
|
||||
"clean-webpack-plugin": "^3.0.0",
|
||||
"copy-webpack-plugin": "^6.0.2",
|
||||
"css-loader": "^3.4.2",
|
||||
"cssnano": "^4.1.7",
|
||||
"eslint": "^7.3.0",
|
||||
"eslint": "^7.3.1",
|
||||
"eslint-config-airbnb-base": "^14.1.0",
|
||||
"eslint-config-prettier": "^6.11.0",
|
||||
"eslint-config-react-app": "^5.2.1",
|
||||
"eslint-import-resolver-webpack": "^0.12.2",
|
||||
"eslint-plugin-flowtype": "^5.1.0",
|
||||
"eslint-plugin-import": "^2.21.1",
|
||||
"eslint-plugin-jest": "^23.10.0",
|
||||
"eslint-plugin-import": "^2.22.0",
|
||||
"eslint-plugin-jest": "^23.17.1",
|
||||
"eslint-plugin-jsx-a11y": "^6.3.1",
|
||||
"eslint-plugin-react": "7.x",
|
||||
"eslint-plugin-react-hooks": "^4.0.0",
|
||||
"eslint-plugin-simple-import-sort": "^5.0.3",
|
||||
"file-loader": "^6.0.0",
|
||||
"fork-ts-checker-notifier-webpack-plugin": "^2.0.0",
|
||||
"fork-ts-checker-webpack-plugin": "^4.1.5",
|
||||
"fork-ts-checker-notifier-webpack-plugin": "^3.0.0",
|
||||
"fork-ts-checker-webpack-plugin": "^5.0.5",
|
||||
"html-webpack-plugin": "^4.3.0",
|
||||
"husky": "^4.0.0",
|
||||
"lint-staged": "^10.2.11",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"allowSyntheticDefaultImports": false,
|
||||
"target": "es5",
|
||||
"downlevelIteration": true,
|
||||
|
|
|
@ -63,7 +63,7 @@ const bundleAnalyzerPlugin = new BundleAnalyzerPlugin({
|
|||
const plugins = [
|
||||
html,
|
||||
definePlugin,
|
||||
new ForkTsCheckerWebpackPlugin({ eslint: false }),
|
||||
new ForkTsCheckerWebpackPlugin(),
|
||||
new ForkTsCheckerNotifierWebpackPlugin({
|
||||
title: 'TypeScript',
|
||||
excludeWarnings: false,
|
||||
|
@ -96,6 +96,9 @@ module.exports = {
|
|||
mode: isDev ? 'development' : 'production',
|
||||
resolve: {
|
||||
extensions: ['.ts', '.tsx', '.js'],
|
||||
alias: {
|
||||
src: path.resolve(__dirname, 'src'),
|
||||
},
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
|
|
Loading…
Reference in a new issue