diff --git a/.cz.json b/.cz.json index b0bd3e9bc..a65f2837e 100644 --- a/.cz.json +++ b/.cz.json @@ -1,7 +1,7 @@ { "commitizen": { "name": "cz_conventional_commits", - "version": "2.1.1", + "version": "2.2.0", "tag_format": "$major.$minor.$patch$prerelease", "version_type": "semver", "bump_message": "release $current_version \u2192 $new_version" diff --git a/.github/workflows/build-deploy-back.yml b/.github/workflows/build-deploy-back.yml index d66df68ab..09fac9332 100644 --- a/.github/workflows/build-deploy-back.yml +++ b/.github/workflows/build-deploy-back.yml @@ -41,5 +41,5 @@ jobs: # uses: actions/checkout@v3 # with: # repository: dgrebb/dgrebb.com - # ref: ${{ secrets.DEPLOYMENT_BRANCH }} + # ref: ${{ github.ref }} # token: ${{ github.token }} \ No newline at end of file diff --git a/.github/workflows/build-deploy-front.yml b/.github/workflows/build-deploy-front.yml index 1540d76ed..7fb1315ad 100644 --- a/.github/workflows/build-deploy-front.yml +++ b/.github/workflows/build-deploy-front.yml @@ -1,11 +1,7 @@ name: Build & Deploy Frontend on: - workflow_dispatch: - repository_dispatch: - types: - - Frontend - - Strapi + workflow_dispatch jobs: front: @@ -13,43 +9,18 @@ jobs: runs-on: ubuntu-latest environment: - name: ${{ github.ref == 'refs/heads/main' && 'prd' || 'stg' }} + name: ${{ github.ref_name == 'main' && 'prd' || 'stg' }} steps: - - name: Add Masks - run: | - echo "::add-mask::${{ github.token }}" - echo "::add-mask::${{ secrets.PUBLIC_API_PATH_NAVIGATION }}" - echo "::add-mask::${{ secrets.PUBLIC_API_URL }}" - echo "::add-mask::${{ secrets.PUBLIC_API_PATH_HOME }}" - echo "::add-mask::${{ secrets.PUBLIC_API_PATH_FOOTER }}" - echo "::add-mask::${{ secrets.API_KEY }}" - echo "::add-mask::${{ secrets.PUBLIC_SENTRY_DSN }}" - echo "::add-mask::${{ secrets.PUBLIC_ENV }}" - echo "::add-mask::${{ secrets.AWS_ACCESS_KEY_ID }}" - echo "::add-mask::${{ secrets.AWS_SECRET_ACCESS_KEY }}" - echo "::add-mask::${{ secrets.AWS_REGION }}" - echo "::add-mask::${{ secrets.AWS_S3_BUCKET }}" - - name: Checkout uses: actions/checkout@v3 with: repository: dgrebb/dgrebb.com - ref: ${{ secrets.DEPLOYMENT_BRANCH }} + ref: ${{ github.ref }} token: ${{ github.token }} fetch-depth: 0 - - name: Extract Branch Name - shell: bash - run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT - id: extract_branch - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: "18.x" - - name: Set .env run: | touch front/.env @@ -58,11 +29,17 @@ jobs: echo PUBLIC_API_PATH_NAVIGATION='${{ secrets.PUBLIC_API_PATH_NAVIGATION }}' >> front/.env echo PUBLIC_API_PATH_HOME='${{ secrets.PUBLIC_API_PATH_HOME }}' >> front/.env echo PUBLIC_API_PATH_FOOTER='${{ secrets.PUBLIC_API_PATH_FOOTER }}' >> front/.env + echo PUBLIC_API_PATH_PRIVACY='${{ secrets.PUBLIC_API_PATH_PRIVACY }}' >> front/.env echo API_KEY=${{ secrets.API_KEY }} >> front/.env echo PUBLIC_SENTRY_DSN=${{ secrets.PUBLIC_SENTRY_DSN }} >> front/.env echo PUBLIC_ENV=${{ secrets.PUBLIC_ENV }} >> front/.env cat front/.env + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: "18.x" + - name: Build id: npm-build env: @@ -70,7 +47,7 @@ jobs: run: bash _ci/build.sh - name: Robots - if: ${{ steps.extract_branch.outputs.branch }} == 'main' + if: ${{ github.ref_name == 'main' }} run: | sed -i 's/^Disallow\: \/$/Allow\: \//' front/build/robots.txt diff --git a/.github/workflows/dispatch-build-deploy.yml b/.github/workflows/dispatch-build-deploy.yml index f569f4aab..014da7f7a 100644 --- a/.github/workflows/dispatch-build-deploy.yml +++ b/.github/workflows/dispatch-build-deploy.yml @@ -17,7 +17,7 @@ jobs: - uses: dorny/paths-filter@v2 id: changes with: - base: ${{ secrets.DEPLOYMENT_BRANCH }} + base: ${{ github.ref_name }} filters: | backend: - 'back/**' @@ -55,7 +55,7 @@ jobs: - name: Dispatch Frontend run: | - curl -X POST https://api.github.com/repos/dgrebb/dgrebb.com/dispatches \ - -H 'Accept: application/vnd.github.everest-preview+json' \ + curl -X POST https://api.github.com/repos/dgrebb/dgrebb.com/actions/workflows/${{ secrets.FRONTEND_WORKFLOW_ID }}/dispatches \ + -H 'Accept: application/vnd.github+json' \ -H 'Authorization: Bearer ${{ secrets.DISPATCH_TOKEN }}' \ - --data '{"event_type": "Frontend"}' + --data '{"ref": "${{ github.ref_name }}"}' diff --git a/CHANGELOG.md b/CHANGELOG.md index 93eb53963..3383dd191 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,96 @@ All notable changes to this project will be documented in this file. +## [2.2.0] - 2023-06-24 + +### 💡 Features + +- ***(front)*** Adds italic to h6 and sets text-base for h5/6 +- ***(front)*** Adds scrollbar behavior and style enhancements +- ***(front)*** Adds more mobile-first style enhancements +- ***(front)*** Adjustments to font-size, margin, and padding +- ***(front)*** Adjusts Code component scrollbar +- ***(front)*** Refactor file structure and import paths +- ***(front)*** Refactors ThemeToggle component +- ***(front)*** Adds global mobile styles +- ***(front)*** Adds mobile styles for and refactors Code component +- ***(front)*** Adds mobile styles for posts/privacy +- ***(front)*** Adds mobile styles for and refactors Image component +- ***(front)*** Updates flourish component styles +- ***(front)*** Moves body classes and adds mobile text size +- ***(front)*** Uses privacy updatedAt time for effective date +- ***(front)*** Moves and adjusts styles for code in posts +- ***(front)*** Adds syntax highlighter styles and loads based on theme +- ***(front)*** Adds Code component as a markdown renderer +- ***(front)*** Adds event listener to system color and toggles theme +- ***(front)*** Installs svelte-highlight +- ***(front)*** Refactors tailwind classes with @apply in css +- ***(front)*** Adds Flourish component and sets z-index for media elements +- ***(front)*** Deletes user.ip from Sentry log events +- ***(front)*** Adds privacy route, new (and updated) styles +- ***(strapi)*** Updates strapi to v4.11.2 +- ***(strapi)*** Installs and configures sentry for strapi +- ***(strapi)*** Adds privacy singleton and api +- ***(utils)*** Adds supporting sentry env vars to backend + +### 🐛 Bug Fixes + +- ***(front)*** Removes unused ThemeToggle vars in Header +- ***(front)*** Fixes @apply class error when importing css directly +- ***(front)*** Removes crypto and uuid from client logging +- ***(front)*** Fixes Link component for anchor, mailto, and tel variants +- ***(front)*** Fixes closing Sentry.init() bracket +- ***(front)*** Refactor beforeSend scrub conditionals +- ***(front)*** Uses theme colors for pre tag on privacy page +- ***(front)*** Refactors for and uses noscript styles +- ***(front)*** Installs, uses, and refactors for unplugin-icons and inanimate svgs +- ***(front)*** Adds error message to layout server + +### 📜 Documentation + +- ***(project)*** Updates privacy policy +- ***(project)*** Updates privacy policy +- ***(project)*** Updates privacy policy +- ***(project)*** Adds PRIVACY.md + +### 👷 Build + +- ***(back)*** Reinstalls @strapi/plugin-seo after flexbox PR merged +- ***(front)*** Removes unused crypto import +- ***(front)*** Removes server_name from sentry events +- ***(front)*** Adds exception for intentional link to 404 page +- ***(front)*** Bumps sentry to latest version +- ***(utils)*** Adds expose host to svelte-kit preview +- ***(utils)*** Adds PUBLIC_API_PATH_PRIVACY env var to setup script + +### 💚 Continuous Integration + +- ***(front)*** Updates dispatch workflow to use workflow id/endpoint +- ***(front)*** Adds privacy api endpoint to workflow +- ***(project)*** Double quotes github var in payload +- ***(project)*** Move testing steps out of github workflow file +- ***(project)*** Adds and updates test configuration for workflow_dispatch +- ***(project)*** Removes echo +- ***(project)*** Uses github.ref_name for contitional and also logs the ref_name for testing +- ***(project)*** Uses github.ref as environment conditional +- ***(project)*** Removes colon +- ***(project)*** Removes event types from workflow_dispatch +- ***(project)*** Sets local environment to "development" in sentry logging +- ***(project)*** Removes repository_dispatch while testing +- ***(project)*** Removes unused steps and adjusts order +- ***(project)*** Uses DEPLOYMENT_BRANCH instead of github.ref in robots step +- ***(utils)*** Uses workflow_dispatch in act script + +### 🪮 Styling + +- ***(front)*** Removes extra line +- ***(front)*** Formats markdown component +- ***(front)*** Touches up css refactor +- ***(front)*** Changes linkedin svg +- ***(front)*** Moves font classes +- ***(front)*** Refactors styles for privacy policy; makes footer link brighter +- ***(front)*** Self-closes span + ## [2.1.1] - 2023-06-19 ### 🐛 Bug Fixes diff --git a/PRIVACY.md b/PRIVACY.md new file mode 100644 index 000000000..b3aef453a --- /dev/null +++ b/PRIVACY.md @@ -0,0 +1,68 @@ +Welcome, dear visitor! We appreciate your presence here and would like to take a moment to acquaint you with our Privacy Policy. It's a document that sheds light on how we handle your personal information with utmost care when you use this website and its related services. + +By accessing or using this website, you're happily agreeing to the terms laid out in this Privacy Policy. However, if you don't find these terms amusing or to your liking, we kindly request that you refrain from using this website or providing any personal information. + +## Information We Collect + +1. **Personal Information**: Rest assured, we don't collect personal details apart from browser and system information. We've gone to great lengths to remove any personally identifiable information from our Analytics and Error Logging tools (more on those below). This includes visitors' IP addresses and even the fancy-sounding `server_name`, which refers to your computer's network name. + + 1. **[Plausible Analytics](https://plausible.io)** is our trusty sidekick for keeping track of pageviews and counting visitors. You might enjoy checking out the company's [delightful post about privacy policies](https://plausible.io/blog/privacy-policy-page#privacy-policy-examples), which inspired most of this document. For more specific details about Plausible's privacy practices, please see the [Third-Party Services](#third-party-services) section below. + + 2. **[Sentry.io](https://www.sentry.io)** comes to our rescue when it comes to capturing errors on both the client (browser) and server (500s, 400s, and 300s). Sentry helps diagnose problems with this site by capturing browser and system information. It even allows us to "playback" user interactions on the site, which is quite handy for figuring out broken code or user experience blunders. + + Now, here's the thing: Sentry, by default, logs IP addresses. But fear not! We scrub this data before it reaches the sentry.io services and servers. The JavaScript responsible for this scrubbing is cleverly hidden away from evident view on main dgrebb.com pages. However, you can spot it at the bottom of our static [404 page](/404). Go ahead, take a peek: + + ```javascript + beforeSend(event) { + if (event.user) { + delete event.user.ip; + } + if (event.server_name) { + delete event.server_name; + } + } + ``` + + Despite our diligent data scrubbing efforts, please note that Sentry's servers will log the requesting IP address when a client (that's your browser) loads JavaScript from their servers. For more details about Sentry's privacy practices, please refer to the [Third-Party Services](#third-party-services) section. + +2. **Usage Information**: We may also collect certain non-personally identifiable information ("Usage Information") automatically when you grace us with your presence at dgrebb.com. This includes your browser type, operating system, referring website, pages you visit, and the glorious timestamp of your visit. + +## Use of Cookies + +1. **No cookies here, and never will be!** If, by some freakish occurrence, you encounter a cookie on this site, please alert us immediately by sending an email to privacy [at] dgrebb.com. We shall take swift action! + +## How We Use Your Information + +1. **Personal Information**: Everything we collect remains anonymous and is anonymized before being sent to our dear friends, the third-party services like Plausible and Sentry. In simpler terms, we may know the type of browser and operating system you use to access dgrebb.com, but we're unable to trace those details back to a specific IP address, MAC address, email address, mailing address, or anything remotely identifying. + +2. **Usage Information**: We merrily review Usage Information to analyze trends, administer the website, track users' movements, and gather anonymous geo-location information for aggregate use. This information helps us improve the website, monitor its performance, and enhance the overall user experience. We believe in giving our users an experience as smooth as freshly churned butter. + +## Third-Party Services + +1. **Plausible Analytics**: We rely on Plausible Analytics, a privacy-focused web analytics tool that collects and analyzes Usage Information. Plausible Analytics doesn't use cookies and doesn't collect any personally identifiable information. The information they gather is stored on their own servers, and it's all subject to their privacy policy. To learn more about Plausible Analytics' data practices, we encourage you to visit [their website](https://plausible.io) and dive into their [privacy policy](https://plausible.io/privacy). + +2. **Sentry.io**: Ah, Sentry.io, our trusted ally in identifying and fixing errors while improving our website's performance. Sentry.io may collect certain technical information, including your IP address, browser details, and device information. The information they gather is stored on their servers, which they guard with great diligence. To learn more about Sentry.io's data practices, please visit [their website](https://sentry.io/) and cozy up with their [privacy policy](https://sentry.io/privacy/). + +If you're feeling adventurous, you can find Sentry's entire collection of legal documents [on their site](https://sentry.io/legal/). + +## Data Security + +We take reasonable measures to protect the personal information we collect. However, let's be honest, no security measures are perfect or impenetrable. We can't promise you an impenetrable fortress, but we assure you that we're doing our best to keep your personal information safe and sound. + +## Disclosure of Information + +There may come a time when we need to disclose your Personal Information or Usage Information to third parties. This would only occur if required by law or when we firmly believe that such disclosure is necessary to protect our rights, comply with a judicial proceeding, court order, or legal process served upon us, or investigate suspected or actual fraudulent or illegal activities. We hope that day never comes, but it's good to be prepared. + +## Children's Privacy + +Please note that our website is not intended for children under the age of 13. We don't knowingly collect personal information from children under the age of 13. If you're a parent or guardian and believe that we may have inadvertently collected personal information from your child, please contact us at privacy [at] dgrebb.com. We'll promptly remove any such information, as we certainly don't want to get in trouble with the little ones. + +## Changes to this Privacy Policy + +We reserve the right to update or modify this Privacy Policy at any time. The most recent version will be posted on this page, with the effective date proudly displayed at the top. By continuing to use this website after any changes to the Privacy Policy, you're embracing the updated terms with open arms. + +## Contact + +If you have any questions, concerns, or requests regarding this Privacy Policy, don't hesitate to reach out to us at privacy [at] dgrebb.com. We're here to listen, assist, and make you smile. + +By using this website, you acknowledge that you've read and understood this Privacy Policy, and you wholeheartedly consent to the collection, use, and disclosure of your information as described herein. Now go forth and explore the wonders of dgrebb.com! \ No newline at end of file diff --git a/_ci/dispatches/dev.workflow_dispatch.json b/_ci/dispatches/dev.workflow_dispatch.json new file mode 100644 index 000000000..5a24ba1c6 --- /dev/null +++ b/_ci/dispatches/dev.workflow_dispatch.json @@ -0,0 +1,6 @@ +{ + "_note": "This is not an example or properly formatted request for the GitHub API.", + "__note": "The API takes 'ref': 'develop' instead of the fully qualified ref.", + "ref": "/refs/heads/develop", + "ref_name": "develop" +} \ No newline at end of file diff --git a/_ci/dispatches/main.workflow_dispatch.json b/_ci/dispatches/main.workflow_dispatch.json new file mode 100644 index 000000000..0d104ec61 --- /dev/null +++ b/_ci/dispatches/main.workflow_dispatch.json @@ -0,0 +1,6 @@ +{ + "_note": "This is not an example or properly formatted request for the GitHub API.", + "__note": "The API takes 'ref': 'main' instead of the fully qualified ref.", + "ref": "/refs/heads/main", + "ref_name": "main" +} \ No newline at end of file diff --git a/_ci/workflow_dispatch-tests.yml b/_ci/workflow_dispatch-tests.yml new file mode 100644 index 000000000..445e3b436 --- /dev/null +++ b/_ci/workflow_dispatch-tests.yml @@ -0,0 +1,36 @@ +name: Build & Deploy Tests + +on: + workflow_dispatch + +jobs: + front: + name: Frontend Test + runs-on: ubuntu-latest + + environment: + name: ${{ github.ref_name == 'main' && 'prd' || 'stg' }} + + steps: + + - name: Branch Information + run: | + printf "\033[0;34mgithub.ref:\033[0m ${{ github.ref }}\n" + printf "\033[0;34mgithub.base_ref:\033[0m ${{ github.base_ref }}\n" + printf "\033[0;34mgithub.ref_name:\033[0m ${{ github.ref_name }}\n" + printf "\033[0;34mgithub.sha:\033[0m ${{ github.sha }}\n" + printf "\033[0;34mGITHUB_REF:\033[0m $GITHUB_REF\n" + printf "\033[0;34mGITHUB_REF_NAME:\033[0m $GITHUB_REF_NAME\n" + printf "\033[0;34mGITHUB_SHA:\033[0m $GITHUB_SHA\n" + + - name: Checkout + uses: actions/checkout@v3 + with: + repository: dgrebb/dgrebb.com + ref: ${{ github.ref }} + token: ${{ github.token }} + fetch-depth: 0 + + - name: Inspect Checkout + run: | + printf $(git log -n 5) \ No newline at end of file diff --git a/_utils/_scripts/act.sh b/_utils/_scripts/act.sh index 6140ab13c..3c04f23fd 100755 --- a/_utils/_scripts/act.sh +++ b/_utils/_scripts/act.sh @@ -1,6 +1,8 @@ #!/bin/bash source $directory/_scripts/functions.sh +if [[ $1 != p ]]; then EVENT_JSON="dev"; else EVENT_JSON="main"; fi + if [ $2 == "f" ]; then action="-j front" elif [ $2 == "b" ]; then @@ -8,15 +10,16 @@ elif [ $2 == "b" ]; then elif [ $2 == "p" ]; then action="push" elif [ $2 == "d" ]; then - action="-j dispatch" + action="workflow_dispatch" else printDgErr "Argument needed to specify job." fi -act --pull=false -P ubuntu-latest=github-actions-test:latest \ +act --pull=false \ + -P ubuntu-latest=github-actions-test:latest \ + -e $directory/../_ci/dispatches/${EVENT_JSON}.workflow_dispatch.json \ -s GITHUB_TOKEN=$(pass dg/github/pat) \ - -s DEPLOYMENT_BRANCH=develop \ - -s PUBLIC_ENV=staging \ + -s PUBLIC_ENV=development \ -s PUBLIC_MEDIA_URL="" \ -s PUBLIC_API_PATH_NAVIGATION="$(pass dg/cms/api/paths/navigation)" \ -s PUBLIC_API_PATH_HOME="$(pass dg/cms/api/paths/home)" \ diff --git a/_utils/_scripts/front.sh b/_utils/_scripts/front.sh index 4757112f6..78982a28d 100644 --- a/_utils/_scripts/front.sh +++ b/_utils/_scripts/front.sh @@ -35,7 +35,7 @@ while test "$1" != --; do break ;; p | preview) - cdfront && npm run preview + cdfront && npm run preview -- --host break ;; ?) diff --git a/_utils/_scripts/setBackEnv.sh b/_utils/_scripts/setBackEnv.sh index b96f897a9..914fb063d 100755 --- a/_utils/_scripts/setBackEnv.sh +++ b/_utils/_scripts/setBackEnv.sh @@ -10,6 +10,15 @@ backEnv=$directory/../back/.env >$backEnv +if [ $1 == "ld" ] || [ $1 == "l" ] || [ $1 == "ls" ]; then + ENV="development" +elif [ $1 == "s" ]; then + ENV="staging" +else + ENV="production" +fi + +echo "NODE_ENV=${ENV}" >>$backEnv echo "PORT=1337" >>$backEnv echo "APP_KEYS=$(pass dg/cms/appkeys)" >>$backEnv echo "API_TOKEN_SALT=$(pass dg/cms/apitokensalt)" >>$backEnv @@ -22,31 +31,29 @@ echo "AWS_REGION=$(pass dg/aws/region)" >>$backEnv echo "AWS_S3_BUCKET=$(pass dg/cms/s/bucket)" >>$backEnv echo "CDN_BASE_URL=$(pass dg/cms/stg-cdnbaseurl)" >>$backEnv echo "DATABASE_PASSWORD=$(pass dg/cms/db/password)" >>$backEnv +echo "PUBLIC_ENV=${ENV}" >>$backEnv +echo "PUBLIC_SENTRY_DSN=$(pass dg/www/logs/sentrydsn)" >>$backEnv while test "$1" != --; do case $1 in ld | local-dev) echo "HOST=local.cms.dgrebb.com" >>$backEnv echo "DATABASE_HOST=localhost" >>$backEnv - echo "NODE_ENV=development" >>$backEnv break ;; ls | local-dev-stage) echo "HOST=local.cms.dgrebb.com" >>$backEnv echo "DATABASE_HOST=$(pass dg/cms/db/s/host)" >>$backEnv - echo "NODE_ENV=development" >>$backEnv break ;; l | local-docker) echo "HOST=0.0.0.0" >>$backEnv echo "DATABASE_HOST=host.docker.internal" >>$backEnv - echo "NODE_ENV=development" >>$backEnv break ;; s | stg) echo "HOST=0.0.0.0" >>$backEnv echo "DATABASE_HOST=$(pass dg/cms/db/s/host)" >>$backEnv - echo "NODE_ENV=production" >>$backEnv break ;; p | prd | prod) @@ -54,7 +61,6 @@ while test "$1" != --; do echo "AWS_S3_BUCKET=$(pass dg/cms/p/bucket)" >>$backEnv echo "CDN_BASE_URL=$(pass dg/cms/cdnbaseurl)" >>$backEnv echo "DATABASE_HOST=$(pass dg/cms/db/host)" >>$backEnv - echo "NODE_ENV=production" >>$backEnv break ;; ?) diff --git a/_utils/_scripts/setFrontEnv.sh b/_utils/_scripts/setFrontEnv.sh index d728d2a61..be07f42c7 100755 --- a/_utils/_scripts/setFrontEnv.sh +++ b/_utils/_scripts/setFrontEnv.sh @@ -33,5 +33,6 @@ echo "API_KEY=\"$(pass dg/api/${1}/apikey)\"" | tee -a $dockerEnvFile $frontEnvF echo "PUBLIC_API_PATH_NAVIGATION=$(pass dg/cms/api/paths/navigation)" | tee -a $dockerEnvFile $frontEnvFile >/dev/null echo "PUBLIC_API_PATH_HOME=$(pass dg/cms/api/paths/home)" | tee -a $dockerEnvFile $frontEnvFile >/dev/null echo "PUBLIC_API_PATH_FOOTER=$(pass dg/cms/api/paths/footer)" | tee -a $dockerEnvFile $frontEnvFile >/dev/null +echo "PUBLIC_API_PATH_PRIVACY=$(pass dg/cms/api/paths/privacy)" | tee -a $dockerEnvFile $frontEnvFile >/dev/null echo "PUBLIC_API_URL=\"$(pass dg/api/${1}/url)\"" | tee -a $dockerEnvFile $frontEnvFile >/dev/null echo "PUBLIC_SENTRY_DSN=\"$(pass dg/www/logs/sentrydsn)\"" | tee -a $dockerEnvFile $frontEnvFile >/dev/null diff --git a/back/config/plugins.js b/back/config/plugins.js index 0bac69f84..32a725b09 100644 --- a/back/config/plugins.js +++ b/back/config/plugins.js @@ -32,6 +32,16 @@ module.exports = ({ env }) => { return { upload, + "sentry": { + enabled: true, + config: { + dsn: env("PUBLIC_SENTRY_DSN"), + sendMetadata: true, + init: { + environment: env("PUBLIC_ENV"), + } + } + }, "strapi-blurhash": { enabled: true, config: { diff --git a/back/package-lock.json b/back/package-lock.json index cb5cd58e5..544ff8404 100644 --- a/back/package-lock.json +++ b/back/package-lock.json @@ -9,11 +9,12 @@ "version": "1.0.0", "license": "MIT", "dependencies": { - "@strapi/plugin-i18n": "4.11.1", - "@strapi/plugin-seo": "github:dgrebb/strapi-plugin-seo#develop", - "@strapi/plugin-users-permissions": "4.11.1", - "@strapi/provider-upload-aws-s3": "4.11.1", - "@strapi/strapi": "4.11.1", + "@strapi/plugin-i18n": "4.11.2", + "@strapi/plugin-sentry": "^4.11.2", + "@strapi/plugin-seo": "^1.9.2", + "@strapi/plugin-users-permissions": "4.11.2", + "@strapi/provider-upload-aws-s3": "4.11.2", + "@strapi/strapi": "4.11.2", "pg": "^8.10.0", "strapi-blurhash": "^1.1.1" }, @@ -2504,17 +2505,22 @@ "tslib": "^2.4.1" } }, + "node_modules/@fingerprintjs/fingerprintjs/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@floating-ui/core": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.3.0.tgz", - "integrity": "sha512-vX1WVAdPjZg9DkDkC+zEx/tKtnST6/qcNpwcjeBgco3XRNHz5PUA+ivi/yr6G3o0kMR60uKBJcfOdfzOFI7PMQ==" + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.3.1.tgz", + "integrity": "sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==" }, "node_modules/@floating-ui/dom": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.3.0.tgz", - "integrity": "sha512-qIAwejE3r6NeA107u4ELDKkH8+VtgRKdXqtSPaKflL2S2V+doyN+Wt9s5oHKXPDo4E8TaVXaHT3+6BbagH31xw==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.4.2.tgz", + "integrity": "sha512-VKmvHVatWnewmGGy+7Mdy4cTJX71Pli6v/Wjb5RQBuq5wjUYx+Ef+kRThi8qggZqDgD8CogCpqhRoVp3+yQk+g==", "dependencies": { - "@floating-ui/core": "^1.3.0" + "@floating-ui/core": "^1.3.1" } }, "node_modules/@floating-ui/react-dom": { @@ -2538,6 +2544,11 @@ "tslib": "^2.4.0" } }, + "node_modules/@formatjs/ecma402-abstract/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@formatjs/fast-memoize": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.0.1.tgz", @@ -2546,6 +2557,11 @@ "tslib": "^2.4.0" } }, + "node_modules/@formatjs/fast-memoize/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@formatjs/icu-messageformat-parser": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.3.1.tgz", @@ -2556,6 +2572,11 @@ "tslib": "^2.4.0" } }, + "node_modules/@formatjs/icu-messageformat-parser/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@formatjs/icu-skeleton-parser": { "version": "1.3.18", "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.3.18.tgz", @@ -2565,6 +2586,11 @@ "tslib": "^2.4.0" } }, + "node_modules/@formatjs/icu-skeleton-parser/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@formatjs/intl": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/@formatjs/intl/-/intl-2.7.1.tgz", @@ -2597,6 +2623,11 @@ "tslib": "^2.4.0" } }, + "node_modules/@formatjs/intl-displaynames/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@formatjs/intl-listformat": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/@formatjs/intl-listformat/-/intl-listformat-7.2.1.tgz", @@ -2607,6 +2638,11 @@ "tslib": "^2.4.0" } }, + "node_modules/@formatjs/intl-listformat/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@formatjs/intl-localematcher": { "version": "0.2.32", "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.32.tgz", @@ -2615,6 +2651,16 @@ "tslib": "^2.4.0" } }, + "node_modules/@formatjs/intl-localematcher/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, + "node_modules/@formatjs/intl/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", @@ -3221,6 +3267,11 @@ } } }, + "node_modules/@radix-ui/react-menu/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@radix-ui/react-popper": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.2.tgz", @@ -3587,11 +3638,6 @@ "node": ">=6" } }, - "node_modules/@sentry/core/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@sentry/hub": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-6.19.7.tgz", @@ -3605,11 +3651,6 @@ "node": ">=6" } }, - "node_modules/@sentry/hub/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@sentry/minimal": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-6.19.7.tgz", @@ -3623,11 +3664,6 @@ "node": ">=6" } }, - "node_modules/@sentry/minimal/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@sentry/node": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/node/-/node-6.19.7.tgz", @@ -3646,11 +3682,6 @@ "node": ">=6" } }, - "node_modules/@sentry/node/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@sentry/types": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/types/-/types-6.19.7.tgz", @@ -3671,11 +3702,6 @@ "node": ">=6" } }, - "node_modules/@sentry/utils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@simov/deep-extend": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@simov/deep-extend/-/deep-extend-1.0.0.tgz", @@ -3734,9 +3760,9 @@ } }, "node_modules/@strapi/admin": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/admin/-/admin-4.11.1.tgz", - "integrity": "sha512-k0Mc2WV99qM8jfqaflT2YClBIkUxbDgg0/XvlDu5mTM0afIbpabDqKYvBg6lFCSTE9sX45KMTCo94VaKtxDBLA==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/admin/-/admin-4.11.2.tgz", + "integrity": "sha512-6BUY5EbvVucZO/BOKys2MPXVZ7rChV1hrrfLZwbW4z5aoaW1Rwmav5LI0dnVGIDvRvu2TwTMj1nGuC6K9e+UjA==", "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-transform-runtime": "^7.19.6", @@ -3746,15 +3772,15 @@ "@casl/ability": "^5.4.3", "@fingerprintjs/fingerprintjs": "3.4.1", "@pmmmwh/react-refresh-webpack-plugin": "0.5.10", - "@strapi/babel-plugin-switch-ee-ce": "4.11.1", - "@strapi/data-transfer": "4.11.1", + "@strapi/babel-plugin-switch-ee-ce": "4.11.2", + "@strapi/data-transfer": "4.11.2", "@strapi/design-system": "1.8.0", - "@strapi/helper-plugin": "4.11.1", + "@strapi/helper-plugin": "4.11.2", "@strapi/icons": "1.8.0", - "@strapi/permissions": "4.11.1", - "@strapi/provider-audit-logs-local": "4.11.1", - "@strapi/typescript-utils": "4.11.1", - "@strapi/utils": "4.11.1", + "@strapi/permissions": "4.11.2", + "@strapi/provider-audit-logs-local": "4.11.2", + "@strapi/typescript-utils": "4.11.2", + "@strapi/utils": "4.11.2", "axios": "1.4.0", "babel-loader": "^9.1.2", "babel-plugin-styled-components": "2.1.1", @@ -3960,9 +3986,9 @@ } }, "node_modules/@strapi/babel-plugin-switch-ee-ce": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/babel-plugin-switch-ee-ce/-/babel-plugin-switch-ee-ce-4.11.1.tgz", - "integrity": "sha512-PLoPuIFDeyyefMCGRKpuUTm7iD52sWDLv5bBqmKiRlxUHZjy7bJSHN8vWTggjkxMaUNcIJ7LoTWOM/kI21g5Uw==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/babel-plugin-switch-ee-ce/-/babel-plugin-switch-ee-ce-4.11.2.tgz", + "integrity": "sha512-YTmmQFDsYY4O5HB+qLm7nRYywll5MZTEpA6ZkQkdVeDnW3WALgM/iShCrWa+UyDvxyfiGsQCfisE0cUibXboFw==", "dependencies": { "@babel/template": "^7.20.7", "reselect": "4.1.7", @@ -3975,12 +4001,12 @@ "integrity": "sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==" }, "node_modules/@strapi/data-transfer": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/data-transfer/-/data-transfer-4.11.1.tgz", - "integrity": "sha512-M4zD3FgHG45qnbyblbBXl8jNKY/Vvul9N+1g7hQnTS/Fe26tp6EFraeIfaQvFebAKGKdpWOPAAmVwjrI+s48AQ==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/data-transfer/-/data-transfer-4.11.2.tgz", + "integrity": "sha512-oIqY46ibFJVU/bQEzUkNpAm3bqJzFbY587JLq8BgJxVNwVka5fvBdexr1DLBH45mpycBEUhTW0bH9FzZEiBsEg==", "dependencies": { - "@strapi/logger": "4.11.1", - "@strapi/strapi": "4.11.1", + "@strapi/logger": "4.11.2", + "@strapi/strapi": "4.11.2", "chalk": "4.1.2", "fs-extra": "10.0.0", "lodash": "4.17.21", @@ -3997,11 +4023,11 @@ } }, "node_modules/@strapi/database": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/database/-/database-4.11.1.tgz", - "integrity": "sha512-cJNro9gfDKtcp5yRoS7gab8o62myigT4fK93//yqlFU91JBfXeuLQy3yMEbRm2gNPUxZZPVBXWcZyUBRy5Lr1A==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/database/-/database-4.11.2.tgz", + "integrity": "sha512-t2pfZDF2AHuKPlF0E3KKjh8wRyCiZhegliEvXtw0RJuU8g8AuUVywvkkewlT3X9he8Xq/vc7VDyNRECdnSlZ2g==", "dependencies": { - "@strapi/utils": "4.11.1", + "@strapi/utils": "4.11.2", "date-fns": "2.30.0", "debug": "4.3.4", "fs-extra": "10.0.0", @@ -4043,9 +4069,9 @@ } }, "node_modules/@strapi/generate-new": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/generate-new/-/generate-new-4.11.1.tgz", - "integrity": "sha512-TDREkS96S1TBh5yojfudqEd3M0euqV9C4oWEaX7KJE9fxw+ZrUXeEYLydSvH5VYeDkFgd9aM2dmTt1VWGZVkNA==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/generate-new/-/generate-new-4.11.2.tgz", + "integrity": "sha512-9QXoG2xpZrFmJyV9sSbr/8Yv6ROieOx+XSzt3FerDZ3xaojbVjZ+JqLpG6O44e5VyqcYakL9g25uV4+nMFkUgg==", "dependencies": { "@sentry/node": "6.19.7", "chalk": "^4.1.2", @@ -4065,13 +4091,13 @@ } }, "node_modules/@strapi/generators": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/generators/-/generators-4.11.1.tgz", - "integrity": "sha512-NFYraxLbacx5eBV9xv8X/FPH9UHmT1NqLpm5Q7V8yHFf00dEz9t9UC5DulZSVWeRYHfBcKFEesp9fwDKuNpB2w==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/generators/-/generators-4.11.2.tgz", + "integrity": "sha512-PNTN5YHsCiyj70jJ39uLvQGa7cw0+QNHSZB2+9PY64B0Usc0+Q1UWkDOYD2dWTLkUOJQp3ZAtpcMA20vVbZlGg==", "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/typescript-utils": "4.11.1", - "@strapi/utils": "4.11.1", + "@strapi/typescript-utils": "4.11.2", + "@strapi/utils": "4.11.2", "chalk": "4.1.2", "copyfiles": "2.4.1", "fs-extra": "10.0.0", @@ -4085,9 +4111,9 @@ } }, "node_modules/@strapi/helper-plugin": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/helper-plugin/-/helper-plugin-4.11.1.tgz", - "integrity": "sha512-tg9KdGScz3nlt93EHL95qjQaXB/wvqIz/fJy/6uYi6RI19k2J6XluxT5W1ooYqcK3O6QQ8J2Jr1i3NfOp7Xd1g==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/helper-plugin/-/helper-plugin-4.11.2.tgz", + "integrity": "sha512-UwA4YuangVCoepqQKvWNawNhnZyoxSKzfi2T2tZglD9tVxU9TIVnZH1qhM65gX+vjVEtgRd60jcoVOPu6IqGvw==", "dependencies": { "axios": "1.4.0", "date-fns": "2.30.0", @@ -4123,9 +4149,9 @@ } }, "node_modules/@strapi/logger": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-4.11.1.tgz", - "integrity": "sha512-sUefI43RHI3K7PCF6xY+lfhSRuhhbyUwm8/SZXvXImXQB8I2GHmrA/IGbRlouEwSgCsrau/H2mT1IPRU46YCqA==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-4.11.2.tgz", + "integrity": "sha512-3SjWE+KtMS3FCaaEmj44FBMzj+dfRgroaLNBIvI1wd3+vROeqb9G6cT0WwT7UC5AkJsBqSitqhzer7fLUOUJgQ==", "dependencies": { "lodash": "4.17.21", "winston": "3.3.3" @@ -4136,12 +4162,12 @@ } }, "node_modules/@strapi/permissions": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-4.11.1.tgz", - "integrity": "sha512-uasD+0I7D3NZRZZfyJ0iZj6VG52gFeLA/EONmlwDfw2zoGSZzJtXRNoEqki5ZAyg9o/6j0pchAb5Kf/HKaD2Bw==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-4.11.2.tgz", + "integrity": "sha512-i6+qZhzcGWq3fC5aiZia7W4tt7DqOIVyV9GWD6J1D8bSYawxyGuB0fcEH27mE6t4Mb5FUy/WQd3LbVN/6UH3GQ==", "dependencies": { "@casl/ability": "5.4.4", - "@strapi/utils": "4.11.1", + "@strapi/utils": "4.11.2", "lodash": "4.17.21", "sift": "16.0.1" }, @@ -4151,12 +4177,12 @@ } }, "node_modules/@strapi/plugin-content-manager": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/plugin-content-manager/-/plugin-content-manager-4.11.1.tgz", - "integrity": "sha512-pGuzIIVLQ1X6XFo+c1ZRpmdGShQtqNHwSb3Fc08j95NehMV5BB7UKjfqcWc2kX+vekRn1iWGM3w/VKJtAp1RJg==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/plugin-content-manager/-/plugin-content-manager-4.11.2.tgz", + "integrity": "sha512-lnKXTDLd0oafSV6s80b6633rIoskcsPyvUUJEAeu4HbkddqpvzYkjBjpWIFYRbQ3Pfqfwr4ioJnj4Nv3hW4xnA==", "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/utils": "4.11.1", + "@strapi/utils": "4.11.2", "lodash": "4.17.21" }, "engines": { @@ -4165,16 +4191,16 @@ } }, "node_modules/@strapi/plugin-content-type-builder": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/plugin-content-type-builder/-/plugin-content-type-builder-4.11.1.tgz", - "integrity": "sha512-JMUnKpTcXvF1Jjbs83xrOgQR/ngKgweXz7eM6k3JeNeUxM2A+ZSiogcyZG9tgfIDKZLAJGZgcbkxQ476/kF/hQ==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/plugin-content-type-builder/-/plugin-content-type-builder-4.11.2.tgz", + "integrity": "sha512-pAZd8pkb8PCftdwVDMGTb1yLuNE+xn2rtixul7satAaYdKBaItPYRQx9UVESS/Iq4zM7/PSCI7mxCw3k8kOnWw==", "dependencies": { "@sindresorhus/slugify": "1.1.0", "@strapi/design-system": "1.8.0", - "@strapi/generators": "4.11.1", - "@strapi/helper-plugin": "4.11.1", + "@strapi/generators": "4.11.2", + "@strapi/helper-plugin": "4.11.2", "@strapi/icons": "1.8.0", - "@strapi/utils": "4.11.1", + "@strapi/utils": "4.11.2", "fs-extra": "10.0.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -4200,14 +4226,14 @@ } }, "node_modules/@strapi/plugin-email": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/plugin-email/-/plugin-email-4.11.1.tgz", - "integrity": "sha512-2q4/3LqmZaRvbPLlO0nLGuNSaPxqnWDZsmsJgsROGLSDIyTRUAwktK+x1Zl1R7oxl+f91ATnPBHzlcBTErDT3Q==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/plugin-email/-/plugin-email-4.11.2.tgz", + "integrity": "sha512-yyF1lHR7CKtGog2fLY+LHsziD66aKZXCODQaBtBeUgwIOh//1OSyAvFVN6co0AoRRkaS/Br9QzGxuIYcmP+Y1w==", "dependencies": { "@strapi/design-system": "1.8.0", "@strapi/icons": "1.8.0", - "@strapi/provider-email-sendmail": "4.11.1", - "@strapi/utils": "4.11.1", + "@strapi/provider-email-sendmail": "4.11.2", + "@strapi/utils": "4.11.2", "lodash": "4.17.21", "prop-types": "^15.8.1", "react-intl": "6.4.1", @@ -4225,14 +4251,14 @@ } }, "node_modules/@strapi/plugin-i18n": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/plugin-i18n/-/plugin-i18n-4.11.1.tgz", - "integrity": "sha512-Mv7hs7UXRZg8DhPPvKN658XMaoJjIbBymfzAkknX4putc882D/HfUxNmB27Mx1lV6eApc4LIUzJOnR5Jdeq32g==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/plugin-i18n/-/plugin-i18n-4.11.2.tgz", + "integrity": "sha512-H5ig1g850QxU0dbKypuaOdfrFtx72F00cvqyMi3ji1cRS5YhjvWG1KT3RRfzyW8k0DOyXA11uwK8rL4MChtPsA==", "dependencies": { "@strapi/design-system": "1.8.0", - "@strapi/helper-plugin": "4.11.1", + "@strapi/helper-plugin": "4.11.2", "@strapi/icons": "1.8.0", - "@strapi/utils": "4.11.1", + "@strapi/utils": "4.11.2", "formik": "2.4.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -4255,10 +4281,32 @@ "styled-components": "5.3.3" } }, + "node_modules/@strapi/plugin-sentry": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/plugin-sentry/-/plugin-sentry-4.11.2.tgz", + "integrity": "sha512-BzN4VRD0cSA5gV5HaVBCCR920fayY5grmZKttTY1AckVCIkTuu7CuE0ksr7OrwmOl6SC8H8lKOkgyOqpDab2gQ==", + "dependencies": { + "@sentry/node": "6.19.7", + "@strapi/design-system": "1.8.0", + "@strapi/helper-plugin": "4.11.2", + "@strapi/icons": "1.8.0" + }, + "engines": { + "node": ">=14.19.1 <=18.x.x", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "@strapi/strapi": "^4.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "react-router-dom": "5.3.4", + "styled-components": "5.3.3" + } + }, "node_modules/@strapi/plugin-seo": { - "version": "1.9.1", - "resolved": "git+ssh://git@github.com/dgrebb/strapi-plugin-seo.git#105ec0364e891c393d370adc846ca78a05ef2f54", - "license": "MIT", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@strapi/plugin-seo/-/plugin-seo-1.9.2.tgz", + "integrity": "sha512-skqckP1ut5nshgLyLJh/aXdwxCawfNzhdA0GfHK4OLffoYIVrtBhLaGyyschJH6NfVt/0AFl2uhU16ievdz9QQ==", "dependencies": { "date-fns": "^2.29.3", "eslint-plugin-react-hooks": "^4.3.0", @@ -4274,15 +4322,15 @@ } }, "node_modules/@strapi/plugin-upload": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/plugin-upload/-/plugin-upload-4.11.1.tgz", - "integrity": "sha512-LFulJcrfVqoOotVLquyaEAkqsuIMqTPJT5U7ybMWdHWwJJQ4Ohz4MtVaC0H1m4OrzHEvBxBqCIKDV2qaD/Z4qQ==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/plugin-upload/-/plugin-upload-4.11.2.tgz", + "integrity": "sha512-627g2UuS4TMYvPspbz0UC75aqrdqwXmp3H1C+sfigkrql33uuB5BQ4LJVtM1De0erCVVrLH36gV8gzHtFsJzMQ==", "dependencies": { "@strapi/design-system": "1.8.0", - "@strapi/helper-plugin": "4.11.1", + "@strapi/helper-plugin": "4.11.2", "@strapi/icons": "1.8.0", - "@strapi/provider-upload-local": "4.11.1", - "@strapi/utils": "4.11.1", + "@strapi/provider-upload-local": "4.11.2", + "@strapi/utils": "4.11.2", "axios": "1.4.0", "byte-size": "7.0.1", "cropperjs": "1.5.12", @@ -4317,14 +4365,14 @@ } }, "node_modules/@strapi/plugin-users-permissions": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/plugin-users-permissions/-/plugin-users-permissions-4.11.1.tgz", - "integrity": "sha512-+dpymBA19GvaMWY6QToxGC80RtSkP0SHHbTQ1zxnvkTCmQHfCu4GxOJfbPzQYFOV5X+5rEJ52WkWEYX3FBQDuw==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/plugin-users-permissions/-/plugin-users-permissions-4.11.2.tgz", + "integrity": "sha512-yqvUARV8enG8yra123J/1BKGmRbsoisjWyd4K7G2URs+4b5R0JDkQrJ65UgLcF/ppk7OEFXpw3O12aV+U2+Aqg==", "dependencies": { "@strapi/design-system": "1.8.0", - "@strapi/helper-plugin": "4.11.1", + "@strapi/helper-plugin": "4.11.2", "@strapi/icons": "1.8.0", - "@strapi/utils": "4.11.1", + "@strapi/utils": "4.11.2", "bcryptjs": "2.4.3", "formik": "2.4.0", "grant-koa": "5.4.8", @@ -4354,9 +4402,9 @@ } }, "node_modules/@strapi/provider-audit-logs-local": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/provider-audit-logs-local/-/provider-audit-logs-local-4.11.1.tgz", - "integrity": "sha512-sVYhJtxgHHhlUN3y29rvyY9cvVZ3Q6diYuGp+ZLYfv+1khENFP/c1rwASiAJtntPafl0Klk4srX/CwbCyPJ6Iw==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/provider-audit-logs-local/-/provider-audit-logs-local-4.11.2.tgz", + "integrity": "sha512-sXf94Gqx50ljogzI6y1P6uvSnIIpwWmO1LBcGYX5xjH44CFRC78iMrJNt0aWV5WeGOYeT30pNPltAou6Ve9wLw==", "engines": { "node": ">=14.19.1 <=18.x.x", "npm": ">=6.0.0" @@ -4366,11 +4414,11 @@ } }, "node_modules/@strapi/provider-email-sendmail": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/provider-email-sendmail/-/provider-email-sendmail-4.11.1.tgz", - "integrity": "sha512-fnU2Bos337o3k+N3zupDDXHcfMCwbsTcpv9eYrfqg/U23wqB7Mkcoydjce6TUpWfTceAvzi416Jz6C7PhVVhyw==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/provider-email-sendmail/-/provider-email-sendmail-4.11.2.tgz", + "integrity": "sha512-wbjcEnXdXnx6VwgcWPodryDpZTfyfGMe624PR8UHnDiKx4hv9a1u2BzTQsI8XZO6L3J8YVYQX2uhqm9UzhHppQ==", "dependencies": { - "@strapi/utils": "4.11.1", + "@strapi/utils": "4.11.2", "sendmail": "^1.6.1" }, "engines": { @@ -4379,11 +4427,11 @@ } }, "node_modules/@strapi/provider-upload-aws-s3": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/provider-upload-aws-s3/-/provider-upload-aws-s3-4.11.1.tgz", - "integrity": "sha512-n8iytGKOz1J5YGlaAfXZPd1SHOWsgo479VSM4jB/RFGqLEAwEb6awsQhKigPX0wBJsvhJLVTanpqtdD7zZxM4w==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/provider-upload-aws-s3/-/provider-upload-aws-s3-4.11.2.tgz", + "integrity": "sha512-kAnPPTuRotAftyVGpAe5KRF1NOhm0gVcY/6/6FeYG4IWMhgBk3qwikOhQO1XaZ4xymK2YRtVSJW1TRifW/1VNA==", "dependencies": { - "aws-sdk": "2.1372.0", + "aws-sdk": "2.1399.0", "lodash": "4.17.21" }, "engines": { @@ -4392,11 +4440,11 @@ } }, "node_modules/@strapi/provider-upload-local": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/provider-upload-local/-/provider-upload-local-4.11.1.tgz", - "integrity": "sha512-sfLhIujhUIPsTsMvwsstbfwVNz8OjEDIz45cuASfnyRjgCKt0L5t9p2OB8XIMeudhl+6FdzslMO6Hlp7LnOCjw==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/provider-upload-local/-/provider-upload-local-4.11.2.tgz", + "integrity": "sha512-xHIG0MXj3AYtCC5ypk0H60o54/i7OOwCKRBsVHMjU+QPL5wJE1vWOuocELvJn5gLpGHYt0BaLKKBG1DsfnNODQ==", "dependencies": { - "@strapi/utils": "4.11.1", + "@strapi/utils": "4.11.2", "fs-extra": "10.0.0" }, "engines": { @@ -4405,26 +4453,26 @@ } }, "node_modules/@strapi/strapi": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/strapi/-/strapi-4.11.1.tgz", - "integrity": "sha512-pOFMgJV+5s71hJ3YJD0ffiSvCnIaxAgvR1PBzuugPOEm6X7JHcRoRNpPIQses37Tcw5HVNtzFh5iyivsnTGfpg==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/strapi/-/strapi-4.11.2.tgz", + "integrity": "sha512-zAhntT06wbO5FEHN1pFi0OxScFKr0WtIXrM7w/MjyTE8mOgAW+aOWGsPGSNG7taVMeIQiw+X5H5sxzn6/U3TYA==", "hasInstallScript": true, "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/admin": "4.11.1", - "@strapi/data-transfer": "4.11.1", - "@strapi/database": "4.11.1", - "@strapi/generate-new": "4.11.1", - "@strapi/generators": "4.11.1", - "@strapi/logger": "4.11.1", - "@strapi/permissions": "4.11.1", - "@strapi/plugin-content-manager": "4.11.1", - "@strapi/plugin-content-type-builder": "4.11.1", - "@strapi/plugin-email": "4.11.1", - "@strapi/plugin-upload": "4.11.1", - "@strapi/typescript-utils": "4.11.1", - "@strapi/utils": "4.11.1", + "@strapi/admin": "4.11.2", + "@strapi/data-transfer": "4.11.2", + "@strapi/database": "4.11.2", + "@strapi/generate-new": "4.11.2", + "@strapi/generators": "4.11.2", + "@strapi/logger": "4.11.2", + "@strapi/permissions": "4.11.2", + "@strapi/plugin-content-manager": "4.11.2", + "@strapi/plugin-content-type-builder": "4.11.2", + "@strapi/plugin-email": "4.11.2", + "@strapi/plugin-upload": "4.11.2", + "@strapi/typescript-utils": "4.11.2", + "@strapi/utils": "4.11.2", "bcryptjs": "2.4.3", "boxen": "5.1.2", "chalk": "4.1.2", @@ -4523,9 +4571,9 @@ } }, "node_modules/@strapi/typescript-utils": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/typescript-utils/-/typescript-utils-4.11.1.tgz", - "integrity": "sha512-v6+9MMk1JGLjcRiukeq7UBwMApLelqw+qBPN0tJFWZ08tfe9SWueCFcFF/LcuJGPr9uTs+trOploMNfT1XKYfg==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/typescript-utils/-/typescript-utils-4.11.2.tgz", + "integrity": "sha512-gBS8gRhfZ/hnugQqANUNYZDhNaFqq0bZK6iAhZmahL08GmhTg1LCmP/zMwa7H7+9KtT3eJOXk6iOunyLShscVw==", "dependencies": { "chalk": "4.1.2", "cli-table3": "0.6.2", @@ -4681,9 +4729,9 @@ } }, "node_modules/@strapi/utils": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-4.11.1.tgz", - "integrity": "sha512-X+it/AS1uclrU88OefvCL+imLTLA9cD0NmaaZR7v/PwEIUlDMTcnUZ8gZJVMdy96vU7ZH+rcaRoh4pYGPo41+Q==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-4.11.2.tgz", + "integrity": "sha512-3qUxNMWN2rDXtTBR7j/6ViTYMgbMLwGbblTEnVvAsh/JVVZp826/LUOk8egcmHLLZLjQiruGu+7yYNoMc0XUTg==", "dependencies": { "@sindresorhus/slugify": "1.1.0", "date-fns": "2.30.0", @@ -4722,6 +4770,11 @@ "tslib": "^2.4.0" } }, + "node_modules/@swc/helpers/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/@szmarczak/http-timer": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", @@ -4897,11 +4950,6 @@ "npm": ">=2.0.0" } }, - "node_modules/@types/inquirer/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@types/interpret": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@types/interpret/-/interpret-1.1.1.tgz", @@ -4974,9 +5022,9 @@ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" }, "node_modules/@types/react": { - "version": "18.2.12", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.12.tgz", - "integrity": "sha512-ndmBMLCgn38v3SntMeoJaIrO6tGHYKMEBohCUmw8HoLLQdRMOIGXfeYaBTLe2lsFaSB3MOK1VXscYFnmLtTSmw==", + "version": "18.2.13", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", + "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -5553,6 +5601,11 @@ "node": ">=10" } }, + "node_modules/aria-hidden/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", @@ -5666,9 +5719,9 @@ } }, "node_modules/aws-sdk": { - "version": "2.1372.0", - "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1372.0.tgz", - "integrity": "sha512-SkpBohTXS7yJL6I/k+Dk5o2k8xgyVKs1n9zo08DvCaheSmvpMKQHqdj/wCbf1cjLRFr/Ckc1YGDj3SsikPsBgw==", + "version": "2.1399.0", + "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1399.0.tgz", + "integrity": "sha512-u9G78zs4vN/jl/AI+wNA0qnId2bUmXaCUrzRjTqN8/MWMda7igXmWHbcLmUC3BKmQPrp3EzgC+jBzFWoz5QL9A==", "dependencies": { "buffer": "4.9.2", "events": "1.1.1", @@ -6369,6 +6422,11 @@ "tslib": "^2.0.3" } }, + "node_modules/camel-case/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", @@ -6389,9 +6447,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001503", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001503.tgz", - "integrity": "sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==", + "version": "1.0.30001506", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz", + "integrity": "sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw==", "funding": [ { "type": "opencollective", @@ -7747,9 +7805,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.433", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.433.tgz", - "integrity": "sha512-MGO1k0w1RgrfdbLVwmXcDhHHuxCn2qRgR7dYsJvWFKDttvYPx6FNzCGG0c/fBBvzK2LDh3UV7Tt9awnHnvAAUQ==" + "version": "1.4.437", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.437.tgz", + "integrity": "sha512-ZFekRuBOHUXp21wrR5lshT6pZa/KmjkhKBAtmZz4NN5sCWlHOk3kdhiwFINrDBsRLX6FjyBAb1TRN+KBeNlyzQ==" }, "node_modules/elliptic": { "version": "6.5.4", @@ -7853,9 +7911,9 @@ } }, "node_modules/envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.9.0.tgz", + "integrity": "sha512-RODB4txU+xImYDemN5DqaKC0CHk05XSVkOX4pq0hK26Qx+1LChkuOyUDlGEjYb3ACr0n9qBhFjg37hQuJvpkRQ==", "bin": { "envinfo": "dist/cli.js" }, @@ -9053,11 +9111,6 @@ "node": ">=0.10.0" } }, - "node_modules/formik/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -10169,6 +10222,11 @@ "tslib": "^2.4.0" } }, + "node_modules/intl-messageformat/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/invariant": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", @@ -12075,11 +12133,6 @@ "npm": ">=2.0.0" } }, - "node_modules/node-plop/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/node-releases": { "version": "2.0.12", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", @@ -12581,6 +12634,11 @@ "tslib": "^2.0.3" } }, + "node_modules/param-case/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -12680,6 +12738,11 @@ "tslib": "^2.0.3" } }, + "node_modules/pascal-case/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", @@ -13827,6 +13890,11 @@ } } }, + "node_modules/react-intl/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", @@ -13948,6 +14016,16 @@ } } }, + "node_modules/react-remove-scroll-bar/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, + "node_modules/react-remove-scroll/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/react-router": { "version": "5.3.4", "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", @@ -14052,6 +14130,11 @@ } } }, + "node_modules/react-style-singleton/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/react-transition-group": { "version": "4.4.5", "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", @@ -14576,6 +14659,11 @@ "tslib": "^2.1.0" } }, + "node_modules/rxjs/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -16086,9 +16174,9 @@ } }, "node_modules/terser": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.18.0.tgz", - "integrity": "sha512-pdL757Ig5a0I+owA42l6tIuEycRuM7FPY4n62h44mRLRfnOxJkkOHd6i89dOpwZlpF6JXBwaAHF6yWzFrt+QyA==", + "version": "5.18.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.18.1.tgz", + "integrity": "sha512-j1n0Ao919h/Ai5r43VAnfV/7azUYW43GPxK7qSATzrsERfW7+y2QW9Cp9ufnRF5CQUWbnLSo7UJokSWCqg4tsQ==", "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", @@ -16333,9 +16421,9 @@ "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" }, "node_modules/tslib": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", - "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/tsscmp": { "version": "1.0.6", @@ -16749,6 +16837,11 @@ } } }, + "node_modules/use-callback-ref/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/use-isomorphic-layout-effect": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", @@ -16783,6 +16876,11 @@ } } }, + "node_modules/use-sidecar/node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, "node_modules/use-sync-external-store": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", @@ -16903,9 +17001,9 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.87.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.87.0.tgz", - "integrity": "sha512-GOu1tNbQ7p1bDEoFRs2YPcfyGs8xq52yyPBZ3m2VGnXGtV9MxjrkABHm4V9Ia280OefsSLzvbVoXcfLxjKY/Iw==", + "version": "5.88.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.0.tgz", + "integrity": "sha512-O3jDhG5e44qIBSi/P6KpcCcH7HD+nYIHVBhdWFxcLOcIGN8zGo5nqF3BjyNCxIh4p1vFdNnreZv2h2KkoAw3lw==", "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.0", diff --git a/back/package.json b/back/package.json index 345e0f6d1..6f7d99ab2 100644 --- a/back/package.json +++ b/back/package.json @@ -10,11 +10,12 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/plugin-i18n": "4.11.1", - "@strapi/plugin-seo": "github:dgrebb/strapi-plugin-seo#develop", - "@strapi/plugin-users-permissions": "4.11.1", - "@strapi/provider-upload-aws-s3": "4.11.1", - "@strapi/strapi": "4.11.1", + "@strapi/plugin-i18n": "4.11.2", + "@strapi/plugin-sentry": "^4.11.2", + "@strapi/plugin-seo": "^1.9.2", + "@strapi/plugin-users-permissions": "4.11.2", + "@strapi/provider-upload-aws-s3": "4.11.2", + "@strapi/strapi": "4.11.2", "pg": "^8.10.0", "strapi-blurhash": "^1.1.1" }, diff --git a/back/src/api/privacy/content-types/privacy/schema.json b/back/src/api/privacy/content-types/privacy/schema.json new file mode 100644 index 000000000..b9885670e --- /dev/null +++ b/back/src/api/privacy/content-types/privacy/schema.json @@ -0,0 +1,21 @@ +{ + "kind": "singleType", + "collectionName": "privacies", + "info": { + "singularName": "privacy", + "pluralName": "privacies", + "displayName": "Privacy" + }, + "options": { + "draftAndPublish": true + }, + "pluginOptions": {}, + "attributes": { + "title": { + "type": "string" + }, + "details": { + "type": "richtext" + } + } +} diff --git a/back/src/api/privacy/controllers/privacy.js b/back/src/api/privacy/controllers/privacy.js new file mode 100644 index 000000000..8748cae6c --- /dev/null +++ b/back/src/api/privacy/controllers/privacy.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * privacy controller + */ + +const { createCoreController } = require('@strapi/strapi').factories; + +module.exports = createCoreController('api::privacy.privacy'); diff --git a/back/src/api/privacy/routes/privacy.js b/back/src/api/privacy/routes/privacy.js new file mode 100644 index 000000000..b9fb8389c --- /dev/null +++ b/back/src/api/privacy/routes/privacy.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * privacy router + */ + +const { createCoreRouter } = require('@strapi/strapi').factories; + +module.exports = createCoreRouter('api::privacy.privacy'); diff --git a/back/src/api/privacy/services/privacy.js b/back/src/api/privacy/services/privacy.js new file mode 100644 index 000000000..3cb5305d3 --- /dev/null +++ b/back/src/api/privacy/services/privacy.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * privacy service + */ + +const { createCoreService } = require('@strapi/strapi').factories; + +module.exports = createCoreService('api::privacy.privacy'); diff --git a/front/package-lock.json b/front/package-lock.json index c372a1676..76d840dfb 100644 --- a/front/package-lock.json +++ b/front/package-lock.json @@ -9,22 +9,27 @@ "version": "0.0.1", "dependencies": { "@accuser/svelte-plausible-analytics": "github:dgrebb/svelte-plausible-analytics#release/v0.4.0", - "@sentry/sveltekit": "^7.55.2", + "@sentry/sveltekit": "^7.56.0", "blurhash": "^1.1.5", "svelte-blurhash": "^1.2.1", "svelte-markdown": "^0.2.3" }, "devDependencies": { - "@iconify/svelte": "^3.1.4", - "@sveltejs/adapter-auto": "^2.1.0", + "@iconify-json/entypo-social": "^1.1.4", + "@iconify-json/icomoon-free": "^1.1.4", + "@iconify-json/mdi": "^1.1.52", + "@iconify-json/ph": "^1.1.5", + "@iconify-json/typcn": "^1.1.4", "@sveltejs/adapter-static": "^2.0.2", - "@sveltejs/kit": "^1.20.2", + "@sveltejs/kit": "^1.20.4", "autoprefixer": "^10.4.14", "postcss": "^8.4.24", "postcss-nesting": "^11.2.2", - "svelte": "^3.59.1", + "svelte": "^3.59.2", + "svelte-highlight": "^7.3.0", "svelte-meta-tags": "^2.8.0", "tailwindcss": "^3.3.2", + "unplugin-icons": "^0.16.3", "vite": "^4.3.9" } }, @@ -49,6 +54,28 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@antfu/install-pkg": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-0.1.1.tgz", + "integrity": "sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==", + "dev": true, + "dependencies": { + "execa": "^5.1.1", + "find-up": "^5.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@antfu/utils": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.4.tgz", + "integrity": "sha512-qe8Nmh9rYI/HIspLSTwtbMFPj6dISG6+dJnOguTlPNXtCvS2uezdxscVBb7/3DrmNbQK49TDqpkSQ1chbRGdpQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, "node_modules/@babel/helper-string-parser": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", @@ -435,19 +462,49 @@ "node": ">=12" } }, - "node_modules/@iconify/svelte": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@iconify/svelte/-/svelte-3.1.4.tgz", - "integrity": "sha512-YDwQlN46ka8KPRayDb7TivmkAPizfTXi6BSRNqa1IV0+byA907n8JcgQafA7FD//pW5XCuuAhVx6uRbKTo+CfA==", + "node_modules/@iconify-json/entypo-social": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@iconify-json/entypo-social/-/entypo-social-1.1.4.tgz", + "integrity": "sha512-i/DMR+LDyqufjkEJRfJtTBdo8gEabFN0HzE+dTWMrm1ZHEuJNpLY0y86TdAsHKmpnW59OlGUzGJ/hH4Xg0CHuQ==", "dev": true, "dependencies": { - "@iconify/types": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/cyberalien" - }, - "peerDependencies": { - "svelte": "*" + "@iconify/types": "*" + } + }, + "node_modules/@iconify-json/icomoon-free": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@iconify-json/icomoon-free/-/icomoon-free-1.1.4.tgz", + "integrity": "sha512-HrUpi+0lwTS+jkbjFwLOeO/u2BuF3zWbS/AUOJEGbcXdhkX7uBRWa/V8IF9cFVhmd72mpp6Nk2Ic1h+R/cBpww==", + "dev": true, + "dependencies": { + "@iconify/types": "*" + } + }, + "node_modules/@iconify-json/mdi": { + "version": "1.1.52", + "resolved": "https://registry.npmjs.org/@iconify-json/mdi/-/mdi-1.1.52.tgz", + "integrity": "sha512-tLzpFcmoGw1/jHcl+BshUd4bqvP4755OUluaARsuKskTp2aIPIAkRQOhzJGpry9CZ0i82z0alq4HrKrp9uvj4A==", + "dev": true, + "dependencies": { + "@iconify/types": "*" + } + }, + "node_modules/@iconify-json/ph": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@iconify-json/ph/-/ph-1.1.5.tgz", + "integrity": "sha512-iLXq3nohfGge22gL2tZmQ2WHBKkKkIbGWrkuyC8arckS4PWaONyh4A+uDPtSek9QbYDvi9AE2+NxWkNZhANotA==", + "dev": true, + "dependencies": { + "@iconify/types": "*" + } + }, + "node_modules/@iconify-json/typcn": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@iconify-json/typcn/-/typcn-1.1.4.tgz", + "integrity": "sha512-zMpo21Vmb3Gwfi4ppxkafgOMi80BEFwiHhUYIrMqCWEpLBVOj+KpcrP3Tl3kQ9UgLxMRBFoQq/CYLLjqRG6TWA==", + "dev": true, + "dependencies": { + "@iconify/types": "*" } }, "node_modules/@iconify/types": { @@ -456,6 +513,20 @@ "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", "dev": true }, + "node_modules/@iconify/utils": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-2.1.6.tgz", + "integrity": "sha512-WJNcj/mmFQoYok+576EexlCQe/g2tZ8X9jR4QLo++z6DlVqrjwt7FBYetTQ3iyTtrPMFHcAx0JiCqtUz30XG5A==", + "dev": true, + "dependencies": { + "@antfu/install-pkg": "^0.1.1", + "@antfu/utils": "^0.7.4", + "@iconify/types": "^2.0.0", + "debug": "^4.3.4", + "kolorist": "^1.8.0", + "local-pkg": "^0.4.3" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", @@ -550,13 +621,13 @@ "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==" }, "node_modules/@sentry-internal/tracing": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.55.2.tgz", - "integrity": "sha512-yBW+R7NfwLrOjpwOJHoOSvGDDoM3ZKod5OKXi7Gd5tYqVm1mCaL0n2/wlNMcGTbPbulLBtgzjoTU1bPJAGhmYw==", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.56.0.tgz", + "integrity": "sha512-OKI4Pz/O13gng8hT9rNc+gRV3+P7nnk1HnHlV8fgaQydS6DsRxoDL1sHa42tZGbh7K9jqNAP3TC6VjBOsr2tXA==", "dependencies": { - "@sentry/core": "7.55.2", - "@sentry/types": "7.55.2", - "@sentry/utils": "7.55.2", + "@sentry/core": "7.56.0", + "@sentry/types": "7.56.0", + "@sentry/utils": "7.56.0", "tslib": "^1.9.3" }, "engines": { @@ -564,15 +635,15 @@ } }, "node_modules/@sentry/browser": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-7.55.2.tgz", - "integrity": "sha512-RgA4KOD6t8XHVLm6D2oTh9KW19g3DoQ0QsrUmAq4+giSj2AyDW67VP2V4E72mCZ9Ln9AkNhY0Eh3XuD3opiFQA==", - "dependencies": { - "@sentry-internal/tracing": "7.55.2", - "@sentry/core": "7.55.2", - "@sentry/replay": "7.55.2", - "@sentry/types": "7.55.2", - "@sentry/utils": "7.55.2", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-7.56.0.tgz", + "integrity": "sha512-qpyyw+NM/psbNAYMlTCCdWwxHHcogppEQ+Q40jGE4sKP2VRIjjyteJkUcaEMoGpbJXx9puzTWbpzqlQ8r15Now==", + "dependencies": { + "@sentry-internal/tracing": "7.56.0", + "@sentry/core": "7.56.0", + "@sentry/replay": "7.56.0", + "@sentry/types": "7.56.0", + "@sentry/utils": "7.56.0", "tslib": "^1.9.3" }, "engines": { @@ -628,12 +699,12 @@ } }, "node_modules/@sentry/core": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.55.2.tgz", - "integrity": "sha512-clzQirownxqADv9+fopyMJTHzaoWedkN2+mi4ro1LxjLgROdXBFurMCC1nT+7cH/xvQ5gMIRkM/y/4gRtKy2Ew==", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.56.0.tgz", + "integrity": "sha512-Nuyyfh09Yz27kPo74fXHlrdmZeK6zrlJVtxQ6LkwuoaTBcNcesNXVaOtr6gjvUGUmsfriVPP3Jero5LXufV7GQ==", "dependencies": { - "@sentry/types": "7.55.2", - "@sentry/utils": "7.55.2", + "@sentry/types": "7.56.0", + "@sentry/utils": "7.56.0", "tslib": "^1.9.3" }, "engines": { @@ -641,12 +712,12 @@ } }, "node_modules/@sentry/integrations": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.55.2.tgz", - "integrity": "sha512-QgHx7MKMLMx1e5XgQyeUYtZA+xPc7IjS0MaZTpIRehtxD8Fg1tWkOxV4PP2nUXksLjfkoISo0jpYLtuDSCGFTw==", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.56.0.tgz", + "integrity": "sha512-0d/E/R3MW+5bQ9wcHPD0h/B2KFOpUt+wQgN1kNk7atY12auDzHKuGCjPP87D/xVyRoma3ErFqZCRqwtvCj1cfQ==", "dependencies": { - "@sentry/types": "7.55.2", - "@sentry/utils": "7.55.2", + "@sentry/types": "7.56.0", + "@sentry/utils": "7.56.0", "localforage": "^1.8.1", "tslib": "^1.9.3" }, @@ -655,14 +726,14 @@ } }, "node_modules/@sentry/node": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/node/-/node-7.55.2.tgz", - "integrity": "sha512-43lGfMFFUD38Xerc4DqIuQkEOETHCh31JHUTI6r/gXdzmcKpWRscgH4nAcAUoCu+Myrv0fVXsOa12FM4DPfr8A==", - "dependencies": { - "@sentry-internal/tracing": "7.55.2", - "@sentry/core": "7.55.2", - "@sentry/types": "7.55.2", - "@sentry/utils": "7.55.2", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/node/-/node-7.56.0.tgz", + "integrity": "sha512-QXbWy/ypRxfFd8iP6zLvHInYZyjGKPrkVNYt43mhKAZHm764NxX/29vDfj1FztgG9Z6lVLIG2eyqTvLruYmsWw==", + "dependencies": { + "@sentry-internal/tracing": "7.56.0", + "@sentry/core": "7.56.0", + "@sentry/types": "7.56.0", + "@sentry/utils": "7.56.0", "cookie": "^0.4.1", "https-proxy-agent": "^5.0.0", "lru_map": "^0.3.3", @@ -673,26 +744,26 @@ } }, "node_modules/@sentry/replay": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/replay/-/replay-7.55.2.tgz", - "integrity": "sha512-G9iAcI9bvy5X8fvdz0QxF3LJ8oGB0Vxt0iOPdRZYhjIcPbNpE3NaeT6xZlNX1pCcHLroE6BMRF/6TTalcl5Erw==", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/replay/-/replay-7.56.0.tgz", + "integrity": "sha512-bvjiJK1+SM/paLapuL+nEJ8CIF1bJqi0nnFyxUIi2L5L6yb2uMwfyT3IQ+kz0cXJsLdb3HN4WMphVjyiU9pFdg==", "dependencies": { - "@sentry/core": "7.55.2", - "@sentry/types": "7.55.2", - "@sentry/utils": "7.55.2" + "@sentry/core": "7.56.0", + "@sentry/types": "7.56.0", + "@sentry/utils": "7.56.0" }, "engines": { "node": ">=12" } }, "node_modules/@sentry/svelte": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/svelte/-/svelte-7.55.2.tgz", - "integrity": "sha512-xXyupAc34pTtZJZ2caAbFORn4dG8fn5B3I7PzcvBDF4V01H6GMygsyZMyKflegM8x1+bqVzgd/ALYpG9vZaogw==", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/svelte/-/svelte-7.56.0.tgz", + "integrity": "sha512-dmyDWdbJbikQnbupbl20CgZazpGyz1p0AlS3Z99aWr8RKWOqYs6zsfijdsV5UQ6blxSuWztZg2sD9++WxPRtgw==", "dependencies": { - "@sentry/browser": "7.55.2", - "@sentry/types": "7.55.2", - "@sentry/utils": "7.55.2", + "@sentry/browser": "7.56.0", + "@sentry/types": "7.56.0", + "@sentry/utils": "7.56.0", "magic-string": "^0.30.0", "tslib": "^1.9.3" }, @@ -704,17 +775,17 @@ } }, "node_modules/@sentry/sveltekit": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/sveltekit/-/sveltekit-7.55.2.tgz", - "integrity": "sha512-KW6kuL3WTFNy4cU8NbtW56uaRmNGUfHWMYK7+mCEB7XZxmaA78I42m9qj3xDWHa4GFfcpYpe9F4rsMb6XMVXYw==", - "dependencies": { - "@sentry-internal/tracing": "7.55.2", - "@sentry/core": "7.55.2", - "@sentry/integrations": "7.55.2", - "@sentry/node": "7.55.2", - "@sentry/svelte": "7.55.2", - "@sentry/types": "7.55.2", - "@sentry/utils": "7.55.2", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/sveltekit/-/sveltekit-7.56.0.tgz", + "integrity": "sha512-yuHZ9azMGD+Zl3S7+1hwVugNzN2hk+7iEFZlfPW+q8ZSRZcDOULVL63EHoTFWH1gnusu6dRSbwj4BT3GvVOmWg==", + "dependencies": { + "@sentry-internal/tracing": "7.56.0", + "@sentry/core": "7.56.0", + "@sentry/integrations": "7.56.0", + "@sentry/node": "7.56.0", + "@sentry/svelte": "7.56.0", + "@sentry/types": "7.56.0", + "@sentry/utils": "7.56.0", "@sentry/vite-plugin": "^0.6.0", "magicast": "0.2.8", "sorcery": "0.11.0" @@ -727,30 +798,30 @@ } }, "node_modules/@sentry/tracing": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/tracing/-/tracing-7.55.2.tgz", - "integrity": "sha512-hVhz/XvZ4vE9hgkGkUOdXuJ6CxUDKe0Zp+WUAxU1s48onN7Yia9yQYtDx4ZpTDrJw2ap4QgHwGK4PH+PUMN3Rg==", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/tracing/-/tracing-7.56.0.tgz", + "integrity": "sha512-Qy7lJdC2YBk9T8JFt4da7xHB3pTZH6yUiIwo5edmSBv2cY6MQ0QZgLzsjJurjf47+/WecVYYKdye9q4twsBlDA==", "dependencies": { - "@sentry-internal/tracing": "7.55.2" + "@sentry-internal/tracing": "7.56.0" }, "engines": { "node": ">=8" } }, "node_modules/@sentry/types": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.55.2.tgz", - "integrity": "sha512-mAtkA8wvUDrLjAAmy9tjn+NiXcxVz/ltbslTKaIW6JNgVRz5kMt1Ny8RJsgqaZqa4LFP8q+IvWw4Vd91kb57rA==", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.56.0.tgz", + "integrity": "sha512-5WjhVOQm75ItOytOx2jTx+5yw8/qJ316+g1Di8dS9+kgIi1zniqdMcX00C2yYe3FMUgFB49PegCUYulm9Evapw==", "engines": { "node": ">=8" } }, "node_modules/@sentry/utils": { - "version": "7.55.2", - "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.55.2.tgz", - "integrity": "sha512-Yv9XtbOESdN7bkK2AMrKsmKMF5OOVv5v5hVcOqXtSTw1t2oMAtRjXXqGpUo+TkdTOjeoX6dr19ozVFHaGvqHkw==", + "version": "7.56.0", + "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.56.0.tgz", + "integrity": "sha512-wgeX7bufxc//TjjSIE+gCMm8hVId7Jzvc+f441bYrWnNZBuzPIDW2BummCcPrKzSYe5GeYZDTZGV8YZGMLGBjw==", "dependencies": { - "@sentry/types": "7.55.2", + "@sentry/types": "7.56.0", "tslib": "^1.9.3" }, "engines": { @@ -768,18 +839,6 @@ "node": ">= 10" } }, - "node_modules/@sveltejs/adapter-auto": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-2.1.0.tgz", - "integrity": "sha512-o2pZCfATFtA/Gw/BB0Xm7k4EYaekXxaPGER3xGSY3FvzFJGTlJlZjBseaXwYSM94lZ0HniOjTokN3cWaLX6fow==", - "dev": true, - "dependencies": { - "import-meta-resolve": "^3.0.0" - }, - "peerDependencies": { - "@sveltejs/kit": "^1.0.0" - } - }, "node_modules/@sveltejs/adapter-static": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-2.0.2.tgz", @@ -1101,9 +1160,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001503", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001503.tgz", - "integrity": "sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==", + "version": "1.0.30001506", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz", + "integrity": "sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw==", "dev": true, "funding": [ { @@ -1179,6 +1238,20 @@ "node": ">= 0.6" } }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", @@ -1248,9 +1321,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.433", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.433.tgz", - "integrity": "sha512-MGO1k0w1RgrfdbLVwmXcDhHHuxCn2qRgR7dYsJvWFKDttvYPx6FNzCGG0c/fBBvzK2LDh3UV7Tt9awnHnvAAUQ==", + "version": "1.4.435", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.435.tgz", + "integrity": "sha512-B0CBWVFhvoQCW/XtjRzgrmqcgVWg6RXOEM/dK59+wFV93BFGR6AeNKc4OyhM+T3IhJaOOG8o/V+33Y2mwJWtzw==", "dev": true }, "node_modules/es6-object-assign": { @@ -1325,6 +1398,29 @@ "node": ">=4" } }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, "node_modules/fast-glob": { "version": "3.2.12", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", @@ -1446,6 +1542,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/glob": { "version": "9.3.2", "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.2.tgz", @@ -1549,6 +1657,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/highlight.js": { + "version": "11.8.0", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.8.0.tgz", + "integrity": "sha512-MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -1561,21 +1678,20 @@ "node": ">= 6" } }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, "node_modules/immediate": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" }, - "node_modules/import-meta-resolve": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-3.0.0.tgz", - "integrity": "sha512-4IwhLhNNA8yy445rPjD/lWh++7hMDOml2eHtd58eG7h+qK3EryMuuRbsHGPikCoAgIkkDnckKfWSk2iDla/ejg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -1695,6 +1811,18 @@ "node": ">=0.12.0" } }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-typed-array": { "version": "1.1.10", "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", @@ -1735,6 +1863,12 @@ "node": ">=6" } }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "dev": true + }, "node_modules/lie": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz", @@ -1758,6 +1892,18 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, + "node_modules/local-pkg": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", + "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, "node_modules/localforage": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", @@ -1825,6 +1971,12 @@ "node": ">= 12" } }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", @@ -1858,6 +2010,15 @@ "node": ">=10.0.0" } }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/minimatch": { "version": "7.4.6", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", @@ -1990,6 +2151,18 @@ "node": ">=0.10.0" } }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -2039,6 +2212,21 @@ "wrappy": "1" } }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -2083,6 +2271,15 @@ "node": ">=0.10.0" } }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", @@ -2138,9 +2335,9 @@ } }, "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, "engines": { "node": ">= 6" @@ -2526,6 +2723,33 @@ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==" }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, "node_modules/sirv": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", @@ -2577,6 +2801,15 @@ "node": ">=10.0.0" } }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/sucrase": { "version": "3.32.0", "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", @@ -2654,9 +2887,9 @@ } }, "node_modules/svelte": { - "version": "3.59.1", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.1.tgz", - "integrity": "sha512-pKj8fEBmqf6mq3/NfrB9SLtcJcUvjYSWyePlfCqN9gujLB25RitWK8PvFzlwim6hD/We35KbPlRteuA6rnPGcQ==", + "version": "3.59.2", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", + "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", "engines": { "node": ">= 8" } @@ -2669,6 +2902,15 @@ "blurhash": "^1.1.3" } }, + "node_modules/svelte-highlight": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/svelte-highlight/-/svelte-highlight-7.3.0.tgz", + "integrity": "sha512-59oE9/xOFXAdT97qXIt6HMlzL2f+0YNQ+BArzRONwCW96ElxX7TGme1kU5s3tsk1D88G5dhBixcP1chOGOkVsg==", + "dev": true, + "dependencies": { + "highlight.js": "11.8.0" + } + }, "node_modules/svelte-hmr": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.2.tgz", @@ -2842,6 +3084,56 @@ "webpack-virtual-modules": "^0.5.0" } }, + "node_modules/unplugin-icons": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/unplugin-icons/-/unplugin-icons-0.16.3.tgz", + "integrity": "sha512-hivVVr6++WHSj6Iz+rjTa14/ALMYT+PFd2sPtTBKlQR3cdzui1VwM72TzSu94NkDm/KVncvOIiBwoHwUPeL9bg==", + "dev": true, + "dependencies": { + "@antfu/install-pkg": "^0.1.1", + "@antfu/utils": "^0.7.4", + "@iconify/utils": "^2.1.6", + "debug": "^4.3.4", + "kolorist": "^1.8.0", + "local-pkg": "^0.4.3", + "unplugin": "^1.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@svgr/core": ">=7.0.0", + "@vue/compiler-sfc": "^3.0.2 || ^2.7.0", + "vue-template-compiler": "^2.6.12", + "vue-template-es2015-compiler": "^1.9.0" + }, + "peerDependenciesMeta": { + "@svgr/core": { + "optional": true + }, + "@vue/compiler-sfc": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + }, + "vue-template-es2015-compiler": { + "optional": true + } + } + }, + "node_modules/unplugin-icons/node_modules/unplugin": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.3.1.tgz", + "integrity": "sha512-h4uUTIvFBQRxUKS2Wjys6ivoeofGhxzTe2sRWlooyjHXVttcVfV/JiavNd3d4+jty0SVV0dxGw9AkY9MwiaCEw==", + "dev": true, + "dependencies": { + "acorn": "^8.8.2", + "chokidar": "^3.5.3", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.5.0" + } + }, "node_modules/update-browserslist-db": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", diff --git a/front/package.json b/front/package.json index 18e1204c0..8b3241a9f 100644 --- a/front/package.json +++ b/front/package.json @@ -8,22 +8,27 @@ "preview": "vite preview" }, "devDependencies": { - "@iconify/svelte": "^3.1.4", - "@sveltejs/adapter-auto": "^2.1.0", + "@iconify-json/entypo-social": "^1.1.4", + "@iconify-json/icomoon-free": "^1.1.4", + "@iconify-json/mdi": "^1.1.52", + "@iconify-json/ph": "^1.1.5", + "@iconify-json/typcn": "^1.1.4", "@sveltejs/adapter-static": "^2.0.2", - "@sveltejs/kit": "^1.20.2", + "@sveltejs/kit": "^1.20.4", "autoprefixer": "^10.4.14", "postcss": "^8.4.24", "postcss-nesting": "^11.2.2", - "svelte": "^3.59.1", + "svelte": "^3.59.2", + "svelte-highlight": "^7.3.0", "svelte-meta-tags": "^2.8.0", "tailwindcss": "^3.3.2", + "unplugin-icons": "^0.16.3", "vite": "^4.3.9" }, "type": "module", "dependencies": { "@accuser/svelte-plausible-analytics": "github:dgrebb/svelte-plausible-analytics#release/v0.4.0", - "@sentry/sveltekit": "^7.55.2", + "@sentry/sveltekit": "^7.56.0", "blurhash": "^1.1.5", "svelte-blurhash": "^1.2.1", "svelte-markdown": "^0.2.3" diff --git a/front/src/app.html b/front/src/app.html index a85925466..d9e86de7f 100644 --- a/front/src/app.html +++ b/front/src/app.html @@ -4,21 +4,11 @@ %sveltekit.head% - -
+ +