From c00d39f9291af3cfc0a35daaada7ca60a8fd25e8 Mon Sep 17 00:00:00 2001 From: Himself65 Date: Sun, 19 Mar 2023 03:50:31 -0500 Subject: [PATCH] chore: bump version (#1609) --- apps/desktop/package.json | 2 +- apps/web/package.json | 6 +- apps/web/src/server.mjs | 33 +++++ packages/env/package.json | 2 +- packages/i18n/package.json | 2 +- pnpm-lock.yaml | 283 ++++++++----------------------------- 6 files changed, 98 insertions(+), 230 deletions(-) create mode 100644 apps/web/src/server.mjs diff --git a/apps/desktop/package.json b/apps/desktop/package.json index c311719e97..69a27fc272 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -23,7 +23,7 @@ "@tauri-apps/api": "^1.2.0", "json-schema-to-typescript": "^11.0.5", "lib0": "^0.2.68", - "next": "13.1.0", + "next": "=13.2.3", "react": "^18.2.0", "react-dom": "^18.2.0", "y-protocols": "^1.0.5", diff --git a/apps/web/package.json b/apps/web/package.json index 90d497e71a..1b0d446643 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -2,10 +2,10 @@ "name": "@affine/app", "private": true, "scripts": { - "dev": "next dev -p 8080", + "dev": "node src/server.mjs", "build": "next build", "export": "next export", - "start": "next start", + "start": "NODE_ENV=production node src/server.mjs", "lint": "next lint" }, "dependencies": { @@ -52,7 +52,7 @@ "dotenv": "^16.0.3", "eslint": "^8.36.0", "eslint-config-next": "^13.2.3", - "next": "=13.2.2", + "next": "=13.2.3", "next-debug-local": "^0.1.5", "next-router-mock": "^0.9.2", "raw-loader": "^4.0.2", diff --git a/apps/web/src/server.mjs b/apps/web/src/server.mjs new file mode 100644 index 0000000000..b19f540212 --- /dev/null +++ b/apps/web/src/server.mjs @@ -0,0 +1,33 @@ +// server.js +import { createServer } from 'http'; +import next from 'next'; +import { parse } from 'url'; + +const dev = process.env.NODE_ENV !== 'production'; +const hostname = 'localhost'; +const port = 8080; +// when using middleware `hostname` and `port` must be provided below +const app = next({ dev, hostname, port }); +const handle = app.getRequestHandler(); + +app.prepare().then(() => { + createServer(async (req, res) => { + try { + // Be sure to pass `true` as the second argument to `url.parse`. + // This tells it to parse the query portion of the URL. + const parsedUrl = parse(req.url, true); + await handle(req, res, parsedUrl); + } catch (err) { + console.error('Error occurred handling', req.url, err); + res.statusCode = 500; + res.end('internal server error'); + } + }) + .once('error', err => { + console.error(err); + process.exit(1); + }) + .listen(port, () => { + console.log(`> Ready on http://${hostname}:${port}`); + }); +}); diff --git a/packages/env/package.json b/packages/env/package.json index 54f7f12953..bec0f20666 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -3,7 +3,7 @@ "private": true, "main": "./src/index.ts", "devDependencies": { - "next": "=13.2.2", + "next": "=13.2.3", "react": "^18.2.0", "react-dom": "^18.2.0", "zod": "^3.21.3" diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 0e464b21d2..c71cccc987 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -34,7 +34,7 @@ "devDependencies": { "@types/node": "^18.15.3", "@types/prettier": "^2.7.2", - "next": "=13.2.2", + "next": "=13.2.3", "prettier": "^2.8.4", "react-dom": "^18.2.0", "ts-node": "^10.9.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 11aeb18cdb..3f086d7fca 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -98,7 +98,7 @@ importers: json-schema-to-typescript: ^11.0.5 lib0: ^0.2.68 lit: ^2.6.1 - next: 13.1.0 + next: '=13.2.3' prettier: 2.8.4 react: ^18.2.0 react-dom: ^18.2.0 @@ -119,7 +119,7 @@ importers: '@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu json-schema-to-typescript: 11.0.5 lib0: 0.2.68 - next: 13.1.0_biqbaboplfbrettd7655fr4n2y + next: 13.2.3_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 y-protocols: 1.0.5 @@ -172,7 +172,7 @@ importers: jotai-devtools: ^0.2.0 lit: ^2.6.1 lottie-web: ^5.10.2 - next: '=13.2.2' + next: '=13.2.3' next-debug-local: ^0.1.5 next-router-mock: ^0.9.2 next-themes: ^0.2.1 @@ -212,7 +212,7 @@ importers: jotai-devtools: 0.2.0_tfg3pgykuuhpvkcrwis64xs5oq lit: 2.6.1 lottie-web: 5.10.2 - next-themes: 0.2.1_yinf3kx724a5qkfsgvpslo2rma + next-themes: 0.2.1_nvzgbose6yf6w7ijjprgspqefi react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-is: 18.2.0 @@ -232,9 +232,9 @@ importers: dotenv: 16.0.3 eslint: 8.36.0 eslint-config-next: 13.2.4_j4766f7ecgqbon3u7zlxn5zszu - next: 13.2.2_biqbaboplfbrettd7655fr4n2y + next: 13.2.3_biqbaboplfbrettd7655fr4n2y next-debug-local: 0.1.5 - next-router-mock: 0.9.2_next@13.2.2+react@18.2.0 + next-router-mock: 0.9.2_next@13.2.3+react@18.2.0 raw-loader: 4.0.2_webpack@5.76.2 redux: 4.2.1 swc-plugin-coverage-instrument: 0.0.14 @@ -374,7 +374,7 @@ importers: specifiers: '@blocksuite/global': 0.5.0-20230317014705-a881b9c lit: ^2.6.1 - next: '=13.2.2' + next: '=13.2.3' react: ^18.2.0 react-dom: ^18.2.0 zod: ^3.21.3 @@ -382,7 +382,7 @@ importers: '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 lit: 2.6.1 devDependencies: - next: 13.2.2_biqbaboplfbrettd7655fr4n2y + next: 13.2.3_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 zod: 3.21.4 @@ -393,7 +393,7 @@ importers: '@types/node': ^18.15.3 '@types/prettier': ^2.7.2 i18next: ^22.4.11 - next: '=13.2.2' + next: '=13.2.3' prettier: ^2.8.4 react: ^18.2.0 react-dom: ^18.2.0 @@ -408,7 +408,7 @@ importers: devDependencies: '@types/node': 18.15.3 '@types/prettier': 2.7.2 - next: 13.2.2_biqbaboplfbrettd7655fr4n2y + next: 13.2.3_biqbaboplfbrettd7655fr4n2y prettier: 2.8.4 react-dom: 18.2.0_react@18.2.0 ts-node: 10.9.1_sxidjv3cojnrggmso45tj7hldi @@ -3666,12 +3666,8 @@ packages: tar-fs: 2.1.1 dev: true - /@next/env/13.1.0: - resolution: {integrity: sha512-6iNixFzCndH+Bl4FetQzOMjxCJqg8fs0LAlZviig1K6mIjOWH2m2oPcHcOg1Ta5VCe7Bx5KG1Hs+NrWDUkBt9A==} - dev: false - - /@next/env/13.2.2: - resolution: {integrity: sha512-sBcFEJS8j2cNQemYy07TKUd8lSWj3/mzFA4GCTr/4T4LfYiw5Ep+PZ06AuFdR3z+jIZt9YqaXwUYi1J4p4yABQ==} + /@next/env/13.2.3: + resolution: {integrity: sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow==} /@next/eslint-plugin-next/13.2.4: resolution: {integrity: sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==} @@ -3679,221 +3675,104 @@ packages: glob: 7.1.7 dev: true - /@next/swc-android-arm-eabi/13.1.0: - resolution: {integrity: sha512-ANBZZRjZBV+Sii11ZVxbxSvfIi6dZwu4w+XnJBDmz+0/wtAigpjYWyMkuWZ/RCD7INdusOlU4EgJ99WzWGIDjA==} - engines: {node: '>= 10'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: false - optional: true - - /@next/swc-android-arm-eabi/13.2.2: - resolution: {integrity: sha512-JHTnsNTl9gDQkWqggJFj6rQHK2+9lIMGolOPihfZBQAE48amVsGkYyFHbiuWnhwnYX99fCFWomARDwOtLAhzdQ==} + /@next/swc-android-arm-eabi/13.2.3: + resolution: {integrity: sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw==} engines: {node: '>= 10'} cpu: [arm] os: [android] requiresBuild: true optional: true - /@next/swc-android-arm64/13.1.0: - resolution: {integrity: sha512-nPwbkS3aZjCIe61wztgjXjIeylijOP8uGtDGjjJVUF3B/5GLVx3ngZu6tjPTMEgaLM0u//HuGK+aZolWUQWE4g==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: false - optional: true - - /@next/swc-android-arm64/13.2.2: - resolution: {integrity: sha512-j3zfjrojWuejU7bjucwBFviN9hQkQ1HqRVYMp8PDX82LXMc2pV4uZ3e9jQ8qk3OWsA1m+luaBK8o46NvS/Tetg==} + /@next/swc-android-arm64/13.2.3: + resolution: {integrity: sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w==} engines: {node: '>= 10'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /@next/swc-darwin-arm64/13.1.0: - resolution: {integrity: sha512-0hUydiAW18jK2uGPnZRdnRQtdB/3ZoPo84A6zH7MJHxAWw9lzVsv3kMg9kgVBBlrivzqdNN8rdgA+eYNxzXU9w==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@next/swc-darwin-arm64/13.2.2: - resolution: {integrity: sha512-X66dKAq6IBmkirnsWyvncJ9i3kWkE2WrRbXGoFoEPNoyjgtV2qyLyk4ET9JIS0TJ2u01qODML6j4pKeqK8rNLA==} + /@next/swc-darwin-arm64/13.2.3: + resolution: {integrity: sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@next/swc-darwin-x64/13.1.0: - resolution: {integrity: sha512-3S3iQqJIysklj0Q9gnanuYMzF8H9p+fUVhvSHxVVLcKH4HsE8EGddNkXsaOyznL1kC6vGKw7h6uz1ojaXEafCA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@next/swc-darwin-x64/13.2.2: - resolution: {integrity: sha512-jsJKzVLlCNrG/Ot9Owv8QWUymAyS+Hcf/KQsXOYtL6PgvGqBMJ931SdaBpLOuyRD+sozTIRiAPCDwVgF/62PBQ==} + /@next/swc-darwin-x64/13.2.3: + resolution: {integrity: sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@next/swc-freebsd-x64/13.1.0: - resolution: {integrity: sha512-wAgzwm/em48GIuWq3OYr0BpncMy7c+UA3hsyX+xKh/vb/sOIpQly7JTa+GNdk17s7kprhMfsgzPG3da36NLpkA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: false - optional: true - - /@next/swc-freebsd-x64/13.2.2: - resolution: {integrity: sha512-oToMAjhdGWSgSOimKJ9GwPxOqoBIbbVUKoFGP5Imy5UGbbsnyV2jSLGhoi2/dH1Ko5X5d1R1la/X05xNB/p6ag==} + /@next/swc-freebsd-x64/13.2.3: + resolution: {integrity: sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /@next/swc-linux-arm-gnueabihf/13.1.0: - resolution: {integrity: sha512-Cr2hzL7ad+4nj9KrR1Cz1RDcsWa61X6I7gc6PToRYIY4gL480Sijq19xo7dlXQPnr1viVzbNiNnNXZASHv7uvw==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-arm-gnueabihf/13.2.2: - resolution: {integrity: sha512-DSgXP2kkLt+oM3fRWaa2xPAUmtTnoa+GBfV5Czbgv4htY1BKClobp7Bj909TZUswvxXJtXiW8GrJp2To5lQfmw==} + /@next/swc-linux-arm-gnueabihf/13.2.3: + resolution: {integrity: sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA==} engines: {node: '>= 10'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-arm64-gnu/13.1.0: - resolution: {integrity: sha512-EjCIKfeZB9h72evL2yGNwBvE5Im96Zn7o2zxImlvCiUYb/xXDqn4hzhck035BSP3g3sGDLfijFTE1wKRyXIk4w==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-arm64-gnu/13.2.2: - resolution: {integrity: sha512-HR1Nf7kz5NmijCiArJTz4bjJlbWyPA3JQ3SbxnPXDMPUkECBG1p0z6y2N2+oqNouMyOriNR6TSEgh7F2tASdZg==} + /@next/swc-linux-arm64-gnu/13.2.3: + resolution: {integrity: sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-arm64-musl/13.1.0: - resolution: {integrity: sha512-WAsZtCtPXlz/7/bnW9ryw856xEun+c6xSwZwbcvrMxtcSiW3z0LD91Nsj3AkexsjRtBjeEpNeVtDExqF2VKKSA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-arm64-musl/13.2.2: - resolution: {integrity: sha512-hDf08/yPZisKQ19lMHkVuQUmipmSq9QPzFmNDcV7e4QazTbIRwCC8J605EHedg+RGHS78CUwVhGQoQ2mbQ5y3w==} + /@next/swc-linux-arm64-musl/13.2.3: + resolution: {integrity: sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-gnu/13.1.0: - resolution: {integrity: sha512-Tjd5gieI3X9vPce5yF+GsQxOl0jwUkyOrTR1g5PQr+bT/9Qos/yPL48H1L5ayEp0hxgLVPW7skGal7lVnAoVEQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-x64-gnu/13.2.2: - resolution: {integrity: sha512-9QeTU1YVhQXoVUOBXErJoExZR3XTovplMCTwB+RAtHu3oUGGs4KQFY8MoFUOmMA7CAJnKS+h1MD1T9/HDpS9PQ==} + /@next/swc-linux-x64-gnu/13.2.3: + resolution: {integrity: sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-musl/13.1.0: - resolution: {integrity: sha512-H9UMEQv40e9pkgdX4mCms0dDf2dimmZ6WXhDTWF/yIh9icgcsHaP73BJ9IFlgvh80wLiUgWZ3LAX4vXnXzidmg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-x64-musl/13.2.2: - resolution: {integrity: sha512-SvyejahQLY79YJFXU27AcoDbmRqdK08t7HAf5LmocLdR5fxIneg7Oim/pwcuS/w8pYqDSAiCiMO0AAxSfO5jZQ==} + /@next/swc-linux-x64-musl/13.2.3: + resolution: {integrity: sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-win32-arm64-msvc/13.1.0: - resolution: {integrity: sha512-LFFIKjW/cPl4wvG8HF/6oYPJZ+Jy32G3FUflC8UW1Od6W9yOSEvadhk9fMyDZN4cgsNOcVc3uVSMpcuuCpbDGw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@next/swc-win32-arm64-msvc/13.2.2: - resolution: {integrity: sha512-Av46kUBp1qtJdk/HrIHZMIARE+jcMSJLHcrs/MkbHR1p4iEXf3JkZRrdQDUKZaz/VHDYc7Qw+vUv7zmgPZJbmw==} + /@next/swc-win32-arm64-msvc/13.2.3: + resolution: {integrity: sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@next/swc-win32-ia32-msvc/13.1.0: - resolution: {integrity: sha512-MBLaoHZSenMdxhB3Ww1VNEhjyPT3uLjzAi5Ygk48LLLbOGu5KxQolhINRrqGuJWqJRNWSJ9JSFBfJrZwQzrUew==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@next/swc-win32-ia32-msvc/13.2.2: - resolution: {integrity: sha512-6HvAJY7yYfU+Ast3GPM8O+BsLGAdhZV0qUwHerJo5+Yzzx0VXW+OZTJ9O6RU01HBiMiqdz7SF3Or4Vca6WZKkQ==} + /@next/swc-win32-ia32-msvc/13.2.3: + resolution: {integrity: sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@next/swc-win32-x64-msvc/13.1.0: - resolution: {integrity: sha512-fFTfIQvnmpbKoyh4v3ezlGqtERlgc2Sx8qJwPuYqoVi0V08wCx9wp2Iq1CINxP3UMHkEeNX7gYpDOd+9Cw9EiQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@next/swc-win32-x64-msvc/13.2.2: - resolution: {integrity: sha512-7oNoiepUMf43+/4kUdpeGGkEBd3bOQwzo4O+bq/jslHb1IrQ7b8ZF1ODQyrDd661um6q5D+0sOtyRZJpo8e1jQ==} + /@next/swc-win32-x64-msvc/13.2.3: + resolution: {integrity: sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -5033,7 +4912,7 @@ packages: /@storybook/csf-tools/7.0.0-rc.4: resolution: {integrity: sha512-swMulWdpSObtcfDo3flmry50oLAPbGLn0YBU+tJhhxerng5RVDy5MPG0A5ZKd6hD1jvyTA1pkhbwzCrklbNhSw==} dependencies: - '@babel/generator': 7.21.1 + '@babel/generator': 7.21.3 '@babel/parser': 7.21.3 '@babel/traverse': 7.21.3 '@babel/types': 7.21.3 @@ -11576,24 +11455,24 @@ packages: resolution: {integrity: sha512-KnJPlmPJ1ObNxz3suK89H14RqdiSqfZhyca+PnDA+bqSUjjUDvQJmIOQi6CV6dtJpx9isdJu8Pi4reoxm3wyGQ==} dev: true - /next-router-mock/0.9.2_next@13.2.2+react@18.2.0: + /next-router-mock/0.9.2_next@13.2.3+react@18.2.0: resolution: {integrity: sha512-rh6Mq1xhZ4Y0y9Z3seHZ04k4dAKnAyRcis7q3ZUF+Xp0uBeNqPC8Ydw5DldYncN3o1sYBqRyz25F/v/kfcg0/Q==} peerDependencies: next: '>=10.0.0' react: '>=17.0.0' dependencies: - next: 13.2.2_biqbaboplfbrettd7655fr4n2y + next: 13.2.3_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: true - /next-themes/0.2.1_yinf3kx724a5qkfsgvpslo2rma: + /next-themes/0.2.1_nvzgbose6yf6w7ijjprgspqefi: resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} peerDependencies: next: '*' react: '*' react-dom: '*' dependencies: - next: 13.2.2_biqbaboplfbrettd7655fr4n2y + next: 13.2.3_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false @@ -11602,52 +11481,8 @@ packages: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} dev: false - /next/13.1.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-lQMZH1V94L5IL/WaihQkTYabSY73aqgrkGPJB5uz+2O3ES4I3losV/maXLY7l7x5e+oNyE9N81upNQ8uRsR5/A==} - engines: {node: '>=14.6.0'} - hasBin: true - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^6.0.0 || ^7.0.0 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - dependencies: - '@next/env': 13.1.0 - '@swc/helpers': 0.4.14 - caniuse-lite: 1.0.30001458 - postcss: 8.4.14 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.1.1_react@18.2.0 - optionalDependencies: - '@next/swc-android-arm-eabi': 13.1.0 - '@next/swc-android-arm64': 13.1.0 - '@next/swc-darwin-arm64': 13.1.0 - '@next/swc-darwin-x64': 13.1.0 - '@next/swc-freebsd-x64': 13.1.0 - '@next/swc-linux-arm-gnueabihf': 13.1.0 - '@next/swc-linux-arm64-gnu': 13.1.0 - '@next/swc-linux-arm64-musl': 13.1.0 - '@next/swc-linux-x64-gnu': 13.1.0 - '@next/swc-linux-x64-musl': 13.1.0 - '@next/swc-win32-arm64-msvc': 13.1.0 - '@next/swc-win32-ia32-msvc': 13.1.0 - '@next/swc-win32-x64-msvc': 13.1.0 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - dev: false - - /next/13.2.2_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-dDKfGBqSxqmqx5WN9tDFg0uGUkD/LGUxR29tpe8AEmo2SwfbPWf04qyvDcKmpjt2fCzP4132BvFRZFlg+11kGw==} + /next/13.2.3_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w==} engines: {node: '>=14.6.0'} hasBin: true peerDependencies: @@ -11667,7 +11502,7 @@ packages: sass: optional: true dependencies: - '@next/env': 13.2.2 + '@next/env': 13.2.3 '@swc/helpers': 0.4.14 caniuse-lite: 1.0.30001458 postcss: 8.4.14 @@ -11675,19 +11510,19 @@ packages: react-dom: 18.2.0_react@18.2.0 styled-jsx: 5.1.1_react@18.2.0 optionalDependencies: - '@next/swc-android-arm-eabi': 13.2.2 - '@next/swc-android-arm64': 13.2.2 - '@next/swc-darwin-arm64': 13.2.2 - '@next/swc-darwin-x64': 13.2.2 - '@next/swc-freebsd-x64': 13.2.2 - '@next/swc-linux-arm-gnueabihf': 13.2.2 - '@next/swc-linux-arm64-gnu': 13.2.2 - '@next/swc-linux-arm64-musl': 13.2.2 - '@next/swc-linux-x64-gnu': 13.2.2 - '@next/swc-linux-x64-musl': 13.2.2 - '@next/swc-win32-arm64-msvc': 13.2.2 - '@next/swc-win32-ia32-msvc': 13.2.2 - '@next/swc-win32-x64-msvc': 13.2.2 + '@next/swc-android-arm-eabi': 13.2.3 + '@next/swc-android-arm64': 13.2.3 + '@next/swc-darwin-arm64': 13.2.3 + '@next/swc-darwin-x64': 13.2.3 + '@next/swc-freebsd-x64': 13.2.3 + '@next/swc-linux-arm-gnueabihf': 13.2.3 + '@next/swc-linux-arm64-gnu': 13.2.3 + '@next/swc-linux-arm64-musl': 13.2.3 + '@next/swc-linux-x64-gnu': 13.2.3 + '@next/swc-linux-x64-musl': 13.2.3 + '@next/swc-win32-arm64-msvc': 13.2.3 + '@next/swc-win32-ia32-msvc': 13.2.3 + '@next/swc-win32-x64-msvc': 13.2.3 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros