From 930a3afec70a44f64672a730be0b61a9c905468d Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Sun, 12 Feb 2023 08:49:44 +0900 Subject: [PATCH] chore: Add all undeclared packages to package.json This reverts commit 6c283862daa0c8846a544c183e72623b65907cc3. chore: Add all undeclared packages to package.json Add all undeclared packages to package.json (Round 2) Signed-off-by: Sora Morimoto chore: move core deps to peer codemirror5 Signed-off-by: Sora Morimoto Add all undeclared packages to `package.json` (Round 2) Signed-off-by: Sora Morimoto _ Signed-off-by: Sora Morimoto Add all undeclared "safe" packages to `package.json` Signed-off-by: Sora Morimoto Add all undeclared "unsafe" packages to `package.json` Signed-off-by: Sora Morimoto helper-plugin: remove `fs-extra` Signed-off-by: Sora Morimoto https://github.com/strapi/strapi/pull/15797 i18n-plugin: move redux from devDependencies to dependencies Signed-off-by: Sora Morimoto database: sqlite3 was a false-detected dependency Signed-off-by: Sora Morimoto generators: revert changes Signed-off-by: Sora Morimoto Regenerate yarn.lock Signed-off-by: Sora Morimoto chore: update react-intl chore: fix post rebase chore: remove axios from packages that dont need it chore: ensure projects install r rd rrd & s Revert "chore: ensure projects install r rd rrd & s" This reverts commit 2e87a1d0fcaf21e187ce558f4690d41ff854d58d. Revert "Revert "chore: ensure projects install r rd rrd & s"" This reverts commit b53a3d49987b00abb393966738d2a34f59c9dc71. chore: Add all undeclared packages to package.json --- examples/getstarted/package.json | 3 + .../components/Wysiwyg/Editor.js | 4 +- .../components/Wysiwyg/utils/continueList.js | 6 +- packages/core/admin/package.json | 5 +- .../core/content-type-builder/package.json | 27 +++++-- packages/core/data-transfer/package.json | 3 +- packages/core/email/package.json | 20 +++++- packages/core/helper-plugin/package.json | 5 +- packages/core/upload/package.json | 29 ++++++-- packages/plugins/color-picker/package.json | 20 +++++- packages/plugins/documentation/package.json | 25 +++++-- packages/plugins/graphql/package.json | 15 +++- packages/plugins/i18n/package.json | 26 ++++++- packages/plugins/sentry/package.json | 17 ++++- .../plugins/users-permissions/package.json | 27 +++++-- yarn.lock | 71 +++++++++++-------- 16 files changed, 231 insertions(+), 72 deletions(-) diff --git a/examples/getstarted/package.json b/examples/getstarted/package.json index 459014ce26..b3cdfa3f24 100644 --- a/examples/getstarted/package.json +++ b/examples/getstarted/package.json @@ -12,6 +12,7 @@ "strapi": "strapi" }, "dependencies": { + "@strapi/icons": "1.6.3", "@strapi/plugin-color-picker": "4.7.1", "@strapi/plugin-documentation": "4.7.1", "@strapi/plugin-graphql": "4.7.1", @@ -28,6 +29,8 @@ "mysql": "2.18.1", "passport-google-oauth2": "0.2.0", "pg": "8.8.0", + "react": "^17.0.2", + "react-intl": "6.2.8", "sqlite3": "5.1.2" }, "strapi": { diff --git a/packages/core/admin/admin/src/content-manager/components/Wysiwyg/Editor.js b/packages/core/admin/admin/src/content-manager/components/Wysiwyg/Editor.js index a5f2f7bb55..a3213da5d2 100644 --- a/packages/core/admin/admin/src/content-manager/components/Wysiwyg/Editor.js +++ b/packages/core/admin/admin/src/content-manager/components/Wysiwyg/Editor.js @@ -1,7 +1,7 @@ import React, { useEffect, useRef } from 'react'; import PropTypes from 'prop-types'; -import CodeMirror from 'codemirror'; -import 'codemirror/addon/display/placeholder'; +import CodeMirror from 'codemirror5'; +import 'codemirror5/addon/display/placeholder'; import PreviewWysiwyg from '../PreviewWysiwyg'; import { EditorStylesContainer } from './EditorStylesContainer'; import { EditorAndPreviewWrapper } from './WysiwygStyles'; diff --git a/packages/core/admin/admin/src/content-manager/components/Wysiwyg/utils/continueList.js b/packages/core/admin/admin/src/content-manager/components/Wysiwyg/utils/continueList.js index ec36c121f9..ffc84ac6c9 100644 --- a/packages/core/admin/admin/src/content-manager/components/Wysiwyg/utils/continueList.js +++ b/packages/core/admin/admin/src/content-manager/components/Wysiwyg/utils/continueList.js @@ -1,4 +1,4 @@ -import CodeMirror from 'codemirror'; +import CodeMirror from 'codemirror5'; // Disabling eslint on purpose /* eslint-disable */ @@ -7,9 +7,9 @@ var listRE = /^(\s*)(>[> ]*|[*+-] \[[x ]\]\s|[*+-]\s|(\d+)([.)]))(\s*)/, emptyListRE = /^(\s*)(>[> ]*|[*+-] \[[x ]\]|[*+-]|(\d+)[.)])(\s*)$/, unorderedListRE = /[*+-]\s/; -/* +/* functions coming from CodeMirror addons continuelist.js - ===> https://github.com/codemirror/CodeMirror/blob/master/addon/edit/continuelist.js + ===> https://github.com/codemirror/CodeMirror/blob/master/addon/edit/continuelist.js we imported it because the way the addon ask to use markdown mode since we have our own markdown preview system we couldn't use it directly diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index 1eb25375e0..523a16defe 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -62,7 +62,7 @@ "browserslist-to-esbuild": "1.2.0", "chalk": "^4.1.1", "chokidar": "^3.5.1", - "codemirror": "^5.65.11", + "codemirror5": "npm:codemirror@^5.65.11", "cross-env": "^7.0.3", "css-loader": "^6.7.3", "date-fns": "2.29.3", @@ -104,6 +104,7 @@ "node-schedule": "2.1.0", "p-map": "4.0.0", "passport-local": "1.0.0", + "pluralize": "8.0.0", "prop-types": "^15.7.2", "qs": "6.11.0", "react": "^17.0.2", @@ -119,8 +120,8 @@ "react-query": "3.24.3", "react-redux": "8.0.5", "react-refresh": "0.14.0", - "react-router": "5.2.0", "react-router-dom": "5.3.4", + "react-select": "5.6.0", "react-window": "1.8.7", "redux": "^4.2.1", "reselect": "^4.0.0", diff --git a/packages/core/content-type-builder/package.json b/packages/core/content-type-builder/package.json index 1c3cbc612f..cf99a7fe9a 100644 --- a/packages/core/content-type-builder/package.json +++ b/packages/core/content-type-builder/package.json @@ -28,24 +28,41 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", + "@strapi/design-system": "1.6.3", "@strapi/generators": "4.7.1", "@strapi/helper-plugin": "4.7.1", + "@strapi/icons": "1.6.3", + "@strapi/strapi": "4.7.1", "@strapi/utils": "4.7.1", "fs-extra": "10.0.0", + "immer": "9.0.19", "lodash": "4.17.21", + "match-sorter": "^4.0.2", "pluralize": "^8.0.0", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "prop-types": "^15.7.2", + "qs": "6.11.0", + "react-helmet": "^6.1.0", "react-intl": "6.2.8", "react-redux": "8.0.5", - "react-router": "^5.2.0", - "react-router-dom": "5.3.4", "redux": "^4.2.1", "reselect": "^4.0.0", "yup": "^0.32.9" }, "devDependencies": { - "@testing-library/react": "12.1.4" + "@strapi/admin": "4.7.1", + "@testing-library/react": "12.1.4", + "@testing-library/react-hooks": "8.0.1", + "history": "^4.9.0", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" + }, + "peerDependencies": { + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "engines": { "node": ">=14.19.1 <=18.x.x", diff --git a/packages/core/data-transfer/package.json b/packages/core/data-transfer/package.json index e66f903fc4..48fccc13ae 100644 --- a/packages/core/data-transfer/package.json +++ b/packages/core/data-transfer/package.json @@ -44,7 +44,6 @@ "chalk": "4.1.2", "fs-extra": "10.0.0", "lodash": "4.17.21", - "prettier": "2.8.4", "semver": "7.3.8", "stream-chain": "2.2.5", "stream-json": "1.7.4", @@ -58,12 +57,14 @@ "@types/fs-extra": "9.0.13", "@types/jest": "29.2.0", "@types/koa": "2.13.4", + "@types/lodash": "^4.14.191", "@types/semver": "7.3.13", "@types/stream-chain": "2.0.1", "@types/stream-json": "1.7.3", "@types/tar": "6.1.3", "@types/tar-stream": "2.2.2", "@types/uuid": "9.0.0", + "@types/ws": "^8.5.4", "knex": "2.4.0", "koa": "2.13.4", "rimraf": "3.0.2", diff --git a/packages/core/email/package.json b/packages/core/email/package.json index ac4afd7097..6ef9ff6ed0 100644 --- a/packages/core/email/package.json +++ b/packages/core/email/package.json @@ -26,13 +26,29 @@ "test:front:watch:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll" }, "dependencies": { + "@strapi/design-system": "1.6.3", + "@strapi/icons": "1.6.3", "@strapi/provider-email-sendmail": "4.7.1", "@strapi/utils": "4.7.1", - "lodash": "4.17.21" + "lodash": "4.17.21", + "prop-types": "^15.7.2", + "react-intl": "6.2.8", + "yup": "^0.32.9" }, "devDependencies": { "@strapi/helper-plugin": "4.7.1", - "@testing-library/react": "12.1.4" + "@testing-library/react": "12.1.4", + "msw": "1.0.0", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" + }, + "peerDependencies": { + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "engines": { "node": ">=14.19.1 <=18.x.x", diff --git a/packages/core/helper-plugin/package.json b/packages/core/helper-plugin/package.json index 127bcef668..d3a370818b 100644 --- a/packages/core/helper-plugin/package.json +++ b/packages/core/helper-plugin/package.json @@ -48,6 +48,7 @@ "formik": "^2.2.6", "immer": "9.0.19", "lodash": "4.17.21", + "prop-types": "^15.7.2", "qs": "6.11.0", "react-helmet": "^6.1.0", "react-intl": "6.2.8", @@ -67,6 +68,7 @@ "browserslist-to-esbuild": "1.2.0", "cross-env": "^7.0.3", "esbuild-loader": "^2.21.0", + "history": "^4.9.0", "match-sorter": "^4.0.2", "react": "^17.0.2", "react-dom": "^17.0.2", @@ -75,7 +77,8 @@ "rimraf": "3.0.2", "styled-components": "5.3.3", "typescript": "4.6.2", - "webpack": "^5.75.0" + "webpack": "^5.75.0", + "webpack-cli": "^5.0.1" }, "peerDependencies": { "@strapi/design-system": "1.6.3", diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index a3a8e21d10..99e453c542 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -23,26 +23,33 @@ "test:front:watch:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll" }, "dependencies": { + "@strapi/design-system": "1.6.3", "@strapi/helper-plugin": "4.7.1", + "@strapi/icons": "1.6.3", "@strapi/provider-upload-local": "4.7.1", "@strapi/utils": "4.7.1", + "axios": "1.2.2", "byte-size": "7.0.1", "cropperjs": "1.5.12", "date-fns": "2.29.3", + "formik": "2.2.9", "fs-extra": "10.0.0", "immer": "9.0.19", "koa-range": "0.3.0", "koa-static": "5.0.0", "lodash": "4.17.21", "mime-types": "2.1.35", - "react": "^17.0.2", + "prop-types": "^15.7.2", + "qs": "6.11.0", "react-copy-to-clipboard": "^5.1.0", - "react-dom": "^17.0.2", + "react-dnd": "15.1.2", + "react-helmet": "^6.1.0", "react-intl": "6.2.8", + "react-query": "3.24.3", "react-redux": "8.0.5", - "react-router": "^5.2.0", - "react-router-dom": "5.3.4", - "sharp": "0.31.1" + "react-select": "5.6.0", + "sharp": "0.31.1", + "yup": "^0.32.9" }, "devDependencies": { "@testing-library/dom": "8.19.0", @@ -50,7 +57,17 @@ "@testing-library/react-hooks": "8.0.1", "@testing-library/user-event": "14.4.3", "msw": "1.0.1", - "react-test-renderer": "^17.0.2" + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "react-test-renderer": "^17.0.2", + "styled-components": "5.3.3" + }, + "peerDependencies": { + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "engines": { "node": ">=14.19.1 <=18.x.x", diff --git a/packages/plugins/color-picker/package.json b/packages/plugins/color-picker/package.json index 7003e13bf2..25e990fff7 100644 --- a/packages/plugins/color-picker/package.json +++ b/packages/plugins/color-picker/package.json @@ -9,12 +9,26 @@ "displayName": "Color Picker" }, "dependencies": { - "react": "^17.0.2", + "@strapi/design-system": "1.6.3", + "@strapi/helper-plugin": "4.7.1", + "@strapi/icons": "1.6.3", + "prop-types": "^15.7.2", "react-colorful": "5.6.1", - "react-dom": "^17.0.2" + "react-intl": "6.2.8" + }, + "devDependencies": { + "@testing-library/react": "12.1.4", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "peerDependencies": { - "@strapi/strapi": "^4.4.0" + "@strapi/strapi": "^4.4.0", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "repository": { "type": "git", diff --git a/packages/plugins/documentation/package.json b/packages/plugins/documentation/package.json index f4721a6c67..81fa330916 100644 --- a/packages/plugins/documentation/package.json +++ b/packages/plugins/documentation/package.json @@ -24,33 +24,44 @@ "test": "echo \"no tests yet\"" }, "dependencies": { + "@strapi/design-system": "1.6.3", "@strapi/helper-plugin": "4.7.1", + "@strapi/icons": "1.6.3", "@strapi/utils": "4.7.1", "bcryptjs": "2.4.3", "cheerio": "^1.0.0-rc.12", + "formik": "2.2.9", "fs-extra": "10.0.0", "koa-static": "^5.0.0", "lodash": "4.17.21", "path-to-regexp": "6.2.1", "pluralize": "8.0.0", - "react": "^17.0.2", "react-copy-to-clipboard": "^5.1.0", - "react-dom": "^17.0.2", + "react-helmet": "^6.1.0", "react-intl": "6.2.8", + "react-query": "3.24.3", "react-redux": "8.0.5", - "react-router": "^5.2.0", - "react-router-dom": "5.3.4", "redux": "^4.2.1", "reselect": "^4.0.0", "swagger-ui-dist": "4.15.5", - "yaml": "1.10.2" + "yaml": "1.10.2", + "yup": "^0.32.9" }, "peerDependencies": { - "@strapi/strapi": "^4.0.0" + "@strapi/strapi": "^4.0.0", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "devDependencies": { "@testing-library/react": "12.1.4", - "msw": "1.0.1" + "history": "^4.9.0", + "msw": "1.0.1", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "engines": { "node": ">=14.19.1 <=18.x.x", diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index 85d4bbdc11..cbad3d73f3 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -29,6 +29,9 @@ "dependencies": { "@graphql-tools/schema": "8.5.1", "@graphql-tools/utils": "^8.12.0", + "@strapi/design-system": "1.6.3", + "@strapi/helper-plugin": "4.7.1", + "@strapi/icons": "1.6.3", "@strapi/utils": "4.7.1", "apollo-server-core": "3.11.1", "apollo-server-koa": "3.10.0", @@ -46,10 +49,18 @@ }, "devDependencies": { "cross-env": "^7.0.3", - "koa": "^2.13.4" + "koa": "^2.13.4", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "peerDependencies": { - "@strapi/strapi": "^4.0.0" + "@strapi/strapi": "^4.0.0", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "engines": { "node": ">=14.19.1 <=18.x.x", diff --git a/packages/plugins/i18n/package.json b/packages/plugins/i18n/package.json index 4821f237d6..92e7c0695b 100644 --- a/packages/plugins/i18n/package.json +++ b/packages/plugins/i18n/package.json @@ -24,12 +24,34 @@ "test:unit": "jest --verbose" }, "dependencies": { + "@strapi/design-system": "1.6.3", + "@strapi/helper-plugin": "4.7.1", + "@strapi/icons": "1.6.3", "@strapi/utils": "4.7.1", - "lodash": "4.17.21" + "formik": "2.2.9", + "immer": "9.0.19", + "lodash": "4.17.21", + "prop-types": "^15.7.2", + "qs": "6.11.0", + "react-intl": "6.2.8", + "react-query": "3.24.3", + "react-redux": "8.0.5", + "redux": "^4.2.1", + "yup": "^0.32.9" + }, + "peerDependencies": { + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "devDependencies": { "@testing-library/react": "12.1.4", - "msw": "1.0.1" + "msw": "1.0.1", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "engines": { "node": ">=14.19.1 <=18.x.x", diff --git a/packages/plugins/sentry/package.json b/packages/plugins/sentry/package.json index a135deea7d..e30c7f6a91 100644 --- a/packages/plugins/sentry/package.json +++ b/packages/plugins/sentry/package.json @@ -24,10 +24,23 @@ "test:unit": "jest --verbose" }, "dependencies": { - "@sentry/node": "6.19.7" + "@sentry/node": "6.19.7", + "@strapi/design-system": "1.6.3", + "@strapi/helper-plugin": "4.7.1", + "@strapi/icons": "1.6.3" + }, + "devDependencies": { + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "peerDependencies": { - "@strapi/strapi": "^4.0.0" + "@strapi/strapi": "^4.0.0", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "engines": { "node": ">=14.19.1 <=18.x.x", diff --git a/packages/plugins/users-permissions/package.json b/packages/plugins/users-permissions/package.json index 2d8db6d313..20b97e1c0a 100644 --- a/packages/plugins/users-permissions/package.json +++ b/packages/plugins/users-permissions/package.json @@ -27,31 +27,46 @@ "test:front:watch:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll" }, "dependencies": { + "@strapi/design-system": "1.6.3", "@strapi/helper-plugin": "4.7.1", + "@strapi/icons": "1.6.3", "@strapi/utils": "4.7.1", "bcryptjs": "2.4.3", + "formik": "2.2.9", "grant-koa": "5.4.8", + "immer": "9.0.19", "jsonwebtoken": "9.0.0", "jwk-to-pem": "2.0.5", "koa": "^2.13.4", "koa2-ratelimit": "^1.1.2", "lodash": "4.17.21", + "match-sorter": "^4.0.2", + "prop-types": "^15.7.2", "purest": "4.0.2", - "react": "^17.0.2", - "react-dom": "^17.0.2", "react-intl": "6.2.8", + "react-query": "3.24.3", "react-redux": "8.0.5", - "react-router": "^5.2.0", - "react-router-dom": "5.3.4", - "url-join": "4.0.1" + "url-join": "4.0.1", + "yup": "^0.32.9" }, "devDependencies": { "@testing-library/dom": "8.19.0", "@testing-library/react": "12.1.4", "@testing-library/react-hooks": "8.0.1", "@testing-library/user-event": "14.4.3", + "history": "^4.9.0", "msw": "1.0.1", - "react-test-renderer": "^17.0.2" + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "react-test-renderer": "^17.0.2", + "styled-components": "5.3.3" + }, + "peerDependencies": { + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" }, "engines": { "node": ">=14.19.1 <=18.x.x", diff --git a/yarn.lock b/yarn.lock index 85a4d79db4..1441afb3fa 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6319,6 +6319,11 @@ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.185.tgz#c9843f5a40703a8f5edfd53358a58ae729816908" integrity sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA== +"@types/lodash@^4.14.191": + version "4.14.191" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.191.tgz#09511e7f7cba275acd8b419ddac8da9a6a79e2fa" + integrity sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ== + "@types/long@^4.0.0": version "4.0.2" resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" @@ -6612,6 +6617,13 @@ dependencies: "@types/node" "*" +"@types/ws@^8.5.4": + version "8.5.4" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.4.tgz#bb10e36116d6e570dd943735f86c933c1587b8a5" + integrity sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg== + dependencies: + "@types/node" "*" + "@types/yargs-parser@*": version "21.0.0" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" @@ -9239,7 +9251,7 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== -codemirror@^5.65.11: +"codemirror5@npm:codemirror@^5.65.11": version "5.65.11" resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.65.11.tgz#c818edc3274788c008f636520c5490a1f7009b4f" integrity sha512-Gp62g2eKSCHYt10axmGhKq3WoJSvVpvhXmowNq7pZdRVowwtvBR/hi2LSP5srtctKkRT33T6/n8Kv1UGp7JW4A== @@ -12000,7 +12012,7 @@ formidable@^2.1.2: once "^1.4.0" qs "^6.11.0" -formik@^2.2.6: +formik@2.2.9, formik@^2.2.6: version "2.2.9" resolved "https://registry.yarnpkg.com/formik/-/formik-2.2.9.tgz#8594ba9c5e2e5cf1f42c5704128e119fc46232d0" integrity sha512-LQLcISMmf1r5at4/gyJigGn0gOwFbeEAlji+N9InZF6LIMXnFNkO42sCI8Jt84YZggpD4cPWObAZaxpEFtSzNA== @@ -16236,14 +16248,6 @@ min-indent@^1.0.0: resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== -mini-create-react-context@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz#072171561bfdc922da08a60c2197a497cc2d1d5e" - integrity sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ== - dependencies: - "@babel/runtime" "^7.12.1" - tiny-warning "^1.0.3" - mini-css-extract-plugin@2.7.2: version "2.7.2" resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz#e049d3ea7d3e4e773aad585c6cb329ce0c7b72d7" @@ -16468,6 +16472,31 @@ ms@2.1.3, ms@^2.0.0, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +msw@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/msw/-/msw-1.0.0.tgz#4f8e63aa23912561a63b99ff560a089da6969418" + integrity sha512-8QVa1RAN/Nzbn/tKmtimJ+b2M1QZOMdETQW7/1TmBOZ4w+wJojfxuh1Hj5J4FYdBgZWW/TK4CABUOlOM4OjTOA== + dependencies: + "@mswjs/cookies" "^0.2.2" + "@mswjs/interceptors" "^0.17.5" + "@open-draft/until" "^1.0.3" + "@types/cookie" "^0.4.1" + "@types/js-levenshtein" "^1.1.1" + chalk "4.1.1" + chokidar "^3.4.2" + cookie "^0.4.2" + graphql "^15.0.0 || ^16.0.0" + headers-polyfill "^3.1.0" + inquirer "^8.2.0" + is-node-process "^1.0.1" + js-levenshtein "^1.1.6" + node-fetch "^2.6.7" + outvariant "^1.3.0" + path-to-regexp "^6.2.0" + strict-event-emitter "^0.4.3" + type-fest "^2.19.0" + yargs "^17.3.1" + msw@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/msw/-/msw-1.0.1.tgz#f55b36b3d7e911ee75a73d6346585e01af3fbcfb" @@ -17872,6 +17901,8 @@ path-case@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5" integrity sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU= + dependencies: + no-case "^2.2.0" path-dirname@^1.0.0: version "1.0.2" @@ -18959,23 +18990,7 @@ react-router-dom@5.3.4: tiny-invariant "^1.0.2" tiny-warning "^1.0.0" -react-router@5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.2.0.tgz#424e75641ca8747fbf76e5ecca69781aa37ea293" - integrity sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw== - dependencies: - "@babel/runtime" "^7.1.2" - history "^4.9.0" - hoist-non-react-statics "^3.1.0" - loose-envify "^1.3.1" - mini-create-react-context "^0.4.0" - path-to-regexp "^1.7.0" - prop-types "^15.6.2" - react-is "^16.6.0" - tiny-invariant "^1.0.2" - tiny-warning "^1.0.0" - -react-router@5.3.4, react-router@^5.2.0: +react-router@5.3.4: version "5.3.4" resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.3.4.tgz#8ca252d70fcc37841e31473c7a151cf777887bb5" integrity sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA== @@ -21371,7 +21386,7 @@ tiny-invariant@^1.0.2: resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.2.0.tgz#a1141f86b672a9148c72e978a19a73b9b94a15a9" integrity sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg== -tiny-warning@^1.0.0, tiny-warning@^1.0.2, tiny-warning@^1.0.3: +tiny-warning@^1.0.0, tiny-warning@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==