diff --git a/README.md b/README.md index 94ba8ef297a..27994a9dfd4 100644 --- a/README.md +++ b/README.md @@ -149,10 +149,10 @@ See the global [static](./static) folder. 7. Be sure your next.config.js app overrides webpack like in [nextjs.config.js](./apps/web-app/next.config.js): ```js - webpack: function (config, { defaultLoaders }) { - const resolvedBaseUrl = path.resolve(config.context, '../../'); + webpack: function(config, { defaultLoaders }) { // Will allow transpilation of shared packages through tsonfig paths // @link https://github.com/vercel/next.js/pull/13542 + const resolvedBaseUrl = path.resolve(config.context, '../../'); config.module.rules = [ ...config.module.rules, { diff --git a/apps/blog-app/next.config.js b/apps/blog-app/next.config.js index 5200e01e777..56744238597 100644 --- a/apps/blog-app/next.config.js +++ b/apps/blog-app/next.config.js @@ -70,10 +70,10 @@ const config = withBundleAnalyzer( }, webpack: function (config, { defaultLoaders }) { - const resolvedBaseUrl = path.resolve(config.context, '../../'); // This extra config allows to use paths defined in tsconfig // rather than next-transpile-modules. // @link https://github.com/vercel/next.js/pull/13542 + const resolvedBaseUrl = path.resolve(config.context, '../../'); config.module.rules = [ ...config.module.rules, { diff --git a/apps/blog-app/package.json b/apps/blog-app/package.json index 75a8fb38226..c36901bdda6 100644 --- a/apps/blog-app/package.json +++ b/apps/blog-app/package.json @@ -28,7 +28,7 @@ "test": "run-s 'test:*'", "test:unit": "jest --config jest.config.js --maxWorkers=50% --color $@", "ci-test:unit": "jest --config jest.config.js --runInBand --color $@", - "typecheck": "tsc -p ./ --noEmit", + "typecheck": "tsc --project ./tsconfig.json --noEmit", "lint": "eslint . --ext .ts,.tsx,.js,.jsx", "fix:staged-files": "lint-staged --allow-empty", "fix:all-files": "eslint . --ext .ts,.tsx,.js,.jsx --fix", @@ -36,23 +36,23 @@ }, "devDependencies": { "@emotion/babel-plugin": "^11.3.0", - "@next/bundle-analyzer": "^10.2.2", - "@tailwindcss/typography": "^0.4.0", + "@next/bundle-analyzer": "^10.2.3", + "@tailwindcss/typography": "^0.4.1", "@testing-library/jest-dom": "^5.12.0", "@testing-library/react": "^11.2.7", "@testing-library/react-hooks": "^6.0.0", "@types/jest": "^26.0.23", - "@types/node": "^15.6.0", - "@types/react": "^17.0.6", + "@types/node": "^15.6.1", + "@types/react": "^17.0.7", "@types/react-dom": "^17.0.5", - "@typescript-eslint/eslint-plugin": "^4.24.0", - "@typescript-eslint/parser": "^4.24.0", + "@typescript-eslint/eslint-plugin": "^4.25.0", + "@typescript-eslint/parser": "^4.25.0", "autoprefixer": "^10.2.5", "camelcase": "^6.2.0", "cross-env": "^7.0.3", - "eslint": "^7.26.0", + "eslint": "^7.27.0", "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "2.23.2", + "eslint-plugin-import": "2.23.3", "eslint-plugin-jest": "^24.3.6", "eslint-plugin-jest-formatting": "^3.0.0", "eslint-plugin-jsx-a11y": "^6.4.1", @@ -69,7 +69,7 @@ "rimraf": "^3.0.2", "shell-quote": "^1.7.2", "symlink-dir": "^5.0.1", - "sync-directory": "^2.2.20", + "sync-directory": "^2.2.22", "tailwindcss": "^2.1.2", "ts-jest": "^26.5.6", "typescript": "^4.2.4" @@ -82,7 +82,7 @@ "@your-org/core-lib": "workspace:*", "@your-org/ui-lib": "workspace:*", "cross-env": "^7.0.3", - "next": "^10.2.2", + "next": "^10.2.3", "next-secure-headers": "^2.2.0", "next-seo": "^4.24.0", "react": "^17.0.2", diff --git a/apps/web-app/next.config.js b/apps/web-app/next.config.js index 5200e01e777..56744238597 100644 --- a/apps/web-app/next.config.js +++ b/apps/web-app/next.config.js @@ -70,10 +70,10 @@ const config = withBundleAnalyzer( }, webpack: function (config, { defaultLoaders }) { - const resolvedBaseUrl = path.resolve(config.context, '../../'); // This extra config allows to use paths defined in tsconfig // rather than next-transpile-modules. // @link https://github.com/vercel/next.js/pull/13542 + const resolvedBaseUrl = path.resolve(config.context, '../../'); config.module.rules = [ ...config.module.rules, { diff --git a/apps/web-app/package.json b/apps/web-app/package.json index 1e9a60d5a45..cee5a38ca45 100644 --- a/apps/web-app/package.json +++ b/apps/web-app/package.json @@ -27,30 +27,30 @@ "test": "run-s 'test:*'", "test:unit": "jest --config jest.config.js --maxWorkers=50% --color $@", "ci-test:unit": "jest --config jest.config.js --runInBand --color $@", - "typecheck": "tsc -p ./ --noEmit", + "typecheck": "tsc --project ./tsconfig.json --noEmit", "lint": "eslint . --ext .ts,.tsx,.js,.jsx", "fix:staged-files": "lint-staged --allow-empty", "fix:all-files": "eslint . --ext .ts,.tsx,.js,.jsx --fix" }, "devDependencies": { "@emotion/babel-plugin": "^11.3.0", - "@next/bundle-analyzer": "^10.2.2", - "@tailwindcss/typography": "^0.4.0", + "@next/bundle-analyzer": "^10.2.3", + "@tailwindcss/typography": "^0.4.1", "@testing-library/jest-dom": "^5.12.0", "@testing-library/react": "^11.2.7", "@testing-library/react-hooks": "^6.0.0", "@types/jest": "^26.0.23", - "@types/node": "^15.6.0", - "@types/react": "^17.0.6", + "@types/node": "^15.6.1", + "@types/react": "^17.0.7", "@types/react-dom": "^17.0.5", - "@typescript-eslint/eslint-plugin": "^4.24.0", - "@typescript-eslint/parser": "^4.24.0", + "@typescript-eslint/eslint-plugin": "^4.25.0", + "@typescript-eslint/parser": "^4.25.0", "autoprefixer": "^10.2.5", "camelcase": "^6.2.0", "cross-env": "^7.0.3", - "eslint": "^7.26.0", + "eslint": "^7.27.0", "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "2.23.2", + "eslint-plugin-import": "2.23.3", "eslint-plugin-jest": "^24.3.6", "eslint-plugin-jest-formatting": "^3.0.0", "eslint-plugin-jsx-a11y": "^6.4.1", @@ -66,10 +66,10 @@ "prettier": "^2.3.0", "prisma": "^2.23.0", "rimraf": "^3.0.2", - "sass": "^1.33.0", + "sass": "^1.34.0", "shell-quote": "^1.7.2", "symlink-dir": "^5.0.1", - "sync-directory": "^2.2.20", + "sync-directory": "^2.2.22", "tailwindcss": "^2.1.2", "ts-jest": "^26.5.6", "typescript": "^4.2.4" @@ -83,7 +83,7 @@ "@your-org/core-lib": "workspace:*", "@your-org/ui-lib": "workspace:*", "cross-env": "^7.0.3", - "next": "^10.2.2", + "next": "^10.2.3", "next-secure-headers": "^2.2.0", "next-seo": "^4.24.0", "react": "^17.0.2", diff --git a/packages/core-lib/package.json b/packages/core-lib/package.json index 70d7637153e..ff7cb0cf789 100644 --- a/packages/core-lib/package.json +++ b/packages/core-lib/package.json @@ -22,7 +22,7 @@ "dev": "microbundle watch", "clean": "rimraf --no-glob ./dist", "lint": "eslint . --ext .ts,.tsx,.js,.jsx", - "typecheck": "tsc -p ./ --noEmit", + "typecheck": "tsc --project ./tsconfig.json --noEmit", "test": "run-s 'test:*'", "test:unit": "echo \"No tests yet\"", "fix:staged-files": "lint-staged --allow-empty", @@ -33,15 +33,15 @@ "@testing-library/react": "^11.2.7", "@testing-library/react-hooks": "^6.0.0", "@types/jest": "^26.0.23", - "@types/node": "^15.6.0", - "@types/react": "^17.0.6", + "@types/node": "^15.6.1", + "@types/react": "^17.0.7", "@types/react-dom": "^17.0.5", - "@typescript-eslint/eslint-plugin": "^4.24.0", - "@typescript-eslint/parser": "^4.24.0", + "@typescript-eslint/eslint-plugin": "^4.25.0", + "@typescript-eslint/parser": "^4.25.0", "camelcase": "^6.2.0", - "eslint": "^7.26.0", + "eslint": "^7.27.0", "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "2.23.2", + "eslint-plugin-import": "2.23.3", "eslint-plugin-jest": "^24.3.6", "eslint-plugin-jest-formatting": "^3.0.0", "eslint-plugin-jsx-a11y": "^6.4.1", diff --git a/packages/ui-lib/package.json b/packages/ui-lib/package.json index 3efdceeed27..9ada07cdd4c 100644 --- a/packages/ui-lib/package.json +++ b/packages/ui-lib/package.json @@ -22,7 +22,7 @@ "dev": "microbundle watch", "clean": "rimraf --no-glob ./dist", "lint": "eslint . --ext .ts,.tsx,.js,.jsx", - "typecheck": "tsc -p ./ --noEmit", + "typecheck": "tsc --project ./tsconfig.json --noEmit", "test": "run-s 'test:*'", "test:unit": "echo \"No tests yet\"", "fix:staged-files": "lint-staged --allow-empty", @@ -33,15 +33,15 @@ "@testing-library/react": "^11.2.7", "@testing-library/react-hooks": "^6.0.0", "@types/jest": "^26.0.23", - "@types/node": "^15.6.0", - "@types/react": "^17.0.6", + "@types/node": "^15.6.1", + "@types/react": "^17.0.7", "@types/react-dom": "^17.0.5", - "@typescript-eslint/eslint-plugin": "^4.24.0", - "@typescript-eslint/parser": "^4.24.0", + "@typescript-eslint/eslint-plugin": "^4.25.0", + "@typescript-eslint/parser": "^4.25.0", "camelcase": "^6.2.0", - "eslint": "^7.26.0", + "eslint": "^7.27.0", "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "2.23.2", + "eslint-plugin-import": "2.23.3", "eslint-plugin-jest": "^24.3.6", "eslint-plugin-jest-formatting": "^3.0.0", "eslint-plugin-jsx-a11y": "^6.4.1", diff --git a/yarn.lock b/yarn.lock index e23b88d6966..02c273caa8f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2270,32 +2270,32 @@ __metadata: languageName: node linkType: hard -"@next/bundle-analyzer@npm:^10.2.2": - version: 10.2.2 - resolution: "@next/bundle-analyzer@npm:10.2.2" +"@next/bundle-analyzer@npm:^10.2.3": + version: 10.2.3 + resolution: "@next/bundle-analyzer@npm:10.2.3" dependencies: webpack-bundle-analyzer: 4.3.0 - checksum: 20aafa93b91baa1b436c607492d1e7ed10c38cce08ba19a2aab7800b6bcd902f53287d69bc1540e126d26976e7bc72eeac39b2c969a98651a43d4822437a65e3 + checksum: 1b2fb40e60699c70f99db502e394aa67972f944a617222383629a6b78947bd716d487e51a9e42e7d145470b436354aa29c4ddb4ca1449c931c1ad9efa21c3d4b languageName: node linkType: hard -"@next/env@npm:10.2.2": - version: 10.2.2 - resolution: "@next/env@npm:10.2.2" - checksum: 14c138b77f8d50bb6ed58e493dfe726af7f103c9aa224c705a021f5006af6e2d0a3f2977afe17c9e4b3e08351e0e8857a13da945c0da0f1bcd198d5c8ff40022 +"@next/env@npm:10.2.3": + version: 10.2.3 + resolution: "@next/env@npm:10.2.3" + checksum: f48e5148ec25b098c5663990775d98f4b8a747d6fa732fba0c1b25bf0cfa59aa1f341dac390ada5cad82c4a92aa8e50c8735870986878f7c052907d9c31d2a24 languageName: node linkType: hard -"@next/polyfill-module@npm:10.2.2": - version: 10.2.2 - resolution: "@next/polyfill-module@npm:10.2.2" - checksum: 6f09174f9bd667d571f2a1e29a16797bac40b9d26353c2f170a7cb1311d975ead841b6d7bae0c6ecd6d7bb21a53e4f61793899c3af620b3acad38deb5d74b2af +"@next/polyfill-module@npm:10.2.3": + version: 10.2.3 + resolution: "@next/polyfill-module@npm:10.2.3" + checksum: 4ef314ba95c0f53e9979a4c57e8ce444254591fe85315a60805b9dd26f670f38a3c594de87ba4b3d5b965c7225cf18553658990f27a6300ef42d6a07d36ec618 languageName: node linkType: hard -"@next/react-dev-overlay@npm:10.2.2": - version: 10.2.2 - resolution: "@next/react-dev-overlay@npm:10.2.2" +"@next/react-dev-overlay@npm:10.2.3": + version: 10.2.3 + resolution: "@next/react-dev-overlay@npm:10.2.3" dependencies: "@babel/code-frame": 7.12.11 anser: 1.4.9 @@ -2311,20 +2311,20 @@ __metadata: peerDependencies: react: ^16.9.0 || ^17 react-dom: ^16.9.0 || ^17 - checksum: 43cd65764319bc1534ee319ba22d0c886c7d45f665d2ea7e16b54ab867d7debef17614db13d30dca84a3cb73a8bd3bf366148b75597072763d27650c899f8fff + checksum: f387003701907fbe99499e75eb148422e199ff9c34daab119313d4dffa806ff5f890e42ca3268a7a2f40036c3824e9ae1f33e8af3d15f8fb2e0d046e8a338f04 languageName: node linkType: hard -"@next/react-refresh-utils@npm:10.2.2": - version: 10.2.2 - resolution: "@next/react-refresh-utils@npm:10.2.2" +"@next/react-refresh-utils@npm:10.2.3": + version: 10.2.3 + resolution: "@next/react-refresh-utils@npm:10.2.3" peerDependencies: react-refresh: 0.8.3 webpack: ^4 || ^5 peerDependenciesMeta: webpack: optional: true - checksum: f333f388e2bc8404cc758e70719200ecd8d763130ef58f3a6f06a87c0bf2ef1e8d2682d890d5035442f72817375257f1aef1007deb0b6dbf4500803f9c5cf75c + checksum: caf481fc81ed0a754b2c649c7ab6557c1da1cd22e0c0a8003025865973229b62a0950fbf6b0ad6fc473e69180012319f9e1ca699acfc7a977659e93a57a37657 languageName: node linkType: hard @@ -2592,17 +2592,17 @@ __metadata: languageName: node linkType: hard -"@tailwindcss/typography@npm:^0.4.0": - version: 0.4.0 - resolution: "@tailwindcss/typography@npm:0.4.0" +"@tailwindcss/typography@npm:^0.4.1": + version: 0.4.1 + resolution: "@tailwindcss/typography@npm:0.4.1" dependencies: lodash.castarray: ^4.4.0 lodash.isplainobject: ^4.0.6 lodash.merge: ^4.6.2 lodash.uniq: ^4.5.0 peerDependencies: - tailwindcss: 2.0.0-alpha.24 || ^2.0.0 - checksum: bdb221d48909eaf4e61cacfdb78670157a4289309125549b1c78c382585679c2faef33f332d9e4d445d2f469f7810fc78bf715607e0a435277310d49fba056d1 + tailwindcss: ">=2.0.0" + checksum: d234509964f59389d00ccc0529b033a5aa670a93149a48520cd2088d102b894cc746146052ea844a926bbea4b16904f5f6b2874399511bf78d55631bdb88ac68 languageName: node linkType: hard @@ -2817,10 +2817,10 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:^15.6.0": - version: 15.6.0 - resolution: "@types/node@npm:15.6.0" - checksum: 424d9610aff823754a446500f2fc75b3de1570d250194d20ead3dad9f93b8a69f56169f1baa894781c970e7d508b418a5e98492225ee2a106fd9d4aa6f6b1e7e +"@types/node@npm:*, @types/node@npm:^15.6.1": + version: 15.6.1 + resolution: "@types/node@npm:15.6.1" + checksum: 8ed16d4f7404203d3aade0b73e58c969fab4a721cfe637eff9b739f6b25a35e33dfe9e0961b9ac5994d629302faa977f8ee8931d09187a136875f966332cc552 languageName: node linkType: hard @@ -2884,14 +2884,14 @@ __metadata: languageName: node linkType: hard -"@types/react@npm:*, @types/react@npm:>=16.9.0, @types/react@npm:^17.0.6": - version: 17.0.6 - resolution: "@types/react@npm:17.0.6" +"@types/react@npm:*, @types/react@npm:>=16.9.0, @types/react@npm:^17.0.7": + version: 17.0.7 + resolution: "@types/react@npm:17.0.7" dependencies: "@types/prop-types": "*" "@types/scheduler": "*" csstype: ^3.0.2 - checksum: dd687a9620d90cc7b9e50ed06ec73beb589fcb7ddfec7b166307af79cee7c521c1f2f1084ffd4ad6eaf7c937cfa446cc0b03cc3cd18e85e952501da2f2e0e0c3 + checksum: d376507e2bda4ff6c1194e88961b393dacad6f12061c8861f777208e0f34e17362f22b9b8a6bd2b51a7f05b574f832dc2e9047af480ab93af441f228a0cb2f77 languageName: node linkType: hard @@ -2959,12 +2959,12 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^4.24.0": - version: 4.24.0 - resolution: "@typescript-eslint/eslint-plugin@npm:4.24.0" +"@typescript-eslint/eslint-plugin@npm:^4.25.0": + version: 4.25.0 + resolution: "@typescript-eslint/eslint-plugin@npm:4.25.0" dependencies: - "@typescript-eslint/experimental-utils": 4.24.0 - "@typescript-eslint/scope-manager": 4.24.0 + "@typescript-eslint/experimental-utils": 4.25.0 + "@typescript-eslint/scope-manager": 4.25.0 debug: ^4.1.1 functional-red-black-tree: ^1.0.1 lodash: ^4.17.15 @@ -2977,66 +2977,66 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: f0a575260dc0fd5eb30f30a42b2991cf20c22ed54cfb762d3e1ae066407d2f7f676c83a1a0a3b1cb1c90274070b14c5bcb818f0e56587431bf8464ed8db62e66 + checksum: ed382df229ae72675844537825b4019d586736b402eeeb3ae73bac69fa912e4043c9d33df4da4ee3efce71481c57afeb2010784cc2ba3b52f84ba5880502c7ee languageName: node linkType: hard -"@typescript-eslint/experimental-utils@npm:4.24.0, @typescript-eslint/experimental-utils@npm:^4.0.1": - version: 4.24.0 - resolution: "@typescript-eslint/experimental-utils@npm:4.24.0" +"@typescript-eslint/experimental-utils@npm:4.25.0, @typescript-eslint/experimental-utils@npm:^4.0.1": + version: 4.25.0 + resolution: "@typescript-eslint/experimental-utils@npm:4.25.0" dependencies: "@types/json-schema": ^7.0.3 - "@typescript-eslint/scope-manager": 4.24.0 - "@typescript-eslint/types": 4.24.0 - "@typescript-eslint/typescript-estree": 4.24.0 + "@typescript-eslint/scope-manager": 4.25.0 + "@typescript-eslint/types": 4.25.0 + "@typescript-eslint/typescript-estree": 4.25.0 eslint-scope: ^5.0.0 eslint-utils: ^2.0.0 peerDependencies: eslint: "*" - checksum: d78140db8bc0ea31ac438fb166e8bf744e77f1045345e08387e0049c38fe5d82d8b2e53f338437a457927ad07b38c76043407a2143279867644dbfc37b3483c1 + checksum: bcd1c15328de8916c9072daef41fd3bb177f7df55cd062cca6ab7577496fb21aaf6bfcd975b357c2cffd1b27f1ededa37451a209a452028cc5e383dffdb28589 languageName: node linkType: hard -"@typescript-eslint/parser@npm:^4.24.0": - version: 4.24.0 - resolution: "@typescript-eslint/parser@npm:4.24.0" +"@typescript-eslint/parser@npm:^4.25.0": + version: 4.25.0 + resolution: "@typescript-eslint/parser@npm:4.25.0" dependencies: - "@typescript-eslint/scope-manager": 4.24.0 - "@typescript-eslint/types": 4.24.0 - "@typescript-eslint/typescript-estree": 4.24.0 + "@typescript-eslint/scope-manager": 4.25.0 + "@typescript-eslint/types": 4.25.0 + "@typescript-eslint/typescript-estree": 4.25.0 debug: ^4.1.1 peerDependencies: eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 05c889c00948ba6378833da33dab060f63aec947297a7fb173f53445f30fe4c7a37b33a0777fa4260b1bf85c713be2ea6f49b662a983dab61e30fcb0e6bd6fcd + checksum: a6b59d28d9f618fe133f64354bdac56ba777b80c97fda5950beffe3b744e192e33edf2f8ebe2374ecd61c20a66b0c151366360bdd011acdc29b6a50d509b5677 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:4.24.0": - version: 4.24.0 - resolution: "@typescript-eslint/scope-manager@npm:4.24.0" +"@typescript-eslint/scope-manager@npm:4.25.0": + version: 4.25.0 + resolution: "@typescript-eslint/scope-manager@npm:4.25.0" dependencies: - "@typescript-eslint/types": 4.24.0 - "@typescript-eslint/visitor-keys": 4.24.0 - checksum: 1f3de589450a8f386166a41d302838af1dbc4810aa04617481992867b303f5ccebffd776da60f095167d1ca1a1ace532c6e5e8d5f3d187c4bafcd4463cfd0da6 + "@typescript-eslint/types": 4.25.0 + "@typescript-eslint/visitor-keys": 4.25.0 + checksum: d94c5fc14b85bc3c57c0204970141c6a8f7aa1ccf4f2c297db84176f1999e0e6630f760c6d7e0d480a293b9d5f7748c953955d12d14208acb12d441013fe9507 languageName: node linkType: hard -"@typescript-eslint/types@npm:4.24.0": - version: 4.24.0 - resolution: "@typescript-eslint/types@npm:4.24.0" - checksum: cfd6d6730f2c9234ea81e8687cc17596707ccae7fdbf18af8f3ab9e57504c8b7410d50eec80fc57c2069c627015634eddf9594ca7e011559c399b24a65ff848a +"@typescript-eslint/types@npm:4.25.0": + version: 4.25.0 + resolution: "@typescript-eslint/types@npm:4.25.0" + checksum: 6048c9bbcb3063a4d2a64fb8b513db4ad502cbfff9f31758e7b7fb093c610a57d0ac79183c125f061e4b0fffb21916d64cac6f722d11a8b75d02b78963c8422c languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:4.24.0": - version: 4.24.0 - resolution: "@typescript-eslint/typescript-estree@npm:4.24.0" +"@typescript-eslint/typescript-estree@npm:4.25.0": + version: 4.25.0 + resolution: "@typescript-eslint/typescript-estree@npm:4.25.0" dependencies: - "@typescript-eslint/types": 4.24.0 - "@typescript-eslint/visitor-keys": 4.24.0 + "@typescript-eslint/types": 4.25.0 + "@typescript-eslint/visitor-keys": 4.25.0 debug: ^4.1.1 globby: ^11.0.1 is-glob: ^4.0.1 @@ -3045,17 +3045,17 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 9fc5a8f3dbee86ccb39cf5e4009820e6a5db21e49bc91faa9c85421b0f0c19c9ef2a648962818eabde3617e14ae41e1d426b38bc3925b952374c0a2f84c10cbb + checksum: 7c51e4a35367ca638676dc174953dc223d104621bbcdccefec8878ce990fe52a1815ae7f3090fbc66a57ea7653fc7f443841b17c2933a1b5b1346e0441a5dfd4 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:4.24.0": - version: 4.24.0 - resolution: "@typescript-eslint/visitor-keys@npm:4.24.0" +"@typescript-eslint/visitor-keys@npm:4.25.0": + version: 4.25.0 + resolution: "@typescript-eslint/visitor-keys@npm:4.25.0" dependencies: - "@typescript-eslint/types": 4.24.0 + "@typescript-eslint/types": 4.25.0 eslint-visitor-keys: ^2.0.0 - checksum: d8024a4230c362842f899e21a5466d1f2e1615a25898117b34ec6b882c0463c256fd4c1ab6621ad39aa69cf160cda39b36299e40d274a74a7e4e826d030d33fd + checksum: 8796635677d2707fcfca3557095f7a6ddadc020fd8f719e1d51e159441db3f73924601f759ec3b68ce8f284eead90b56cdb1429174728512f147821728e6adc8 languageName: node linkType: hard @@ -3067,15 +3067,15 @@ __metadata: "@testing-library/react": ^11.2.7 "@testing-library/react-hooks": ^6.0.0 "@types/jest": ^26.0.23 - "@types/node": ^15.6.0 - "@types/react": ^17.0.6 + "@types/node": ^15.6.1 + "@types/react": ^17.0.7 "@types/react-dom": ^17.0.5 - "@typescript-eslint/eslint-plugin": ^4.24.0 - "@typescript-eslint/parser": ^4.24.0 + "@typescript-eslint/eslint-plugin": ^4.25.0 + "@typescript-eslint/parser": ^4.25.0 camelcase: ^6.2.0 - eslint: ^7.26.0 + eslint: ^7.27.0 eslint-config-prettier: ^8.3.0 - eslint-plugin-import: 2.23.2 + eslint-plugin-import: 2.23.3 eslint-plugin-jest: ^24.3.6 eslint-plugin-jest-formatting: ^3.0.0 eslint-plugin-jsx-a11y: ^6.4.1 @@ -3108,15 +3108,15 @@ __metadata: "@testing-library/react": ^11.2.7 "@testing-library/react-hooks": ^6.0.0 "@types/jest": ^26.0.23 - "@types/node": ^15.6.0 - "@types/react": ^17.0.6 + "@types/node": ^15.6.1 + "@types/react": ^17.0.7 "@types/react-dom": ^17.0.5 - "@typescript-eslint/eslint-plugin": ^4.24.0 - "@typescript-eslint/parser": ^4.24.0 + "@typescript-eslint/eslint-plugin": ^4.25.0 + "@typescript-eslint/parser": ^4.25.0 camelcase: ^6.2.0 - eslint: ^7.26.0 + eslint: ^7.27.0 eslint-config-prettier: ^8.3.0 - eslint-plugin-import: 2.23.2 + eslint-plugin-import: 2.23.3 eslint-plugin-jest: ^24.3.6 eslint-plugin-jest-formatting: ^3.0.0 eslint-plugin-jsx-a11y: ^6.4.1 @@ -3948,25 +3948,25 @@ __metadata: "@emotion/styled": ^11.3.0 "@headlessui/react": ^1.2.0 "@heroicons/react": ^1.0.1 - "@next/bundle-analyzer": ^10.2.2 - "@tailwindcss/typography": ^0.4.0 + "@next/bundle-analyzer": ^10.2.3 + "@tailwindcss/typography": ^0.4.1 "@testing-library/jest-dom": ^5.12.0 "@testing-library/react": ^11.2.7 "@testing-library/react-hooks": ^6.0.0 "@types/jest": ^26.0.23 - "@types/node": ^15.6.0 - "@types/react": ^17.0.6 + "@types/node": ^15.6.1 + "@types/react": ^17.0.7 "@types/react-dom": ^17.0.5 - "@typescript-eslint/eslint-plugin": ^4.24.0 - "@typescript-eslint/parser": ^4.24.0 + "@typescript-eslint/eslint-plugin": ^4.25.0 + "@typescript-eslint/parser": ^4.25.0 "@your-org/core-lib": "workspace:*" "@your-org/ui-lib": "workspace:*" autoprefixer: ^10.2.5 camelcase: ^6.2.0 cross-env: ^7.0.3 - eslint: ^7.26.0 + eslint: ^7.27.0 eslint-config-prettier: ^8.3.0 - eslint-plugin-import: 2.23.2 + eslint-plugin-import: 2.23.3 eslint-plugin-jest: ^24.3.6 eslint-plugin-jest-formatting: ^3.0.0 eslint-plugin-jsx-a11y: ^6.4.1 @@ -3976,7 +3976,7 @@ __metadata: jest: ^26.6.3 jest-circus: ^26.6.3 jest-cli: ^26.6.3 - next: ^10.2.2 + next: ^10.2.3 next-secure-headers: ^2.2.0 next-seo: ^4.24.0 next-transpile-modules: ^7.2.0 @@ -3988,7 +3988,7 @@ __metadata: rimraf: ^3.0.2 shell-quote: ^1.7.2 symlink-dir: ^5.0.1 - sync-directory: ^2.2.20 + sync-directory: ^2.2.22 tailwindcss: ^2.1.2 ts-jest: ^26.5.6 typescript: ^4.2.4 @@ -4916,16 +4916,6 @@ __metadata: languageName: node linkType: hard -"contains-path@npm:^1.0.0": - version: 1.0.0 - resolution: "contains-path@npm:1.0.0" - dependencies: - normalize-path: ^2.1.1 - path-starts-with: ^1.0.0 - checksum: 18c878d65f76039c317cca44c8b480b82e7a6a5eec3084deb3232e54967bba71d58c36e427809c1ae56ade54624aa904cf89d4a678513db3e2567be3f9a235b3 - languageName: node - linkType: hard - "conventional-changelog-angular@npm:^5.0.11": version: 5.0.12 resolution: "conventional-changelog-angular@npm:5.0.12" @@ -6122,13 +6112,12 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-import@npm:2.23.2": - version: 2.23.2 - resolution: "eslint-plugin-import@npm:2.23.2" +"eslint-plugin-import@npm:2.23.3": + version: 2.23.3 + resolution: "eslint-plugin-import@npm:2.23.3" dependencies: array-includes: ^3.1.3 array.prototype.flat: ^1.2.4 - contains-path: ^1.0.0 debug: ^2.6.9 doctrine: ^2.1.0 eslint-import-resolver-node: ^0.3.4 @@ -6144,7 +6133,7 @@ __metadata: tsconfig-paths: ^3.9.0 peerDependencies: eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 - checksum: cd8f119266cbf971ac8b90875acd3c971c39744bafbeb1a071a17c0b5042277d46f736ea38d625aa04501909ba835d154926bbb9ba47a5403deac601d9ae3dca + checksum: ed77042d30cba1d831036533912861b12c6a5291dc05f3cbc8bae0614922dafc5d2246256c2b5090327cf0fc8805b93892ee1c0c355b6f1b87ed9183b4038348 languageName: node linkType: hard @@ -6272,9 +6261,9 @@ __metadata: languageName: node linkType: hard -"eslint@npm:^7.26.0": - version: 7.26.0 - resolution: "eslint@npm:7.26.0" +"eslint@npm:^7.27.0": + version: 7.27.0 + resolution: "eslint@npm:7.27.0" dependencies: "@babel/code-frame": 7.12.11 "@eslint/eslintrc": ^0.4.1 @@ -6284,12 +6273,14 @@ __metadata: debug: ^4.0.1 doctrine: ^3.0.0 enquirer: ^2.3.5 + escape-string-regexp: ^4.0.0 eslint-scope: ^5.1.1 eslint-utils: ^2.1.0 eslint-visitor-keys: ^2.0.0 espree: ^7.3.1 esquery: ^1.4.0 esutils: ^2.0.2 + fast-deep-equal: ^3.1.3 file-entry-cache: ^6.0.1 functional-red-black-tree: ^1.0.1 glob-parent: ^5.0.0 @@ -6301,7 +6292,7 @@ __metadata: js-yaml: ^3.13.1 json-stable-stringify-without-jsonify: ^1.0.1 levn: ^0.4.1 - lodash: ^4.17.21 + lodash.merge: ^4.6.2 minimatch: ^3.0.4 natural-compare: ^1.4.0 optionator: ^0.9.1 @@ -6310,12 +6301,12 @@ __metadata: semver: ^7.2.1 strip-ansi: ^6.0.0 strip-json-comments: ^3.1.0 - table: ^6.0.4 + table: ^6.0.9 text-table: ^0.2.0 v8-compile-cache: ^2.0.3 bin: eslint: bin/eslint.js - checksum: 6178eeb1bf1161471fd5ecb12b1182f26313482371fb067659cc44095791e80e1e0eba22e543929935f559b2f8066ec128311b35b068bcba10cfada78a1ce91d + checksum: f45eb40e7758fdff0eaeb3d5c0f185c269b644722dfc926dd5bbfa5a47a183f64fa517a6031db1a3212251de8af2015bb684a1b2cc293bd0b9d5eadc373bbd59 languageName: node linkType: hard @@ -6613,7 +6604,7 @@ __metadata: languageName: node linkType: hard -"fast-deep-equal@npm:^3.1.1": +"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": version: 3.1.3 resolution: "fast-deep-equal@npm:3.1.3" checksum: e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d @@ -10257,16 +10248,16 @@ __metadata: languageName: node linkType: hard -"next@npm:^10.2.2": - version: 10.2.2 - resolution: "next@npm:10.2.2" +"next@npm:^10.2.3": + version: 10.2.3 + resolution: "next@npm:10.2.3" dependencies: "@babel/runtime": 7.12.5 "@hapi/accept": 5.0.2 - "@next/env": 10.2.2 - "@next/polyfill-module": 10.2.2 - "@next/react-dev-overlay": 10.2.2 - "@next/react-refresh-utils": 10.2.2 + "@next/env": 10.2.3 + "@next/polyfill-module": 10.2.3 + "@next/react-dev-overlay": 10.2.3 + "@next/react-refresh-utils": 10.2.3 "@opentelemetry/api": 0.14.0 assert: 2.0.0 ast-types: 0.13.2 @@ -10326,7 +10317,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: c1d8f003f5072d6c41d6bde83b29be494960e0bb57d02c63d8961395d4b3771ae1626205804556752a9fb52cb031c31550631d117777d342705c58bba27a0da6 + checksum: 715c83439fda55e64dcb39d0ac9cf2fe11337fd07227c257c957fc28b11b0a6036f17fce8b1a71d78d3eef0d5ec383721449169c60e3826ccd378a2b46a7744b languageName: node linkType: hard @@ -11289,15 +11280,6 @@ __metadata: languageName: node linkType: hard -"path-starts-with@npm:^1.0.0": - version: 1.0.0 - resolution: "path-starts-with@npm:1.0.0" - dependencies: - normalize-path: ^2.1.1 - checksum: 15b120d3f7b58de29b1b010675392b368ab67003a8a23b4f4649447f4d1d98a6db2eb7aec19f49042b8ddcba77f808f0babbca36ff3f0c581c870109d52a7fa2 - languageName: node - linkType: hard - "path-type@npm:^3.0.0": version: 3.0.0 resolution: "path-type@npm:3.0.0" @@ -13052,14 +13034,14 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard -"sass@npm:^1.33.0": - version: 1.33.0 - resolution: "sass@npm:1.33.0" +"sass@npm:^1.34.0": + version: 1.34.0 + resolution: "sass@npm:1.34.0" dependencies: chokidar: ">=3.0.0 <4.0.0" bin: sass: sass.js - checksum: 8987112d414977c74c3894e6dbb230fad7eeb7cb1bc0477de900066af91c58bc5ae09dc8f024889c4fd3a706c0a385cd624f822f753cdf076c66e75e8079302f + checksum: 4d3f44669168588859020c4a7f264954c5d4d9ee93707cad9c0bb3a7350ed41eb76e6c51230fd952f4db7da09f0d18a96efaae3120db125a52dbd7b199fb786c languageName: node linkType: hard @@ -14088,9 +14070,9 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard -"sync-directory@npm:^2.2.20": - version: 2.2.20 - resolution: "sync-directory@npm:2.2.20" +"sync-directory@npm:^2.2.22": + version: 2.2.22 + resolution: "sync-directory@npm:2.2.22" dependencies: chokidar: ^3.3.1 commander: ^6.2.0 @@ -14099,11 +14081,11 @@ resolve@^2.0.0-next.3: readdir-enhanced: ^1.5.2 bin: syncdir: cmd.js - checksum: 835556f98d85c80f392e4b14350c433b20efa74c467b570875772321524ae186f7299a6455976d13456f58b160e39d8f99836fc54050cd563c34cc786ab3a1c9 + checksum: 279278d0c6a8abc2771767a288611b5e18838f70fc83176b1067f421a7ec00745a7423cace5171797f492634dc3b578f4e4dd12bdd97789979a39b8a3af0db8c languageName: node linkType: hard -"table@npm:^6.0.4": +"table@npm:^6.0.9": version: 6.7.1 resolution: "table@npm:6.7.1" dependencies: @@ -15064,26 +15046,26 @@ resolve@^2.0.0-next.3: "@emotion/styled": ^11.3.0 "@headlessui/react": ^1.2.0 "@heroicons/react": ^1.0.1 - "@next/bundle-analyzer": ^10.2.2 + "@next/bundle-analyzer": ^10.2.3 "@prisma/client": ^2.23.0 - "@tailwindcss/typography": ^0.4.0 + "@tailwindcss/typography": ^0.4.1 "@testing-library/jest-dom": ^5.12.0 "@testing-library/react": ^11.2.7 "@testing-library/react-hooks": ^6.0.0 "@types/jest": ^26.0.23 - "@types/node": ^15.6.0 - "@types/react": ^17.0.6 + "@types/node": ^15.6.1 + "@types/react": ^17.0.7 "@types/react-dom": ^17.0.5 - "@typescript-eslint/eslint-plugin": ^4.24.0 - "@typescript-eslint/parser": ^4.24.0 + "@typescript-eslint/eslint-plugin": ^4.25.0 + "@typescript-eslint/parser": ^4.25.0 "@your-org/core-lib": "workspace:*" "@your-org/ui-lib": "workspace:*" autoprefixer: ^10.2.5 camelcase: ^6.2.0 cross-env: ^7.0.3 - eslint: ^7.26.0 + eslint: ^7.27.0 eslint-config-prettier: ^8.3.0 - eslint-plugin-import: 2.23.2 + eslint-plugin-import: 2.23.3 eslint-plugin-jest: ^24.3.6 eslint-plugin-jest-formatting: ^3.0.0 eslint-plugin-jsx-a11y: ^6.4.1 @@ -15093,7 +15075,7 @@ resolve@^2.0.0-next.3: jest: ^26.6.3 jest-circus: ^26.6.3 jest-cli: ^26.6.3 - next: ^10.2.2 + next: ^10.2.3 next-secure-headers: ^2.2.0 next-seo: ^4.24.0 next-transpile-modules: ^7.2.0 @@ -15104,10 +15086,10 @@ resolve@^2.0.0-next.3: react: ^17.0.2 react-dom: ^17.0.2 rimraf: ^3.0.2 - sass: ^1.33.0 + sass: ^1.34.0 shell-quote: ^1.7.2 symlink-dir: ^5.0.1 - sync-directory: ^2.2.20 + sync-directory: ^2.2.22 tailwindcss: ^2.1.2 ts-jest: ^26.5.6 typescript: ^4.2.4