chore: fixing the version numbers

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-04-04 15:59:40 +02:00
parent 1cd678be2b
commit f4fd7f5400
69 changed files with 82 additions and 76 deletions
+1 -1
View File
@@ -59,7 +59,7 @@
"@changesets/cli": "^2.14.0",
"@octokit/rest": "^18.12.0",
"@spotify/prettier-config": "^13.0.0",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/webpack": "^5.28.0",
"command-exists": "^1.2.9",
"cross-env": "^7.0.0",
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/react": "^16.13.1 || ^17.0.0"
},
"files": [
+1 -1
View File
@@ -84,7 +84,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/jquery": "^3.3.34",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/react-dom": "*",
"@types/zen-observable": "^0.8.0",
"cross-env": "^7.0.0",
+1 -1
View File
@@ -137,7 +137,7 @@
"@types/inquirer": "^8.1.3",
"@types/minimatch": "^3.0.5",
"@types/mock-fs": "^4.13.0",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/npm-packlist": "^3.0.0",
"@types/recursive-readdir": "^2.2.0",
"@types/rollup-plugin-peer-deps-external": "^2.2.0",
@@ -48,7 +48,7 @@
"@testing-library/react": "{{versionQuery '@testing-library/react' '12.1.3'}}",
"@testing-library/user-event": "{{versionQuery '@testing-library/user-event' '13.1.8'}}",
"@types/jest": "{{versionQuery '@types/jest' '26.0.7'}}",
"@types/node": "{{versionQuery '@types/node' '14.14.32'}}",
"@types/node": "{{versionQuery '@types/node' '16.11.26'}}",
"msw": "{{versionQuery 'msw' '0.35.0'}}",
"cross-fetch": "{{versionQuery 'cross-fetch' '3.1.5'}}"
},
+1 -1
View File
@@ -41,7 +41,7 @@
},
"devDependencies": {
"@types/jscodeshift": "^0.11.0",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"commander": "^6.1.0",
"ts-node": "^10.0.0"
},
+1 -1
View File
@@ -54,7 +54,7 @@
"@types/jest": "^26.0.7",
"@types/json-schema-merge-allof": "^0.6.0",
"@types/mock-fs": "^4.10.0",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/yup": "^0.29.13",
"mock-fs": "^5.1.0",
"msw": "^0.35.0"
+1 -1
View File
@@ -56,7 +56,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/zen-observable": "^0.8.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -93,7 +93,7 @@
"@types/dagre": "^0.7.44",
"@types/google-protobuf": "^3.7.2",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/react-helmet": "^6.1.0",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/react-virtualized-auto-sizer": "^1.0.1",
+1 -1
View File
@@ -54,7 +54,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/prop-types": "^15.7.3",
"@types/zen-observable": "^0.8.0",
"cross-fetch": "^3.1.5",
+1 -1
View File
@@ -45,7 +45,7 @@
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^8.1.3",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/recursive-readdir": "^2.2.0",
"mock-fs": "^5.1.1",
"ts-node": "^10.0.0"
+1 -1
View File
@@ -32,7 +32,7 @@
"@backstage/cli-common": "^0.1.8",
"@backstage/errors": "^1.0.0",
"@types/fs-extra": "^9.0.1",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/puppeteer": "^5.4.4",
"chalk": "^4.0.0",
"commander": "^6.1.0",
+14 -8
View File
@@ -372,10 +372,13 @@ async function testAppServe(pluginName: string, appDir: string) {
}
} finally {
// Kill entire process group, otherwise we'll end up with hanging serve processes
await new Promise<void>(
(res, rej) =>
startApp.pid && killTree(startApp.pid, err => (err ? rej(err) : res())),
);
await new Promise<void>((res, rej) => {
if (!startApp.pid) {
res();
return;
}
killTree(startApp.pid, err => (err ? rej(err) : res()));
});
}
try {
@@ -478,10 +481,13 @@ async function testBackendStart(appDir: string, isPostgres: boolean) {
} finally {
print('Stopping the child process');
// Kill entire process group, otherwise we'll end up with hanging serve processes
await new Promise<void>(
(res, rej) =>
child.pid && killTree(child.pid, err => (err ? rej(err) : res())),
);
await new Promise<void>((res, rej) => {
if (!child.pid) {
res();
return;
}
killTree(child.pid, err => (err ? rej(err) : res()));
});
}
try {
+1 -1
View File
@@ -45,7 +45,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"msw": "^0.35.0",
"cross-fetch": "^3.1.5"
},
@@ -34,7 +34,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/react-dom": "*",
"cross-env": "^7.0.0",
"cypress": "^9.5.0",
+1 -1
View File
@@ -42,7 +42,7 @@
"@types/fs-extra": "^9.0.6",
"@types/http-proxy": "^1.17.4",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/serve-handler": "^6.1.0",
"@types/webpack-env": "^1.15.3",
"cypress": "^9.5.0",
+1 -1
View File
@@ -57,7 +57,7 @@
"devDependencies": {
"@backstage/cli": "^0.17.0-next.1",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -48,7 +48,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/object-hash": "^2.2.1",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0",
+1 -1
View File
@@ -48,7 +48,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -46,7 +46,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -44,7 +44,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -64,7 +64,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/swagger-ui-react": "^4.1.1",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -57,7 +57,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -54,7 +54,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/recharts": "^1.8.15",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -64,7 +64,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/humanize-duration": "^3.25.1",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -60,7 +60,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -49,7 +49,7 @@
"@types/humanize-duration": "^3.27.1",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.9",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/highlightjs": "^10.1.0",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/recharts": "^1.8.15",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -49,7 +49,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -68,7 +68,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/pluralize": "^0.0.29",
"@types/recharts": "^1.8.14",
"@types/regression": "^2.0.0",
+1 -1
View File
@@ -43,7 +43,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -61,7 +61,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -47,7 +47,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -61,7 +61,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -54,7 +54,7 @@
"@types/gapi.auth2": "^0.0.56",
"@types/gapi.client.calendar": "^3.0.10",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/sanitize-html": "^2.6.2",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -52,7 +52,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/recharts": "^1.8.15",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -63,7 +63,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -56,7 +56,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -59,7 +59,7 @@
"@types/jest": "^26.0.7",
"@types/lodash": "^4.14.173",
"@types/luxon": "^2.0.4",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -57,7 +57,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/codemirror": "^0.0.108",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0",
"react-router-dom": "6.0.0-beta.0"
+1 -1
View File
@@ -62,7 +62,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -62,7 +62,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/testing-library__jest-dom": "^5.9.1",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -48,7 +48,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"jest-when": "^3.1.0",
"msw": "^0.35.0"
+1 -1
View File
@@ -66,7 +66,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -60,7 +60,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -57,7 +57,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -60,7 +60,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -51,7 +51,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -62,7 +62,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
@@ -36,7 +36,7 @@
"devDependencies": {
"@backstage/cli": "^0.17.0-next.1",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^9.0.1",
"@types/mock-fs": "^4.13.0",
+1 -1
View File
@@ -90,7 +90,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/humanize-duration": "^3.18.1",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"event-source-polyfill": "1.0.25",
"msw": "^0.35.0"
+1 -1
View File
@@ -65,7 +65,7 @@
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -62,7 +62,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -50,7 +50,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -61,7 +61,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -60,7 +60,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -49,7 +49,7 @@
"@backstage/dev-utils": "^1.0.1-next.0",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"msw": "^0.35.0"
},
"files": [
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -59,7 +59,7 @@
"@types/color": "^3.0.1",
"@types/d3-force": "^2.1.1",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"@types/react": "^16.13.1 || ^17.0.0",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -74,7 +74,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/dompurify": "^2.2.2",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"canvas": "^2.6.1",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
+1 -1
View File
@@ -53,7 +53,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"react-router": "6.0.0-beta.0",
"msw": "^0.35.0"
+1 -1
View File
@@ -55,7 +55,7 @@
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -49,7 +49,7 @@
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"@types/node": "^16.x",
"@types/node": "^16.11.26",
"cross-fetch": "^3.1.5",
"msw": "^0.35.0"
},
+1 -1
View File
@@ -6432,7 +6432,7 @@
resolved "https://registry.npmjs.org/@types/node/-/node-15.14.9.tgz#bc43c990c3c9be7281868bbc7b8fdd6e2b57adfa"
integrity sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==
"@types/node@^16.x":
"@types/node@^16.11.26":
version "16.11.26"
resolved "https://registry.npmjs.org/@types/node/-/node-16.11.26.tgz#63d204d136c9916fb4dcd1b50f9740fe86884e47"
integrity sha512-GZ7bu5A6+4DtG7q9GsoHXy3ALcgeIHP4NnL0Vv2wu0uUB/yQex26v0tf6/na1mm0+bS9Uw+0DFex7aaKr2qawQ==