Compare commits

..

2 Commits

Author SHA1 Message Date
fjadmin a2d8dd1aba Merge branch 'main' into renovate/antora-cli-3.x
ci/woodpecker/push/lint_general Pipeline was successful Details
ci/woodpecker/push/documentation Pipeline was successful Details
ci/woodpecker/pr/lint_general Pipeline was successful Details
ci/woodpecker/pr/documentation Pipeline was successful Details
ci/woodpecker/push/backend Pipeline was successful Details
ci/woodpecker/pull_request_closed/lint_general Pipeline was successful Details
ci/woodpecker/pull_request_closed/documentation Pipeline was successful Details
ci/woodpecker/pull_request_closed/frontend Pipeline was successful Details
ci/woodpecker/pull_request_closed/backend Pipeline was successful Details
2024-01-26 16:52:15 +00:00
Renovate Bot 7213d021e9 chore(deps): update dependency @antora/cli to v3.1.7
ci/woodpecker/push/lint_general Pipeline was successful Details
ci/woodpecker/push/documentation Pipeline was successful Details
ci/woodpecker/pr/documentation Pipeline was successful Details
ci/woodpecker/pr/lint_general Pipeline was successful Details
2024-01-25 21:10:20 +00:00
33 changed files with 1258 additions and 1726 deletions

2
.gitignore vendored
View File

@ -107,5 +107,3 @@ docker/target/*.jar
version-lock.sh version-lock.sh
.DS_Store .DS_Store
.pnpm-store .pnpm-store
infrastructure/.env

View File

@ -1,4 +1,3 @@
# Enable auto-env through the sdkman_auto_env config # Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below # Add key=value pairs of SDKs to use below
java=21.0.2-tem java=17.0.8-tem
gradle=8.5

View File

@ -1,48 +1,43 @@
--- ---
variables: variables:
- &java_image "gradle:8.5.0-jdk21@sha256:d64047f74f0aefaae35916a3d29a2d8d5890bc4a5cc8f8d14f898c0afb5c8a16" - &java_image "gradle:8.4.0-jdk17"
when: when:
path: "app/**" path: "app/**"
event: [push, tag]
clone: clone:
git: git:
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8 image: woodpeckerci/plugin-git
settings: settings:
skip_verify: true skip_verify: true
partial: false partial: false
tags: true tags: true
steps: steps:
"prepare:version": "prepare:version":
image: bitnami/git:2.43.0@sha256:3932583adf73c9e7e75232c0a3637fb0ff7833d7a81c858e74468df0dbd89cf1 image: bitnami/git:2.42.1
commands: commands:
- . ./version.sh - . ./version.sh
"lint:style": "lint:style":
group: lint
image: *java_image image: *java_image
commands: commands:
- gradle --no-daemon spotlessCheck - gradle --no-daemon spotlessCheck
depends_on: ["prepare:version"]
"lint:dockerfile": "lint:dockerfile":
image: ghcr.io/hadolint/hadolint:latest-debian@sha256:9cef74a390694cdc01dd119cbba9adac5bb6671ce67d8d79eb7ec68f497a3684 group: lint
image: ghcr.io/hadolint/hadolint:latest-debian
commands: commands:
- hadolint --version - hadolint --version
depends_on: ["prepare:version"]
"build:java": "build:java":
depends_on: group: build
- lint:style
- lint:dockerfile
image: *java_image image: *java_image
commands: commands:
- . ./version-lock.sh - . ./version-lock.sh
- ./gradlew -Pversion=$CD_CURRENT_VERSION build - ./gradlew -Pversion=$CD_CURRENT_VERSION build
"analyze:sbom": "analyze:sbom":
depends_on: ["build:java"]
image: *java_image image: *java_image
commands: commands:
- ./gradlew cyclonedxBom - ./gradlew cyclonedxBom
"deploy:backend": "deploy:backend":
depends_on: ["analyze:sbom"] image: alpine:latest
image: alpine:latest@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b
commands: commands:
- echo "deploy backend" - echo "deploy backend"
- env - env

View File

@ -1,12 +1,11 @@
--- ---
when: when:
path: "documentation/**" path: "documentation/**"
event: [push, tag]
variables: variables:
- &frontend_image "cl00e9ment/node.js-builder:git@sha256:c3f6622a282e81536fa07c0218dfc35aa4141076679d9ea73839ae0032bd57cb" - &frontend_image "cl00e9ment/node.js-builder:git"
clone: clone:
git: git:
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8 image: woodpeckerci/plugin-git
partial: false partial: false
settings: settings:
skip_verify: true skip_verify: true
@ -29,7 +28,7 @@ steps:
- pnpm antora generate --stacktrace antora-playbook.yml - pnpm antora generate --stacktrace antora-playbook.yml
directory: documentation directory: documentation
"assemble:documentation": "assemble:documentation":
image: gcr.io/kaniko-project/executor:v1.20.0-debug@sha256:6976d731d1fc2a4e89986d833c1538946bd36b43e21fb1d0db38fe9499adc49c image: gcr.io/kaniko-project/executor:v1.18.0-debug
commands: # Test if using --insecure can be used to directly push to the registry commands: # Test if using --insecure can be used to directly push to the registry
- echo "$CI_WORKSPACE" - echo "$CI_WORKSPACE"
- echo "$PWD" - echo "$PWD"
@ -43,7 +42,7 @@ steps:
- ls -lh - ls -lh
directory: documentation directory: documentation
"publish:documentation": "publish:documentation":
image: alpine/crane@sha256:9955edb61b8cf8d8820a6caef232bca275f064aa3c23b050645da42fba62c7df # because the official crane image is not compatible with woodpecker (no /bin/sh) image: alpine/crane # because the official crane image is not compatible with woodpecker (no /bin/sh)
commands: commands:
- crane push --insecure image.tar "container.demo.rattermeyer.de/${CI_REPO_OWNER}/${CI_REPO_NAME}" - crane push --insecure image.tar "container.demo.rattermeyer.de/${CI_REPO_OWNER}/${CI_REPO_NAME}"
directory: documentation directory: documentation

View File

@ -1,57 +1,48 @@
--- ---
when: when:
path: "frontend/**" path: "frontend/**"
event: [push, tag]
variables: variables:
- &frontend_image "cl00e9ment/node.js-builder:git@sha256:c3f6622a282e81536fa07c0218dfc35aa4141076679d9ea73839ae0032bd57cb" - &frontend_image "cl00e9ment/node.js-builder:git"
clone: clone:
git: git:
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8 image: woodpeckerci/plugin-git
settings: settings:
skip_verify: true skip_verify: true
partial: false partial: false
tags: true tags: true
steps: steps:
"prepare:version": "prepare:version":
image: bitnami/git:2.43.0@sha256:3932583adf73c9e7e75232c0a3637fb0ff7833d7a81c858e74468df0dbd89cf1 image: bitnami/git:2.42.1
group: prepare
commands: commands:
- . ./version.sh - . ./version.sh
"prepare:frontend": "prepare:frontend":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:version"] group: prepare
commands: commands:
- pnpm install --frozen-lockfile - pnpm install
- find . -name "prettier"
directory: frontend directory: frontend
"lint:style": "lint:style":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- sleep 7s
- find . -name "prettier"
- pnpm run prettier - pnpm run prettier
directory: frontend directory: frontend
"lint:analyze": "lint:analyze":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- sleep 7s
- pnpm run lint - pnpm run lint
directory: frontend directory: frontend
"build:frontend": "build:frontend":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- sleep 7s
- pnpm run build - pnpm run build
directory: frontend directory: frontend
"build:tsc": "build:tsc":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm add typescript - pnpm add typescript
- pnpm run typecheck - pnpm run typecheck
@ -59,14 +50,14 @@ steps:
"analyze:sbom": "analyze:sbom":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- sleep 7s - rm -rf node_modules
- npm install
- npx @cyclonedx/cyclonedx-npm --output-file bom.json
directory: frontend directory: frontend
"deploy:frontend": "deploy:frontend":
image: alpine:latest@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b image: alpine:latest
depends_on: ["build:frontend"]
commands: commands:
- echo "deploy frontend" - echo "deploy frontend"
- env - env
@ -74,5 +65,5 @@ steps:
when: when:
- event: [manual] - event: [manual]
#depends_on: depends_on:
# - "lint_general" - "lint_general"

View File

@ -1,20 +1,18 @@
--- ---
when:
event: [push, tag]
clone: clone:
git: git:
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8 image: woodpeckerci/plugin-git
settings: settings:
skip_verify: true skip_verify: true
steps: steps:
"prepare:commitlint": "prepare:commitlint":
image: bitnami/git:2.43.0@sha256:3932583adf73c9e7e75232c0a3637fb0ff7833d7a81c858e74468df0dbd89cf1 image: bitnami/git:2.42.1
commands: commands:
- git log -1 --pretty=%B >> commitlint.txt - git log -1 --pretty=%B >> commitlint.txt
"lint:commitlint": "lint:commitlint":
group: lint
image: node:lts-slim image: node:lts-slim
depends_on: ["prepare:commitlint"]
commands: commands:
- npm install --save-dev conventional-changelog-conventionalcommits @commitlint/config-conventional commitlint@latest - npm install --save-dev conventional-changelog-conventionalcommits @commitlint/config-conventional commitlint@latest
- cat commitlint.txt - cat commitlint.txt
@ -23,13 +21,15 @@ steps:
- branch: [main, dev] - branch: [main, dev]
event: push event: push
"lint:precommit": "lint:precommit":
image: python:3.12.1-bullseye@sha256:2d5f7c8645d454ef5bbfebec83df0f2624fb3d47ea47920484c6d140835c4cdb group: lint
image: python:3.11.6-bullseye
commands: commands:
- pip install pre-commit - pip install pre-commit
- pre-commit install - pre-commit install
- pre-commit run --all-files - pre-commit run --all-files
"lint:credentials": "lint:credentials":
image: ghcr.io/gitleaks/gitleaks:latest@sha256:6945c62ca019ead32bc337ab0c9fd055e98d82961765d38b7ccccc84dae95d0f group: lint
image: ghcr.io/gitleaks/gitleaks:latest
commands: commands:
- export HOME=/home/gitleaks - export HOME=/home/gitleaks
- gitleaks detect - gitleaks detect

View File

@ -4,14 +4,14 @@ when:
event: [push] event: [push]
clone: clone:
git: git:
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8 image: woodpeckerci/plugin-git
settings: settings:
skip_verify: true skip_verify: true
partial: true partial: true
steps: steps:
"version:update": "version:update":
image: bitnami/git:2.43.0@sha256:3932583adf73c9e7e75232c0a3637fb0ff7833d7a81c858e74468df0dbd89cf1 image: bitnami/git:2.42.1
commands: commands:
- echo "$CI_COMMIT_MESSAGE" | ./version-auto-update.sh - echo "$CI_COMMIT_MESSAGE" | ./version-auto-update.sh
- git config --global http.sslVerify false - git config --global http.sslVerify false

View File

@ -1 +0,0 @@
trigger

View File

@ -4,7 +4,7 @@
plugins { plugins {
id("com.opitzconsulting.demo.ci.java-application-conventions") id("com.opitzconsulting.demo.ci.java-application-conventions")
id("org.springframework.boot") version "3.2.2" id("org.springframework.boot") version "3.1.5"
id("io.spring.dependency-management") version "1.1.4" id("io.spring.dependency-management") version "1.1.4"
} }
@ -31,7 +31,7 @@ dependencies {
} }
dependencyManagement { dependencyManagement {
imports { mavenBom("org.springframework.modulith:spring-modulith-bom:1.1.2") } imports { mavenBom("org.springframework.modulith:spring-modulith-bom:1.0.2") }
} }
application { application {

View File

@ -1,5 +1,5 @@
plugins { plugins {
id("com.diffplug.spotless") version "6.25.0" id("com.diffplug.spotless") version "6.22.0"
id("maven-publish") id("maven-publish")
} }

View File

@ -15,5 +15,5 @@ repositories {
dependencies { dependencies {
// Use the Kotlin DSL plugin API to apply plugins from the Gradle Plugin Portal. // Use the Kotlin DSL plugin API to apply plugins from the Gradle Plugin Portal.
implementation("org.cyclonedx.bom:org.cyclonedx.bom.gradle.plugin:1.8.2") implementation("org.cyclonedx.bom:org.cyclonedx.bom.gradle.plugin:1.7.2")
} }

View File

@ -16,11 +16,11 @@ repositories {
dependencies { dependencies {
constraints { constraints {
// Define dependency versions as constraints // Define dependency versions as constraints
implementation("org.apache.commons:commons-text:1.11.0") implementation("org.apache.commons:commons-text:1.10.0")
} }
// Use JUnit Jupiter for testing. // Use JUnit Jupiter for testing.
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1") testImplementation("org.junit.jupiter:junit-jupiter:5.9.3")
testRuntimeOnly("org.junit.platform:junit-platform-launcher") testRuntimeOnly("org.junit.platform:junit-platform-launcher")
} }

View File

@ -1,5 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'], module.exports = { extends: ['@commitlint/config-conventional'] }
"rules": {
"body-max-line-length": () => [0, "always", 200]
}
}

View File

@ -1,4 +1,4 @@
FROM nginx:1.25.3-alpine@sha256:d12e6f7153fae36843aaeed8144c39956698e084e2e898891fa0cc8fe8f6c95c FROM nginx:1.25.3-alpine
RUN mkdir -p /docroot /var/run \ RUN mkdir -p /docroot /var/run \
&& chgrp -R 0 /etc/nginx \ && chgrp -R 0 /etc/nginx \

File diff suppressed because it is too large Load Diff

View File

@ -17,44 +17,44 @@
"last 2 versions" "last 2 versions"
], ],
"devDependencies": { "devDependencies": {
"@asciidoctor/core": "2.2.6", "@asciidoctor/core": "~2.2",
"@fontsource/roboto": "4.5.8", "@fontsource/roboto": "~4.5",
"@fontsource/roboto-mono": "4.5.10", "@fontsource/roboto-mono": "~4.5",
"autoprefixer": "9.8.8", "autoprefixer": "~9.7",
"browser-pack-flat": "3.5.0", "browser-pack-flat": "~3.4",
"browserify": "16.5.2", "browserify": "~16.5",
"cssnano": "4.1.11", "cssnano": "~4.1",
"eslint": "6.8.0", "eslint": "~6.8",
"eslint-config-standard": "14.1.1", "eslint-config-standard": "~14.1",
"eslint-plugin-import": "2.29.1", "eslint-plugin-import": "~2.20",
"eslint-plugin-node": "11.1.0", "eslint-plugin-node": "~11.1",
"eslint-plugin-promise": "4.2.1", "eslint-plugin-promise": "~4.2",
"eslint-plugin-standard": "4.0.2", "eslint-plugin-standard": "~4.0",
"fancy-log": "1.3.3", "fancy-log": "~1.3",
"fs-extra": "8.1.0", "fs-extra": "~8.1",
"gulp": "4.0.2", "gulp": "~4.0",
"gulp-cli": "2.3.0", "gulp-cli": "^2.3.0",
"gulp-concat": "2.6.1", "gulp-concat": "~2.6",
"gulp-connect": "5.7.0", "gulp-connect": "~5.7",
"gulp-eslint": "6.0.0", "gulp-eslint": "~6.0",
"gulp-imagemin": "6.2.0", "gulp-imagemin": "~6.2",
"gulp-postcss": "8.0.0", "gulp-postcss": "~8.0",
"gulp-stylelint": "13.0.0", "gulp-stylelint": "~13.0",
"gulp-uglify": "3.0.2", "gulp-uglify": "~3.0",
"gulp-vinyl-zip": "2.2.1", "gulp-vinyl-zip": "~2.2",
"handlebars": "4.7.8", "handlebars": "~4.7",
"highlight.js": "9.18.5", "highlight.js": "9.18.5",
"js-yaml": "3.13.1", "js-yaml": "~3.13",
"merge-stream": "2.0.0", "merge-stream": "~2.0",
"postcss-calc": "7.0.5", "postcss-calc": "~7.0",
"postcss-custom-properties": "9.1.1", "postcss-custom-properties": "~9.1",
"postcss-import": "12.0.1", "postcss-import": "~12.0",
"postcss-url": "8.0.0", "postcss-url": "~8.0",
"prettier-eslint": "9.0.2", "prettier-eslint": "~9.0",
"require-directory": "2.1.1", "require-directory": "~2.1",
"require-from-string": "2.0.2", "require-from-string": "~2.0",
"stylelint": "13.3.3", "stylelint": "~13.3",
"stylelint-config-standard": "20.0.0", "stylelint-config-standard": "~20.0",
"vinyl-fs": "3.0.3" "vinyl-fs": "~3.0"
} }
} }

View File

@ -6,121 +6,121 @@ settings:
devDependencies: devDependencies:
'@asciidoctor/core': '@asciidoctor/core':
specifier: 2.2.6 specifier: ~2.2
version: 2.2.6 version: 2.2.6
'@fontsource/roboto': '@fontsource/roboto':
specifier: 4.5.8 specifier: ~4.5
version: 4.5.8 version: 4.5.8
'@fontsource/roboto-mono': '@fontsource/roboto-mono':
specifier: 4.5.10 specifier: ~4.5
version: 4.5.10 version: 4.5.10
autoprefixer: autoprefixer:
specifier: 9.8.8 specifier: ~9.7
version: 9.8.8 version: 9.7.6
browser-pack-flat: browser-pack-flat:
specifier: 3.5.0 specifier: ~3.4
version: 3.5.0 version: 3.4.2
browserify: browserify:
specifier: 16.5.2 specifier: ~16.5
version: 16.5.2 version: 16.5.2
cssnano: cssnano:
specifier: 4.1.11 specifier: ~4.1
version: 4.1.11 version: 4.1.11
eslint: eslint:
specifier: 6.8.0 specifier: ~6.8
version: 6.8.0 version: 6.8.0
eslint-config-standard: eslint-config-standard:
specifier: 14.1.1 specifier: ~14.1
version: 14.1.1(eslint-plugin-import@2.29.1)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@4.2.1)(eslint-plugin-standard@4.0.2)(eslint@6.8.0) version: 14.1.1(eslint-plugin-import@2.20.2)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@4.2.1)(eslint-plugin-standard@4.0.2)(eslint@6.8.0)
eslint-plugin-import: eslint-plugin-import:
specifier: 2.29.1 specifier: ~2.20
version: 2.29.1(eslint@6.8.0) version: 2.20.2(eslint@6.8.0)
eslint-plugin-node: eslint-plugin-node:
specifier: 11.1.0 specifier: ~11.1
version: 11.1.0(eslint@6.8.0) version: 11.1.0(eslint@6.8.0)
eslint-plugin-promise: eslint-plugin-promise:
specifier: 4.2.1 specifier: ~4.2
version: 4.2.1 version: 4.2.1
eslint-plugin-standard: eslint-plugin-standard:
specifier: 4.0.2 specifier: ~4.0
version: 4.0.2(eslint@6.8.0) version: 4.0.2(eslint@6.8.0)
fancy-log: fancy-log:
specifier: 1.3.3 specifier: ~1.3
version: 1.3.3 version: 1.3.3
fs-extra: fs-extra:
specifier: 8.1.0 specifier: ~8.1
version: 8.1.0 version: 8.1.0
gulp: gulp:
specifier: 4.0.2 specifier: ~4.0
version: 4.0.2 version: 4.0.2
gulp-cli: gulp-cli:
specifier: 2.3.0 specifier: ^2.3.0
version: 2.3.0 version: 2.3.0
gulp-concat: gulp-concat:
specifier: 2.6.1 specifier: ~2.6
version: 2.6.1 version: 2.6.1
gulp-connect: gulp-connect:
specifier: 5.7.0 specifier: ~5.7
version: 5.7.0 version: 5.7.0
gulp-eslint: gulp-eslint:
specifier: 6.0.0 specifier: ~6.0
version: 6.0.0 version: 6.0.0
gulp-imagemin: gulp-imagemin:
specifier: 6.2.0 specifier: ~6.2
version: 6.2.0(gulp@4.0.2) version: 6.2.0(gulp@4.0.2)
gulp-postcss: gulp-postcss:
specifier: 8.0.0 specifier: ~8.0
version: 8.0.0 version: 8.0.0
gulp-stylelint: gulp-stylelint:
specifier: 13.0.0 specifier: ~13.0
version: 13.0.0(stylelint@13.3.3) version: 13.0.0(stylelint@13.3.3)
gulp-uglify: gulp-uglify:
specifier: 3.0.2 specifier: ~3.0
version: 3.0.2 version: 3.0.2
gulp-vinyl-zip: gulp-vinyl-zip:
specifier: 2.2.1 specifier: ~2.2
version: 2.2.1 version: 2.2.1
handlebars: handlebars:
specifier: 4.7.8 specifier: ~4.7
version: 4.7.8 version: 4.7.8
highlight.js: highlight.js:
specifier: 9.18.5 specifier: 9.18.3
version: 9.18.5 version: 9.18.3
js-yaml: js-yaml:
specifier: 3.13.1 specifier: ~3.13
version: 3.13.1 version: 3.13.1
merge-stream: merge-stream:
specifier: 2.0.0 specifier: ~2.0
version: 2.0.0 version: 2.0.0
postcss-calc: postcss-calc:
specifier: 7.0.5 specifier: ~7.0
version: 7.0.5 version: 7.0.5
postcss-custom-properties: postcss-custom-properties:
specifier: 9.1.1 specifier: ~9.1
version: 9.1.1 version: 9.1.1
postcss-import: postcss-import:
specifier: 12.0.1 specifier: ~12.0
version: 12.0.1 version: 12.0.1
postcss-url: postcss-url:
specifier: 8.0.0 specifier: ~8.0
version: 8.0.0 version: 8.0.0
prettier-eslint: prettier-eslint:
specifier: 9.0.2 specifier: ~9.0
version: 9.0.2 version: 9.0.2
require-directory: require-directory:
specifier: 2.1.1 specifier: ~2.1
version: 2.1.1 version: 2.1.1
require-from-string: require-from-string:
specifier: 2.0.2 specifier: ~2.0
version: 2.0.2 version: 2.0.2
stylelint: stylelint:
specifier: 13.3.3 specifier: ~13.3
version: 13.3.3 version: 13.3.3
stylelint-config-standard: stylelint-config-standard:
specifier: 20.0.0 specifier: ~20.0
version: 20.0.0(stylelint@13.3.3) version: 20.0.0(stylelint@13.3.3)
vinyl-fs: vinyl-fs:
specifier: 3.0.3 specifier: ~3.0
version: 3.0.3 version: 3.0.3
packages: packages:
@ -442,10 +442,6 @@ packages:
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
dev: true dev: true
/@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
/@types/keyv@3.1.4: /@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
requiresBuild: true requiresBuild: true
@ -838,17 +834,6 @@ packages:
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
dev: true dev: true
/array.prototype.findlastindex@1.2.3:
resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.5
define-properties: 1.2.1
es-abstract: 1.22.3
es-shim-unscopables: 1.0.2
get-intrinsic: 1.2.2
dev: true
/array.prototype.flat@1.3.2: /array.prototype.flat@1.3.2:
resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
@ -859,16 +844,6 @@ packages:
es-shim-unscopables: 1.0.2 es-shim-unscopables: 1.0.2
dev: true dev: true
/array.prototype.flatmap@1.3.2:
resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.5
define-properties: 1.2.1
es-abstract: 1.22.3
es-shim-unscopables: 1.0.2
dev: true
/array.prototype.reduce@1.0.6: /array.prototype.reduce@1.0.6:
resolution: {integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==} resolution: {integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
@ -960,15 +935,16 @@ packages:
hasBin: true hasBin: true
dev: true dev: true
/autoprefixer@9.8.8: /autoprefixer@9.7.6:
resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} resolution: {integrity: sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ==}
engines: {node: '>=6.0.0'}
hasBin: true hasBin: true
dependencies: dependencies:
browserslist: 4.22.1 browserslist: 4.22.1
caniuse-lite: 1.0.30001565 caniuse-lite: 1.0.30001565
chalk: 2.4.2
normalize-range: 0.1.2 normalize-range: 0.1.2
num2fraction: 1.2.2 num2fraction: 1.2.2
picocolors: 0.2.1
postcss: 7.0.39 postcss: 7.0.39
postcss-value-parser: 4.2.0 postcss-value-parser: 4.2.0
dev: true dev: true
@ -1160,8 +1136,8 @@ packages:
resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
dev: true dev: true
/browser-pack-flat@3.5.0: /browser-pack-flat@3.4.2:
resolution: {integrity: sha512-u3iJUjs+TC/NGIL2GLyIcn5ppoNZXhTWqSW/gQbGIGvQiXXCQQzr5VWfACFraXQn2JrDlyRnKLeOs5AWXzKI6A==} resolution: {integrity: sha512-TrUo6n2fGSOCYFAKkt/EkgenytAuuCI88fmXFA60aNFVHvz3CZEBTXYSvvXVpU6xpjM8lj/6vkC6Exn8KPjtPw==}
hasBin: true hasBin: true
dependencies: dependencies:
JSONStream: 1.3.5 JSONStream: 1.3.5
@ -1175,7 +1151,7 @@ packages:
path-parse: 1.0.7 path-parse: 1.0.7
scope-analyzer: 2.1.2 scope-analyzer: 2.1.2
stream-combiner: 0.2.2 stream-combiner: 0.2.2
through2: 3.0.2 through2: 2.0.5
transform-ast: 2.4.4 transform-ast: 2.4.4
umd: 3.0.3 umd: 3.0.3
wrap-comment: 1.0.1 wrap-comment: 1.0.1
@ -1826,6 +1802,11 @@ packages:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
dev: true dev: true
/contains-path@0.1.0:
resolution: {integrity: sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==}
engines: {node: '>=0.10.0'}
dev: true
/content-disposition@0.5.4: /content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.6'}
@ -2382,11 +2363,12 @@ packages:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
dev: true dev: true
/doctrine@2.1.0: /doctrine@1.5.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} resolution: {integrity: sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
dependencies: dependencies:
esutils: 2.0.3 esutils: 2.0.3
isarray: 1.0.0
dev: true dev: true
/doctrine@3.0.0: /doctrine@3.0.0:
@ -2711,7 +2693,7 @@ packages:
engines: {node: '>=0.8.0'} engines: {node: '>=0.8.0'}
dev: true dev: true
/eslint-config-standard@14.1.1(eslint-plugin-import@2.29.1)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@4.2.1)(eslint-plugin-standard@4.0.2)(eslint@6.8.0): /eslint-config-standard@14.1.1(eslint-plugin-import@2.20.2)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@4.2.1)(eslint-plugin-standard@4.0.2)(eslint@6.8.0):
resolution: {integrity: sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==} resolution: {integrity: sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==}
peerDependencies: peerDependencies:
eslint: '>=6.2.2' eslint: '>=6.2.2'
@ -2721,7 +2703,7 @@ packages:
eslint-plugin-standard: '>=4.0.0' eslint-plugin-standard: '>=4.0.0'
dependencies: dependencies:
eslint: 6.8.0 eslint: 6.8.0
eslint-plugin-import: 2.29.1(eslint@6.8.0) eslint-plugin-import: 2.20.2(eslint@6.8.0)
eslint-plugin-node: 11.1.0(eslint@6.8.0) eslint-plugin-node: 11.1.0(eslint@6.8.0)
eslint-plugin-promise: 4.2.1 eslint-plugin-promise: 4.2.1
eslint-plugin-standard: 4.0.2(eslint@6.8.0) eslint-plugin-standard: 4.0.2(eslint@6.8.0)
@ -2776,34 +2758,29 @@ packages:
regexpp: 3.2.0 regexpp: 3.2.0
dev: true dev: true
/eslint-plugin-import@2.29.1(eslint@6.8.0): /eslint-plugin-import@2.20.2(eslint@6.8.0):
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} resolution: {integrity: sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg==}
engines: {node: '>=4'} engines: {node: '>=4'}
peerDependencies: peerDependencies:
'@typescript-eslint/parser': '*' '@typescript-eslint/parser': '*'
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 eslint: 2.x - 6.x
peerDependenciesMeta: peerDependenciesMeta:
'@typescript-eslint/parser': '@typescript-eslint/parser':
optional: true optional: true
dependencies: dependencies:
array-includes: 3.1.7 array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2 array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2 contains-path: 0.1.0
debug: 3.2.7 debug: 2.6.9
doctrine: 2.1.0 doctrine: 1.5.0
eslint: 6.8.0 eslint: 6.8.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-module-utils: 2.8.0(eslint-import-resolver-node@0.3.9)(eslint@6.8.0) eslint-module-utils: 2.8.0(eslint-import-resolver-node@0.3.9)(eslint@6.8.0)
hasown: 2.0.0 has: 1.0.4
is-core-module: 2.13.1
is-glob: 4.0.3
minimatch: 3.1.2 minimatch: 3.1.2
object.fromentries: 2.0.7
object.groupby: 1.0.1
object.values: 1.1.7 object.values: 1.1.7
semver: 6.3.1 read-pkg-up: 2.0.0
tsconfig-paths: 3.15.0 resolve: 1.22.8
transitivePeerDependencies: transitivePeerDependencies:
- eslint-import-resolver-typescript - eslint-import-resolver-typescript
- eslint-import-resolver-webpack - eslint-import-resolver-webpack
@ -3436,6 +3413,13 @@ packages:
pinkie-promise: 2.0.1 pinkie-promise: 2.0.1
dev: true dev: true
/find-up@2.1.0:
resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
engines: {node: '>=4'}
dependencies:
locate-path: 2.0.0
dev: true
/find-up@4.1.0: /find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -4242,10 +4226,9 @@ packages:
resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==} resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==}
dev: true dev: true
/highlight.js@9.18.5: /highlight.js@9.18.3:
resolution: {integrity: sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA==} resolution: {integrity: sha512-zBZAmhSupHIl5sITeMqIJnYCDfAEc3Gdkqj65wC1lpI468MMQeeQkhcIAvk+RylAkxrCcI9xy9piHiXeQ1BdzQ==}
deprecated: Support has ended for 9.x series. Upgrade to @latest deprecated: Version no longer supported. Upgrade to @latest
requiresBuild: true
dev: true dev: true
/hmac-drbg@1.0.1: /hmac-drbg@1.0.1:
@ -4309,7 +4292,7 @@ packages:
depd: 1.1.2 depd: 1.1.2
inherits: 2.0.3 inherits: 2.0.3
setprototypeof: 1.1.0 setprototypeof: 1.1.0
statuses: 1.5.0 statuses: 1.4.0
dev: true dev: true
/http-errors@2.0.0: /http-errors@2.0.0:
@ -5088,13 +5071,6 @@ packages:
jsonify: 0.0.1 jsonify: 0.0.1
dev: true dev: true
/json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
dependencies:
minimist: 1.2.8
dev: true
/json5@2.2.3: /json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'} engines: {node: '>=6'}
@ -5245,6 +5221,24 @@ packages:
strip-bom: 2.0.0 strip-bom: 2.0.0
dev: true dev: true
/load-json-file@2.0.0:
resolution: {integrity: sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==}
engines: {node: '>=4'}
dependencies:
graceful-fs: 4.2.11
parse-json: 2.2.0
pify: 2.3.0
strip-bom: 3.0.0
dev: true
/locate-path@2.0.0:
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
dependencies:
p-locate: 2.0.0
path-exists: 3.0.0
dev: true
/locate-path@5.0.0: /locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -5945,15 +5939,6 @@ packages:
isobject: 3.0.1 isobject: 3.0.1
dev: true dev: true
/object.fromentries@2.0.7:
resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.5
define-properties: 1.2.1
es-abstract: 1.22.3
dev: true
/object.getownpropertydescriptors@2.1.7: /object.getownpropertydescriptors@2.1.7:
resolution: {integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==} resolution: {integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==}
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
@ -5966,15 +5951,6 @@ packages:
safe-array-concat: 1.0.1 safe-array-concat: 1.0.1
dev: true dev: true
/object.groupby@1.0.1:
resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
dependencies:
call-bind: 1.0.5
define-properties: 1.2.1
es-abstract: 1.22.3
get-intrinsic: 1.2.2
dev: true
/object.map@1.0.1: /object.map@1.0.1:
resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==} resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
@ -6142,6 +6118,13 @@ packages:
dev: true dev: true
optional: true optional: true
/p-limit@1.3.0:
resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
engines: {node: '>=4'}
dependencies:
p-try: 1.0.0
dev: true
/p-limit@2.3.0: /p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'} engines: {node: '>=6'}
@ -6149,6 +6132,13 @@ packages:
p-try: 2.2.0 p-try: 2.2.0
dev: true dev: true
/p-locate@2.0.0:
resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
engines: {node: '>=4'}
dependencies:
p-limit: 1.3.0
dev: true
/p-locate@4.1.0: /p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -6195,6 +6185,11 @@ packages:
dev: true dev: true
optional: true optional: true
/p-try@1.0.0:
resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
engines: {node: '>=4'}
dev: true
/p-try@2.2.0: /p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'} engines: {node: '>=6'}
@ -6307,6 +6302,11 @@ packages:
pinkie-promise: 2.0.1 pinkie-promise: 2.0.1
dev: true dev: true
/path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
dev: true
/path-exists@4.0.0: /path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -6356,6 +6356,13 @@ packages:
pinkie-promise: 2.0.1 pinkie-promise: 2.0.1
dev: true dev: true
/path-type@2.0.0:
resolution: {integrity: sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==}
engines: {node: '>=4'}
dependencies:
pify: 2.3.0
dev: true
/path-type@4.0.0: /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -7078,6 +7085,14 @@ packages:
read-pkg: 1.1.0 read-pkg: 1.1.0
dev: true dev: true
/read-pkg-up@2.0.0:
resolution: {integrity: sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==}
engines: {node: '>=4'}
dependencies:
find-up: 2.1.0
read-pkg: 2.0.0
dev: true
/read-pkg-up@7.0.1: /read-pkg-up@7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -7096,6 +7111,15 @@ packages:
path-type: 1.1.0 path-type: 1.1.0
dev: true dev: true
/read-pkg@2.0.0:
resolution: {integrity: sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==}
engines: {node: '>=4'}
dependencies:
load-json-file: 2.0.0
normalize-package-data: 2.5.0
path-type: 2.0.0
dev: true
/read-pkg@5.2.0: /read-pkg@5.2.0:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -8147,7 +8171,7 @@ packages:
dependencies: dependencies:
'@stylelint/postcss-css-in-js': 0.37.3(postcss-syntax@0.36.2)(postcss@7.0.39) '@stylelint/postcss-css-in-js': 0.37.3(postcss-syntax@0.36.2)(postcss@7.0.39)
'@stylelint/postcss-markdown': 0.36.2(postcss-syntax@0.36.2)(postcss@7.0.39) '@stylelint/postcss-markdown': 0.36.2(postcss-syntax@0.36.2)(postcss@7.0.39)
autoprefixer: 9.8.8 autoprefixer: 9.7.6
balanced-match: 1.0.2 balanced-match: 1.0.2
chalk: 4.1.2 chalk: 4.1.2
cosmiconfig: 6.0.0 cosmiconfig: 6.0.0
@ -8498,15 +8522,6 @@ packages:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
dev: true dev: true
/tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
dependencies:
'@types/json5': 0.0.29
json5: 1.0.2
minimist: 1.2.8
strip-bom: 3.0.0
dev: true
/tslib@1.14.1: /tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true dev: true

File diff suppressed because it is too large Load Diff

View File

@ -6,10 +6,10 @@
}, },
"devDependencies": { "devDependencies": {
"@antora/cli": "3.1.7", "@antora/cli": "3.1.7",
"@antora/lunr-extension": "1.0.0-alpha.8", "@antora/lunr-extension": "^1.0.0-alpha.8",
"@antora/site-generator": "3.1.7", "@antora/site-generator": "3.1.5",
"asciidoctor-kroki": "0.18.1", "asciidoctor-kroki": "^0.17.0",
"http-server": "14.1.1", "http-server": "^14.1.1",
"linkinator": "6.0.4" "linkinator": "^5.0.1"
} }
} }

View File

@ -9,28 +9,28 @@ devDependencies:
specifier: 3.1.7 specifier: 3.1.7
version: 3.1.7 version: 3.1.7
'@antora/lunr-extension': '@antora/lunr-extension':
specifier: 1.0.0-alpha.8 specifier: ^1.0.0-alpha.8
version: 1.0.0-alpha.8 version: 1.0.0-alpha.8
'@antora/site-generator': '@antora/site-generator':
specifier: 3.1.7 specifier: 3.1.5
version: 3.1.7 version: 3.1.5
asciidoctor-kroki: asciidoctor-kroki:
specifier: 0.18.1 specifier: ^0.17.0
version: 0.18.1(@asciidoctor/core@2.2.6) version: 0.17.0(@asciidoctor/core@2.2.6)
http-server: http-server:
specifier: 14.1.1 specifier: ^14.1.1
version: 14.1.1 version: 14.1.1
linkinator: linkinator:
specifier: 6.0.4 specifier: ^5.0.1
version: 6.0.4 version: 5.0.2
packages: packages:
/@antora/asciidoc-loader@3.1.7: /@antora/asciidoc-loader@3.1.5:
resolution: {integrity: sha512-sM/poPtAi8Cx0g2oLGHoEYjTdE9pvIYLgbHW07fGf6c9wQYMd2DMsevtbhNKWp+xqxj/QinToz4JOaNLoy1nfg==} resolution: {integrity: sha512-gWqoNL0Sm5dzFGgUFw6xF4bDtZDJDMoWfckbROn5l8hb7CrnXOsoLLydDxya8dvEYIXlq9lOngpolEKjO1RHew==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/logger': 3.1.7 '@antora/logger': 3.1.5
'@antora/user-require-helper': 2.0.0 '@antora/user-require-helper': 2.0.0
'@asciidoctor/core': 2.2.6 '@asciidoctor/core': 2.2.6
dev: true dev: true
@ -46,18 +46,18 @@ packages:
commander: 10.0.1 commander: 10.0.1
dev: true dev: true
/@antora/content-aggregator@3.1.7: /@antora/content-aggregator@3.1.5:
resolution: {integrity: sha512-2gBbxaDxqY4QRw9Vut0IbKNqI9zAAohxjT0zcA5Am10kE3ywvzXaBa3tvb+A7vUl/vRcCC0LPM7pO37RVrbsGA==} resolution: {integrity: sha512-1KfbfjND/ox/EwM/GG6ri60nb0TA+aUO3Y2XAHr/hvnJaWcHMqT4NOIHwl8KyHYmem8WYf97q9w2lKV4usP+hA==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/expand-path-helper': 2.0.0 '@antora/expand-path-helper': 2.0.0
'@antora/logger': 3.1.7 '@antora/logger': 3.1.5
'@antora/user-require-helper': 2.0.0 '@antora/user-require-helper': 2.0.0
braces: 3.0.2 braces: 3.0.2
cache-directory: 2.0.0 cache-directory: 2.0.0
glob-stream: 7.0.0 glob-stream: 7.0.0
hpagent: 1.2.0 hpagent: 1.2.0
isomorphic-git: 1.25.3 isomorphic-git: 1.21.0
js-yaml: 4.1.0 js-yaml: 4.1.0
multi-progress: 4.0.0(progress@2.0.3) multi-progress: 4.0.0(progress@2.0.3)
picomatch: 2.3.1 picomatch: 2.3.1
@ -67,21 +67,21 @@ packages:
vinyl: 2.2.1 vinyl: 2.2.1
dev: true dev: true
/@antora/content-classifier@3.1.7: /@antora/content-classifier@3.1.5:
resolution: {integrity: sha512-94XwJ35pkWJU6dJqQg5oreJRCkaXwU6yw9XSyB731o4i/0romkazKnu7deHugqdgvzqn92AlMRG6R0clhJLEsw==} resolution: {integrity: sha512-yFBjJfNuDcC0ioh2Czx4ggTFyc776gZfaL8cKIboDGlCP7b8NyAusTgtt35l99nyVpe2KhvO2p/4KViMOsfXSw==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/asciidoc-loader': 3.1.7 '@antora/asciidoc-loader': 3.1.5
'@antora/logger': 3.1.7 '@antora/logger': 3.1.5
mime-types: 2.1.35 mime-types: 2.1.35
vinyl: 2.2.1 vinyl: 2.2.1
dev: true dev: true
/@antora/document-converter@3.1.7: /@antora/document-converter@3.1.5:
resolution: {integrity: sha512-cRVJf7QyclxjWbA0gWz7hncZYThIREikkwaxaa26LsRCfBNlw7wxs7lWejvIvEl1LVshupbinJwKUPPQPOsHhw==} resolution: {integrity: sha512-YjuYPWp9ejo6KWw1yp2T+m927n/tiY8V8Q4jdt3x8XhjjfkUqSx/Sd7wgc6pGLCLM7L2V31Lpd2lZWe4ANtHQA==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/asciidoc-loader': 3.1.7 '@antora/asciidoc-loader': 3.1.5
dev: true dev: true
/@antora/expand-path-helper@2.0.0: /@antora/expand-path-helper@2.0.0:
@ -89,8 +89,8 @@ packages:
engines: {node: '>=10.17.0'} engines: {node: '>=10.17.0'}
dev: true dev: true
/@antora/file-publisher@3.1.7: /@antora/file-publisher@3.1.5:
resolution: {integrity: sha512-UH2o0DJuv9BJvWgn+QSE3MhtHB3oN3lG5lJkV3fQi1jAV+qPIHoiTIYhbw02mj5KQ3Qbt7YWWAKZKuGl3rEdjg==} resolution: {integrity: sha512-C4Ikpv5X6MQ/SzYcatggVj84fgM7RbYZCZCWsnaDv8ax7mpsf4zK9W/kd5uQ8GqBqNWYLCiSqsdOCvUrZkQX9A==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/expand-path-helper': 2.0.0 '@antora/expand-path-helper': 2.0.0
@ -100,6 +100,16 @@ packages:
vinyl-fs: 3.0.3 vinyl-fs: 3.0.3
dev: true dev: true
/@antora/logger@3.1.5:
resolution: {integrity: sha512-DGIxiv/rsWRWxFTRD4Hu2TXiFUHOqCpiu4Rf7LxOPdKkuF6i167fw8BuZeFfTzvOE2W2FhB4sopI0EiAZ1D/vQ==}
engines: {node: '>=16.0.0'}
dependencies:
'@antora/expand-path-helper': 2.0.0
pino: 8.14.2
pino-pretty: 10.0.1
sonic-boom: 3.3.0
dev: true
/@antora/logger@3.1.7: /@antora/logger@3.1.7:
resolution: {integrity: sha512-Z2tfNIi9G4BnAZq26Kp30974FxCVCtvH46FOi6ClnkJg6Uf2gTrVlJERmtsDTsHjWsf1qKbnj/4b99/AU31iQg==} resolution: {integrity: sha512-Z2tfNIi9G4BnAZq26Kp30974FxCVCtvH46FOi6ClnkJg6Uf2gTrVlJERmtsDTsHjWsf1qKbnj/4b99/AU31iQg==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
@ -120,22 +130,32 @@ packages:
lunr-languages: 1.9.0 lunr-languages: 1.9.0
dev: true dev: true
/@antora/navigation-builder@3.1.7: /@antora/navigation-builder@3.1.5:
resolution: {integrity: sha512-QvMPb0qY1zfgyLCfuEhJOpO5qSVjaVe5X/bQjSii9vDGgpIEiC2yt/hgqER37E/3zsBGEZvCH5lSLk1c7x0+EQ==} resolution: {integrity: sha512-xv/Bqje4q1JhPf7GKK9/S79PdaiXJG34WDIefKNLMetsJ+r/7+Mk1ZodYjkogGiCPWQ+E71cr8/uhICpGTljLA==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/asciidoc-loader': 3.1.7 '@antora/asciidoc-loader': 3.1.5
dev: true dev: true
/@antora/page-composer@3.1.7: /@antora/page-composer@3.1.5:
resolution: {integrity: sha512-zJMzYznPT6Vd59nEXio/2rolkX070Nup6g4a8d4RCz0WoE8dmMidw6XFgjAHr0Lyh14/FHgBPlYXfhkDFR16Mw==} resolution: {integrity: sha512-63ld9s7exXvYtds0cj1ZBwinRnZCvnFkYPuHhCaD7uirRes922kuYXeowO1MKqQQ4Cqcx3OWIjU73W0Q2d1AGQ==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/logger': 3.1.7 '@antora/logger': 3.1.5
handlebars: 4.7.8 handlebars: 4.7.8
require-from-string: 2.0.2 require-from-string: 2.0.2
dev: true dev: true
/@antora/playbook-builder@3.1.5:
resolution: {integrity: sha512-h3zD1FkN8BVnsmHSgB3CTatVu5Q8E8lqZs7Zfsh7uN5eQHhxsPjOvVByeM1RhCpQuY+o2hERY2XexoLb8V89TQ==}
engines: {node: '>=16.0.0'}
dependencies:
'@iarna/toml': 2.2.5
convict: 6.2.4
js-yaml: 4.1.0
json5: 2.2.3
dev: true
/@antora/playbook-builder@3.1.7: /@antora/playbook-builder@3.1.7:
resolution: {integrity: sha512-lU80S1BqUy9DvqziEzRwpYTaWhOshxgrGAjf/F5VjAIaHCGVx0rZgfoI2rgFFkbVaH94kauOngdtTXDPXC1fPQ==} resolution: {integrity: sha512-lU80S1BqUy9DvqziEzRwpYTaWhOshxgrGAjf/F5VjAIaHCGVx0rZgfoI2rgFFkbVaH94kauOngdtTXDPXC1fPQ==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
@ -146,50 +166,50 @@ packages:
json5: 2.2.3 json5: 2.2.3
dev: true dev: true
/@antora/redirect-producer@3.1.7: /@antora/redirect-producer@3.1.5:
resolution: {integrity: sha512-6zAHfcOb0v0829nAbn/3HMilbactjbjU7zBT9Iy6JHQfbqXT/g/mUT9N13Lj/wbq/nm0qKQJweB0Mi6BS2fbMw==} resolution: {integrity: sha512-BM5qk3Daj81wGu3sJ+wCyZGV7P9EC8nxK9stRzrTqUOGa9MriaZGZ+B3Xvakucj5jQTaFo0w7m3udxBOYicvgQ==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
vinyl: 2.2.1 vinyl: 2.2.1
dev: true dev: true
/@antora/site-generator@3.1.7: /@antora/site-generator@3.1.5:
resolution: {integrity: sha512-39KWip9bLdQ+4ssyqjI+O0COquKHxoeznxY2/3w5pNZEoeTg8cD7kOsnWfbocw0R3Rj+kJV5MnqICFNq0nuPeA==} resolution: {integrity: sha512-HNkzmPVDU/GBG962O9OnfIJWSC/L2LMDZ59H0T4LXRGKdDrPjaEQqv9AgxaCI0DQ+Cg9sHE3m/ISwkd0+FZabg==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/asciidoc-loader': 3.1.7 '@antora/asciidoc-loader': 3.1.5
'@antora/content-aggregator': 3.1.7 '@antora/content-aggregator': 3.1.5
'@antora/content-classifier': 3.1.7 '@antora/content-classifier': 3.1.5
'@antora/document-converter': 3.1.7 '@antora/document-converter': 3.1.5
'@antora/file-publisher': 3.1.7 '@antora/file-publisher': 3.1.5
'@antora/logger': 3.1.7 '@antora/logger': 3.1.5
'@antora/navigation-builder': 3.1.7 '@antora/navigation-builder': 3.1.5
'@antora/page-composer': 3.1.7 '@antora/page-composer': 3.1.5
'@antora/playbook-builder': 3.1.7 '@antora/playbook-builder': 3.1.5
'@antora/redirect-producer': 3.1.7 '@antora/redirect-producer': 3.1.5
'@antora/site-mapper': 3.1.7 '@antora/site-mapper': 3.1.5
'@antora/site-publisher': 3.1.7 '@antora/site-publisher': 3.1.5
'@antora/ui-loader': 3.1.7 '@antora/ui-loader': 3.1.5
'@antora/user-require-helper': 2.0.0 '@antora/user-require-helper': 2.0.0
dev: true dev: true
/@antora/site-mapper@3.1.7: /@antora/site-mapper@3.1.5:
resolution: {integrity: sha512-x++89btbwk8FxyU2+H/RHQMnsC9sdvQvXcwXwNt11eXN1qj7t8TPiQZTalg7gkf0/osY4l7JRpGBY5JJfOJVig==} resolution: {integrity: sha512-rSMFkOfq/yebJBRsT/P95YIW0Ig7WmaCNAg56CilYPh2QfzjNWZIuEOSeQcoIQ0t48W4KKo+KVjp32KERyz9wg==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/content-classifier': 3.1.7 '@antora/content-classifier': 3.1.5
vinyl: 2.2.1 vinyl: 2.2.1
dev: true dev: true
/@antora/site-publisher@3.1.7: /@antora/site-publisher@3.1.5:
resolution: {integrity: sha512-zHaJc7UeBfFSIhBbQ5U5Ud4u671M84oqSJb3pPxlUiJDP7iVJlSl+0GNm0NAIoDizjPtVksUI88fzqCy5rfSUQ==} resolution: {integrity: sha512-xf2r5Ey9Wu0rYktN80svKSYdHfc9lu/POrL7w9sauZFENx8G9H5KzMN8Qpgxg0dLqaWCXfKqldnklIVwXUBaYg==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/file-publisher': 3.1.7 '@antora/file-publisher': 3.1.5
dev: true dev: true
/@antora/ui-loader@3.1.7: /@antora/ui-loader@3.1.5:
resolution: {integrity: sha512-79QuZB0c91dveoESa3RcE18ZZFJo0rDZX9aJKHVc20dInQBGCgfURPqB2OytkzaXD3lNtDJ41yjKNYZqsAQy1Q==} resolution: {integrity: sha512-CB3Apkf4gyj/Tf4f14EcMkI0KBtIEhE+yV9yVEnQYNEZERGpXP66W0FVk3nT2Y7iur4d9xgsBf1j4qpk9RvSuw==}
engines: {node: '>=16.0.0'} engines: {node: '>=16.0.0'}
dependencies: dependencies:
'@antora/expand-path-helper': 2.0.0 '@antora/expand-path-helper': 2.0.0
@ -224,25 +244,6 @@ packages:
resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==}
dev: true dev: true
/@isaacs/cliui@8.0.2:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
dependencies:
string-width: 5.1.2
string-width-cjs: /string-width@4.2.3
strip-ansi: 7.1.0
strip-ansi-cjs: /strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: /wrap-ansi@7.0.0
dev: true
/@pkgjs/parseargs@0.11.0:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
requiresBuild: true
dev: true
optional: true
/@vscode/gulp-vinyl-zip@2.5.0: /@vscode/gulp-vinyl-zip@2.5.0:
resolution: {integrity: sha512-PP/xkOoLBSY3V04HmzRxF+NOxkRJ/m2D0YwWpfx1FCFv5G8+sZUGPvxX+LRgdJ5vQcR1RHck5x1IkHi75Qjdbw==} resolution: {integrity: sha512-PP/xkOoLBSY3V04HmzRxF+NOxkRJ/m2D0YwWpfx1FCFv5G8+sZUGPvxX+LRgdJ5vQcR1RHck5x1IkHi75Qjdbw==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
@ -263,25 +264,15 @@ packages:
event-target-shim: 5.0.1 event-target-shim: 5.0.1
dev: true dev: true
/agent-base@7.1.0: /agent-base@6.0.2:
resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 14'} engines: {node: '>= 6.0.0'}
dependencies: dependencies:
debug: 4.3.4 debug: 4.3.4
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
dev: true
/ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
dev: true
/ansi-styles@4.3.0: /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -289,11 +280,6 @@ packages:
color-convert: 2.0.1 color-convert: 2.0.1
dev: true dev: true
/ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
dev: true
/append-buffer@1.0.2: /append-buffer@1.0.2:
resolution: {integrity: sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==} resolution: {integrity: sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
@ -305,11 +291,11 @@ packages:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true dev: true
/asciidoctor-kroki@0.18.1(@asciidoctor/core@2.2.6): /asciidoctor-kroki@0.17.0(@asciidoctor/core@2.2.6):
resolution: {integrity: sha512-eQxbBCaPTbyNoJtk62Gp+6h4LlJp2147g7eS0QIVjqaLpFa8sseH0BlMiBoATrJUYv1w3nR+FTzvloBJ/MioYg==} resolution: {integrity: sha512-aObUUfAtcfUTjhAP32bgrcoKXLRta57o3V5k+t73FXDKiLi+QfkHE+9+H4mGPTnghXBtiRYzsu7BbVGfTHoQzQ==}
engines: {node: '>=10'} engines: {node: '>=10'}
peerDependencies: peerDependencies:
'@asciidoctor/core': '>=2.2 <4.0' '@asciidoctor/core': ~2.2
dependencies: dependencies:
'@asciidoctor/core': 2.2.6 '@asciidoctor/core': 2.2.6
json5: 2.2.3 json5: 2.2.3
@ -525,15 +511,6 @@ packages:
hasBin: true hasBin: true
dev: true dev: true
/cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
dev: true
/css-select@4.3.0: /css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies: dependencies:
@ -673,18 +650,6 @@ packages:
stream-shift: 1.0.1 stream-shift: 1.0.1
dev: true dev: true
/eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
dev: true
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
dev: true
/emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: true
/end-of-stream@1.4.4: /end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies: dependencies:
@ -765,14 +730,6 @@ packages:
optional: true optional: true
dev: true dev: true
/foreground-child@3.1.1:
resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
engines: {node: '>=14'}
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
dev: true
/fs-mkdirp-stream@1.0.0: /fs-mkdirp-stream@1.0.0:
resolution: {integrity: sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==} resolution: {integrity: sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==}
engines: {node: '>= 0.10'} engines: {node: '>= 0.10'}
@ -789,12 +746,12 @@ packages:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
dev: true dev: true
/gaxios@6.1.1: /gaxios@5.1.3:
resolution: {integrity: sha512-bw8smrX+XlAoo9o1JAksBwX+hi/RG15J+NTSxmNPIclKC3ZVK6C2afwY8OSdRvOK0+ZLecUJYtj2MmjOt3Dm0w==} resolution: {integrity: sha512-95hVgBRgEIRQQQHIbnxBXeHbW4TqFk4ZDJW7wmVtvYar72FdhRIo1UGOLS2eRAKCPEdPBWu+M7+A33D9CdX9rA==}
engines: {node: '>=14'} engines: {node: '>=12'}
dependencies: dependencies:
extend: 3.0.2 extend: 3.0.2
https-proxy-agent: 7.0.2 https-proxy-agent: 5.0.1
is-stream: 2.0.1 is-stream: 2.0.1
node-fetch: 2.7.0 node-fetch: 2.7.0
transitivePeerDependencies: transitivePeerDependencies:
@ -857,18 +814,6 @@ packages:
unique-stream: 2.3.1 unique-stream: 2.3.1
dev: true dev: true
/glob@10.3.10:
resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
foreground-child: 3.1.1
jackspeak: 2.3.6
minimatch: 9.0.3
minipass: 7.0.4
path-scurry: 1.10.1
dev: true
/glob@7.1.3: /glob@7.1.3:
resolution: {integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==} resolution: {integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==}
dependencies: dependencies:
@ -902,6 +847,16 @@ packages:
once: 1.4.0 once: 1.4.0
dev: true dev: true
/glob@9.3.5:
resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
fs.realpath: 1.0.0
minimatch: 8.0.4
minipass: 4.2.8
path-scurry: 1.10.1
dev: true
/gopd@1.0.1: /gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies: dependencies:
@ -1033,11 +988,11 @@ packages:
- supports-color - supports-color
dev: true dev: true
/https-proxy-agent@7.0.2: /https-proxy-agent@5.0.1:
resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 14'} engines: {node: '>= 6'}
dependencies: dependencies:
agent-base: 7.1.0 agent-base: 6.0.2
debug: 4.3.4 debug: 4.3.4
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
@ -1087,11 +1042,6 @@ packages:
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
dev: true dev: true
/is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
dev: true
/is-glob@3.1.0: /is-glob@3.1.0:
resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
@ -1153,12 +1103,8 @@ packages:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
dev: true dev: true
/isexe@2.0.0: /isomorphic-git@1.21.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} resolution: {integrity: sha512-ZqCAUM63CYepA3fB8H7NVyPSiOkgzIbQ7T+QPrm9xtYgQypN9JUJ5uLMjB5iTfomdJf3mdm6aSxjZwnT6ubvEA==}
dev: true
/isomorphic-git@1.25.3:
resolution: {integrity: sha512-iUaDB5kObupWpwjQ+EGkDQmaYQzbq1XaPqo+xJCCfbPViGZL94rU2RvK4EDJKpYbyiwbq5OSLEjkXHa8r5I1aw==}
engines: {node: '>=12'} engines: {node: '>=12'}
hasBin: true hasBin: true
dependencies: dependencies:
@ -1175,15 +1121,6 @@ packages:
simple-get: 4.0.1 simple-get: 4.0.1
dev: true dev: true
/jackspeak@2.3.6:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
engines: {node: '>=14'}
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
dev: true
/joycon@3.1.1: /joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'} engines: {node: '>=10'}
@ -1220,19 +1157,19 @@ packages:
flush-write-stream: 1.1.1 flush-write-stream: 1.1.1
dev: true dev: true
/linkinator@6.0.4: /linkinator@5.0.2:
resolution: {integrity: sha512-gxZ9ePUBeoaCk29p+2gAwrRIVnKOqAV8ZVCEM8N7MvpwbccDBQiKjXFyS6nQx56K1CCZLboan2i5iJfpWCsnSQ==} resolution: {integrity: sha512-bkcgC070cpNfwWySimU2mRWxtMcrVsWR+rD89O+DSqaPxI0k1nd8Cf8GNyLkqS28YOwSYTMg/CpV+k0MxmiRkQ==}
engines: {node: '>=18'} engines: {node: '>=16'}
hasBin: true hasBin: true
dependencies: dependencies:
chalk: 5.3.0 chalk: 5.3.0
escape-html: 1.0.3 escape-html: 1.0.3
gaxios: 6.1.1 gaxios: 5.1.3
glob: 10.3.10 glob: 9.3.5
htmlparser2: 9.0.0 htmlparser2: 9.0.0
marked: 10.0.0 marked: 7.0.5
meow: 13.1.0 meow: 12.1.1
mime: 4.0.1 mime: 3.0.0
server-destroy: 1.0.1 server-destroy: 1.0.1
srcset: 5.0.0 srcset: 5.0.0
transitivePeerDependencies: transitivePeerDependencies:
@ -1270,15 +1207,15 @@ packages:
resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==}
dev: true dev: true
/marked@10.0.0: /marked@7.0.5:
resolution: {integrity: sha512-YiGcYcWj50YrwBgNzFoYhQ1hT6GmQbFG8SksnYJX1z4BXTHSOrz1GB5/Jm2yQvMg4nN1FHP4M6r03R10KrVUiA==} resolution: {integrity: sha512-lwNAFTfXgqpt/XvK17a/8wY9/q6fcSPZT1aP6QW0u74VwaJF/Z9KbRcX23sWE4tODM+AolJNcUtErTkgOeFP/Q==}
engines: {node: '>= 18'} engines: {node: '>= 16'}
hasBin: true hasBin: true
dev: true dev: true
/meow@13.1.0: /meow@12.1.1:
resolution: {integrity: sha512-o5R/R3Tzxq0PJ3v3qcQJtSvSE9nKOLSAaDuuoMzDVuGTwHdccMWcYomh9Xolng2tjT6O/Y83d+0coVGof6tqmA==} resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
engines: {node: '>=18'} engines: {node: '>=16.10'}
dev: true dev: true
/mime-db@1.52.0: /mime-db@1.52.0:
@ -1299,9 +1236,9 @@ packages:
hasBin: true hasBin: true
dev: true dev: true
/mime@4.0.1: /mime@3.0.0:
resolution: {integrity: sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==} resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
engines: {node: '>=16'} engines: {node: '>=10.0.0'}
hasBin: true hasBin: true
dev: true dev: true
@ -1323,8 +1260,8 @@ packages:
brace-expansion: 2.0.1 brace-expansion: 2.0.1
dev: true dev: true
/minimatch@9.0.3: /minimatch@8.0.4:
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
engines: {node: '>=16 || 14 >=14.17'} engines: {node: '>=16 || 14 >=14.17'}
dependencies: dependencies:
brace-expansion: 2.0.1 brace-expansion: 2.0.1
@ -1340,6 +1277,11 @@ packages:
minimist: 1.2.8 minimist: 1.2.8
dev: true dev: true
/minipass@4.2.8:
resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
engines: {node: '>=8'}
dev: true
/minipass@7.0.4: /minipass@7.0.4:
resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
engines: {node: '>=16 || 14 >=14.17'} engines: {node: '>=16 || 14 >=14.17'}
@ -1478,11 +1420,6 @@ packages:
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
dev: true dev: true
/path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
dev: true
/path-scurry@1.10.1: /path-scurry@1.10.1:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'} engines: {node: '>=16 || 14 >=14.17'}
@ -1774,18 +1711,6 @@ packages:
safe-buffer: 5.2.1 safe-buffer: 5.2.1
dev: true dev: true
/shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
dev: true
/shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
dev: true
/should-proxy@1.0.4: /should-proxy@1.0.4:
resolution: {integrity: sha512-RPQhIndEIVUCjkfkQ6rs6sOR6pkxJWCNdxtfG5pP0RVgUYbK5911kLTF0TNcCC0G3YCGd492rMollFT2aTd9iQ==} resolution: {integrity: sha512-RPQhIndEIVUCjkfkQ6rs6sOR6pkxJWCNdxtfG5pP0RVgUYbK5911kLTF0TNcCC0G3YCGd492rMollFT2aTd9iQ==}
dev: true dev: true
@ -1798,11 +1723,6 @@ packages:
object-inspect: 1.13.1 object-inspect: 1.13.1
dev: true dev: true
/signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
dev: true
/simple-concat@1.0.1: /simple-concat@1.0.1:
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
dev: true dev: true
@ -1840,24 +1760,6 @@ packages:
resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
dev: true dev: true
/string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
dev: true
/string-width@5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
strip-ansi: 7.1.0
dev: true
/string_decoder@1.1.1: /string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies: dependencies:
@ -1870,20 +1772,6 @@ packages:
safe-buffer: 5.2.1 safe-buffer: 5.2.1
dev: true dev: true
/strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
dev: true
/strip-ansi@7.1.0:
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
dev: true
/strip-json-comments@3.1.1: /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -2066,36 +1954,10 @@ packages:
webidl-conversions: 3.0.1 webidl-conversions: 3.0.1
dev: true dev: true
/which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
dependencies:
isexe: 2.0.0
dev: true
/wordwrap@1.0.0: /wordwrap@1.0.0:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
dev: true dev: true
/wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
dev: true
/wrap-ansi@8.1.0:
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
engines: {node: '>=12'}
dependencies:
ansi-styles: 6.2.1
string-width: 5.1.2
strip-ansi: 7.1.0
dev: true
/wrappy@1.0.2: /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
dev: true dev: true

View File

@ -10,8 +10,8 @@
"typecheck": "tsc", "typecheck": "tsc",
"lint": "eslint app", "lint": "eslint app",
"lint:fix": "pnpm run lint --fix", "lint:fix": "pnpm run lint --fix",
"prettier": "prettier . --check", "prettier": "pnpm exec prettier . --check",
"prettier:fix": "prettier . --write" "prettier:fix": "pnpm exec prettier . --write"
}, },
"dependencies": { "dependencies": {
"@remix-run/css-bundle": "^2.2.0", "@remix-run/css-bundle": "^2.2.0",
@ -23,14 +23,14 @@
"react-dom": "^18.2.0" "react-dom": "^18.2.0"
}, },
"devDependencies": { "devDependencies": {
"@remix-run/dev": "2.5.1", "@remix-run/dev": "^2.2.0",
"@remix-run/eslint-config": "2.5.1", "@remix-run/eslint-config": "^2.2.0",
"@types/react": "18.2.48", "@types/react": "^18.2.20",
"@types/react-dom": "18.2.18", "@types/react-dom": "^18.2.7",
"eslint": "8.52.0", "eslint": "^8.38.0",
"eslint-config-prettier": "9.1.0", "eslint-config-prettier": "9.0.0",
"prettier": "3.2.4", "prettier": "3.0.3",
"typescript": "5.2.2" "typescript": "^5.1.6"
}, },
"engines": { "engines": {
"node": ">=18.0.0" "node": ">=18.0.0"

View File

@ -29,28 +29,28 @@ dependencies:
devDependencies: devDependencies:
'@remix-run/dev': '@remix-run/dev':
specifier: 2.5.1 specifier: ^2.2.0
version: 2.5.1(@remix-run/serve@2.2.0)(typescript@5.2.2) version: 2.2.0(@remix-run/serve@2.2.0)(typescript@5.2.2)
'@remix-run/eslint-config': '@remix-run/eslint-config':
specifier: 2.5.1 specifier: ^2.2.0
version: 2.5.1(eslint@8.52.0)(react@18.2.0)(typescript@5.2.2) version: 2.2.0(eslint@8.52.0)(react@18.2.0)(typescript@5.2.2)
'@types/react': '@types/react':
specifier: 18.2.48 specifier: ^18.2.20
version: 18.2.48 version: 18.2.34
'@types/react-dom': '@types/react-dom':
specifier: 18.2.18 specifier: ^18.2.7
version: 18.2.18 version: 18.2.14
eslint: eslint:
specifier: 8.52.0 specifier: ^8.38.0
version: 8.52.0 version: 8.52.0
eslint-config-prettier: eslint-config-prettier:
specifier: 9.1.0 specifier: 9.0.0
version: 9.1.0(eslint@8.52.0) version: 9.0.0(eslint@8.52.0)
prettier: prettier:
specifier: 3.2.4 specifier: 3.0.3
version: 3.2.4 version: 3.0.3
typescript: typescript:
specifier: 5.2.2 specifier: ^5.1.6
version: 5.2.2 version: 5.2.2
packages: packages:
@ -909,6 +909,11 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true dev: true
/@fastify/busboy@2.0.0:
resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==}
engines: {node: '>=14'}
dev: true
/@humanwhocodes/config-array@0.11.13: /@humanwhocodes/config-array@0.11.13:
resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
engines: {node: '>=10.10.0'} engines: {node: '>=10.10.0'}
@ -1083,14 +1088,14 @@ packages:
engines: {node: '>=18.0.0'} engines: {node: '>=18.0.0'}
dev: false dev: false
/@remix-run/dev@2.5.1(@remix-run/serve@2.2.0)(typescript@5.2.2): /@remix-run/dev@2.2.0(@remix-run/serve@2.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-IrYhWANubH+WM62Wz55n8NWT5kBqfbyytXDFlP0VoZLrr1IpJf2GtaT4IA+CODMaNoeXeMACOD5Tw5/Y2bO5lA==} resolution: {integrity: sha512-JtteMtYirQlj1Xf9FSLLjqO+owxlqJVsTESgVWdF+CR5kon2i12YjPnRx1xGtB4UGgU/yTZseMTPNhTKc5mwpQ==}
engines: {node: '>=18.0.0'} engines: {node: '>=18.0.0'}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
'@remix-run/serve': ^2.5.1 '@remix-run/serve': ^2.2.0
typescript: ^5.1.0 typescript: ^5.1.0
vite: ^5.0.0 vite: ^4.4.9
peerDependenciesMeta: peerDependenciesMeta:
'@remix-run/serve': '@remix-run/serve':
optional: true optional: true
@ -1109,10 +1114,10 @@ packages:
'@babel/types': 7.23.0 '@babel/types': 7.23.0
'@mdx-js/mdx': 2.3.0 '@mdx-js/mdx': 2.3.0
'@npmcli/package-json': 4.0.1 '@npmcli/package-json': 4.0.1
'@remix-run/node': 2.5.1(typescript@5.2.2) '@remix-run/node': 2.2.0(typescript@5.2.2)
'@remix-run/router': 1.14.2 '@remix-run/router': 1.11.0
'@remix-run/serve': 2.2.0(typescript@5.2.2) '@remix-run/serve': 2.2.0(typescript@5.2.2)
'@remix-run/server-runtime': 2.5.1(typescript@5.2.2) '@remix-run/server-runtime': 2.2.0(typescript@5.2.2)
'@types/mdx': 2.0.9 '@types/mdx': 2.0.9
'@vanilla-extract/integration': 6.2.2 '@vanilla-extract/integration': 6.2.2
arg: 5.0.2 arg: 5.0.2
@ -1135,7 +1140,9 @@ packages:
lodash: 4.17.21 lodash: 4.17.21
lodash.debounce: 4.0.8 lodash.debounce: 4.0.8
minimatch: 9.0.3 minimatch: 9.0.3
node-fetch: 2.7.0
ora: 5.4.1 ora: 5.4.1
parse-multipart-data: 1.5.0
picocolors: 1.0.0 picocolors: 1.0.0
picomatch: 2.3.1 picomatch: 2.3.1
pidtree: 0.6.0 pidtree: 0.6.0
@ -1153,11 +1160,13 @@ packages:
tar-fs: 2.1.1 tar-fs: 2.1.1
tsconfig-paths: 4.2.0 tsconfig-paths: 4.2.0
typescript: 5.2.2 typescript: 5.2.2
undici: 5.27.2
ws: 7.5.9 ws: 7.5.9
transitivePeerDependencies: transitivePeerDependencies:
- '@types/node' - '@types/node'
- bluebird - bluebird
- bufferutil - bufferutil
- encoding
- less - less
- lightningcss - lightningcss
- sass - sass
@ -1169,8 +1178,8 @@ packages:
- utf-8-validate - utf-8-validate
dev: true dev: true
/@remix-run/eslint-config@2.5.1(eslint@8.52.0)(react@18.2.0)(typescript@5.2.2): /@remix-run/eslint-config@2.2.0(eslint@8.52.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-PpLj0QSd2NZ12KdTA2QYPd/FK3Szu9Np7kTmx26VxDZJTzQYSgGb5i2O9uby+j2sD68zR/+EAYaIcOlq66ekJw==} resolution: {integrity: sha512-H+LPiQhsXaCsOVvyB5vf6wTAv72m/pI6rdoCjyx3ayipNGAuqldkAnmFD6Qa/Bpc/zRHk13+PZV27kjyNd32vw==}
engines: {node: '>=18.0.0'} engines: {node: '>=18.0.0'}
peerDependencies: peerDependencies:
eslint: ^8.0.0 eslint: ^8.0.0
@ -1238,26 +1247,6 @@ packages:
stream-slice: 0.1.2 stream-slice: 0.1.2
typescript: 5.2.2 typescript: 5.2.2
/@remix-run/node@2.5.1(typescript@5.2.2):
resolution: {integrity: sha512-UI442xzHAiokmsfrYOabMQB024+IizmRhZBGcNa42QjJWsNqogy1bNwYhzEpB6oQEB1wF3vwOKK1AD1/iYA/9A==}
engines: {node: '>=18.0.0'}
peerDependencies:
typescript: ^5.1.0
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@remix-run/server-runtime': 2.5.1(typescript@5.2.2)
'@remix-run/web-fetch': 4.4.2
'@remix-run/web-file': 3.1.0
'@remix-run/web-stream': 1.1.0
'@web3-storage/multipart-parser': 1.0.0
cookie-signature: 1.2.1
source-map-support: 0.5.21
stream-slice: 0.1.2
typescript: 5.2.2
dev: true
/@remix-run/react@2.2.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): /@remix-run/react@2.2.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-1nD5ihI0A1wUpFr9Eo9bquEtqjhjvg1OwFF7qDXXHgQ4Zh13y3MKO5dRmHf+Os999o0vqVJ+xSnVPN+Vbco3uA==} resolution: {integrity: sha512-1nD5ihI0A1wUpFr9Eo9bquEtqjhjvg1OwFF7qDXXHgQ4Zh13y3MKO5dRmHf+Os999o0vqVJ+xSnVPN+Vbco3uA==}
engines: {node: '>=18.0.0'} engines: {node: '>=18.0.0'}
@ -1281,11 +1270,6 @@ packages:
resolution: {integrity: sha512-BHdhcWgeiudl91HvVa2wxqZjSHbheSgIiDvxrF1VjFzBzpTtuDPkOdOi3Iqvc08kXtFkLjhbS+ML9aM8mJS+wQ==} resolution: {integrity: sha512-BHdhcWgeiudl91HvVa2wxqZjSHbheSgIiDvxrF1VjFzBzpTtuDPkOdOi3Iqvc08kXtFkLjhbS+ML9aM8mJS+wQ==}
engines: {node: '>=14.0.0'} engines: {node: '>=14.0.0'}
/@remix-run/router@1.14.2:
resolution: {integrity: sha512-ACXpdMM9hmKZww21yEqWwiLws/UPLhNKvimN8RrYSqPSvB3ov7sLvAcfvaxePeLvccTQKGdkDIhLYApZVDFuKg==}
engines: {node: '>=14.0.0'}
dev: true
/@remix-run/serve@2.2.0(typescript@5.2.2): /@remix-run/serve@2.2.0(typescript@5.2.2):
resolution: {integrity: sha512-hUdxQeb/KwIiJTaW5w6OFgcF8lEucafxOkZDH66XYKdUAW4Mj300+gG8R0f20xdnf0Ud7PnhdVjkMhVNETyXqw==} resolution: {integrity: sha512-hUdxQeb/KwIiJTaW5w6OFgcF8lEucafxOkZDH66XYKdUAW4Mj300+gG8R0f20xdnf0Ud7PnhdVjkMhVNETyXqw==}
engines: {node: '>=18.0.0'} engines: {node: '>=18.0.0'}
@ -1320,24 +1304,6 @@ packages:
source-map: 0.7.4 source-map: 0.7.4
typescript: 5.2.2 typescript: 5.2.2
/@remix-run/server-runtime@2.5.1(typescript@5.2.2):
resolution: {integrity: sha512-bP31jrVbYTJ2eP5sxZfDgT1YyXzDlzsfMxGYVzpaoLCYDJAekq1QpHLLXKGOXhmyb46O9rdhlQKfwD6WpAxr3A==}
engines: {node: '>=18.0.0'}
peerDependencies:
typescript: ^5.1.0
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@remix-run/router': 1.14.2
'@types/cookie': 0.6.0
'@web3-storage/multipart-parser': 1.0.0
cookie: 0.6.0
set-cookie-parser: 2.6.0
source-map: 0.7.4
typescript: 5.2.2
dev: true
/@remix-run/web-blob@3.1.0: /@remix-run/web-blob@3.1.0:
resolution: {integrity: sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==} resolution: {integrity: sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==}
dependencies: dependencies:
@ -1357,20 +1323,6 @@ packages:
data-uri-to-buffer: 3.0.1 data-uri-to-buffer: 3.0.1
mrmime: 1.0.1 mrmime: 1.0.1
/@remix-run/web-fetch@4.4.2:
resolution: {integrity: sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==}
engines: {node: ^10.17 || >=12.3}
dependencies:
'@remix-run/web-blob': 3.1.0
'@remix-run/web-file': 3.1.0
'@remix-run/web-form-data': 3.1.0
'@remix-run/web-stream': 1.1.0
'@web3-storage/multipart-parser': 1.0.0
abort-controller: 3.0.0
data-uri-to-buffer: 3.0.1
mrmime: 1.0.1
dev: true
/@remix-run/web-file@3.1.0: /@remix-run/web-file@3.1.0:
resolution: {integrity: sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==} resolution: {integrity: sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==}
dependencies: dependencies:
@ -1417,10 +1369,6 @@ packages:
/@types/cookie@0.4.1: /@types/cookie@0.4.1:
resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
/@types/cookie@0.6.0:
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
dev: true
/@types/debug@4.1.10: /@types/debug@4.1.10:
resolution: {integrity: sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==} resolution: {integrity: sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==}
dependencies: dependencies:
@ -1475,14 +1423,14 @@ packages:
resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==} resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==}
dev: true dev: true
/@types/react-dom@18.2.18: /@types/react-dom@18.2.14:
resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} resolution: {integrity: sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==}
dependencies: dependencies:
'@types/react': 18.2.48 '@types/react': 18.2.34
dev: true dev: true
/@types/react@18.2.48: /@types/react@18.2.34:
resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==} resolution: {integrity: sha512-U6eW/alrRk37FU/MS2RYMjx0Va2JGIVXELTODaTIYgvWGCV4Y4TfTUzG8DdmpDNIT0Xpj/R7GfyHOJJrDttcvg==}
dependencies: dependencies:
'@types/prop-types': 15.7.9 '@types/prop-types': 15.7.9
'@types/scheduler': 0.16.5 '@types/scheduler': 0.16.5
@ -2225,11 +2173,6 @@ packages:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.6'}
/cookie@0.6.0:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
dev: true
/core-util-is@1.0.3: /core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: true dev: true
@ -2658,8 +2601,8 @@ packages:
engines: {node: '>=10'} engines: {node: '>=10'}
dev: true dev: true
/eslint-config-prettier@9.1.0(eslint@8.52.0): /eslint-config-prettier@9.0.0(eslint@8.52.0):
resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
eslint: '>=7.0.0' eslint: '>=7.0.0'
@ -4689,6 +4632,18 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.6'}
/node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
peerDependenciesMeta:
encoding:
optional: true
dependencies:
whatwg-url: 5.0.0
dev: true
/node-releases@2.0.13: /node-releases@2.0.13:
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
dev: true dev: true
@ -4930,6 +4885,10 @@ packages:
engines: {node: '>=6'} engines: {node: '>=6'}
dev: true dev: true
/parse-multipart-data@1.5.0:
resolution: {integrity: sha512-ck5zaMF0ydjGfejNMnlo5YU2oJ+pT+80Jb1y4ybanT27j+zbVP/jkYmCrUGsEln0Ox/hZmuvgy8Ra7AxbXP2Mw==}
dev: true
/parseurl@1.3.3: /parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
@ -5126,8 +5085,8 @@ packages:
hasBin: true hasBin: true
dev: true dev: true
/prettier@3.2.4: /prettier@3.0.3:
resolution: {integrity: sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==} resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==}
engines: {node: '>=14'} engines: {node: '>=14'}
hasBin: true hasBin: true
dev: true dev: true
@ -5891,6 +5850,10 @@ packages:
resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==}
dev: true dev: true
/tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
dev: true
/trim-lines@3.0.1: /trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
dev: true dev: true
@ -6010,6 +5973,13 @@ packages:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
dev: true dev: true
/undici@5.27.2:
resolution: {integrity: sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==}
engines: {node: '>=14.0'}
dependencies:
'@fastify/busboy': 2.0.0
dev: true
/unified@10.1.2: /unified@10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies: dependencies:
@ -6250,6 +6220,17 @@ packages:
resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
engines: {node: '>= 8'} engines: {node: '>= 8'}
/webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
dev: true
/whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
dev: true
/which-boxed-primitive@1.0.2: /which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies: dependencies:

View File

@ -1 +0,0 @@
trigger5

View File

@ -13,10 +13,10 @@
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"~/*": ["./app/*"], "~/*": ["./app/*"]
}, },
// Remix takes care of building everything in `remix build`. // Remix takes care of building everything in `remix build`.
"noEmit": true, "noEmit": true
}, }
} }

Binary file not shown.

View File

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
networkTimeout=10000 networkTimeout=10000
validateDistributionUrl=true validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME

49
infrastructure/.env Normal file
View File

@ -0,0 +1,49 @@
# base domain
BASE_DOMAIN=rattermeyer.de
# Traefik server host
TRAEFIK_HOST=traefik.demo.${BASE_DOMAIN}
TRAEFIK_LETSENCRYPT_CASERVER=https://acme-staging-v02.api.letsencrypt.org/directory
TRAEFIK_LETSENCRYPT_EMAIL=richard.attermeyer@gmail.com
TRAEIFK_LOCALIP_WHITELIST=127.0.0.1/32, 192.168.0.0/16, 172.16.0.0/12, ::1, 2a00:6020:b41a:b600::/56
MAIL_HOST=mail.demo.${BASE_DOMAIN}
# forgejo server address
FORGEJO_HOST=git.demo.${BASE_DOMAIN}
FORGEJO_URL=https://${FORGEJO_HOST}
# Woodpecker server host
WOODPECKER_HOST=ci.demo.${BASE_DOMAIN}
# Woodpecker server address
WOODPECKER_URL=https://${WOODPECKER_HOST}
# Shared secret used by server and agents to authenticate communication (can be generated by 'openssl rand -hex 32')
WOODPECKER_AGENT_SECRET=c45adc154097b7a13a446da394570b888ea2e7da3aa462a318150266c9355f5d
# Comma-separated list of admin accounts
#WOODPECKER_ADMIN=CHANGE_ME
WOODPECKER_ADMIN=fjadmin
WOODPECKER_FORGEJO_URL=${FORGEJO_URL}
# giteleaks:allow
WOODPECKER_FORGEJO_CLIENT=e0049f6b-dd9d-4854-8b48-10dc724f61c3
# giteleaks:allow
WOODPECKER_FORGEJO_SECRET=gto_7nu6b2cljkimzc5bhbj2u7t2d5hpmig6wqbgmscaoq23x3uvgoda
# Renovate
RENOVATE_TOKEN=CHANGE_ME
# Registry
REGISTRY_HOST=container.demo.${BASE_DOMAIN}
REGISTRY_UI_HOST=container-ui.demo.${BASE_DOMAIN}
REPOSILITE_HOST=mvn.demo.${BASE_DOMAIN}
REPOSILITE_UI_HOST=mvn-ui.demo.${BASE_DOMAIN}
REPOSILITE_JAVA_COMPOSE_OPTS=
REPOSILITE_MEMORY=256M
REPOSILITE_COMPOSE_OPTS="--token admin:changeme"
REPOSILITE_PORT=8080
VERDACCIO_HOST=npm.demo.${BASE_DOMAIN}
SONARQUBE_HOST=sonarqube.demo.${BASE_DOMAIN}

View File

@ -27,7 +27,7 @@ volumes:
services: services:
traefik: traefik:
image: traefik:v2.10.7@sha256:6341b98aec5ec8969b99e9730f4c5b22cca3103d42b6bbe4b7a3c910758fe565 image: traefik:v2.10.5
container_name: traefik container_name: traefik
restart: always restart: always
# using network mode host allows traefik access to all "docker networks" # using network mode host allows traefik access to all "docker networks"
@ -53,7 +53,7 @@ services:
- "traefik.http.middlewares.local-ipwhitelist.ipwhitelist.sourcerange=${TRAEIFK_LOCALIP_WHITELIST}" - "traefik.http.middlewares.local-ipwhitelist.ipwhitelist.sourcerange=${TRAEIFK_LOCALIP_WHITELIST}"
smtp: smtp:
image: "maildev/maildev:2.1.0@sha256:f7429227b8f471b3fe761767d86a8794a2fc7488bccdcda46ea6d5ba5c2c7bf5" image: "maildev/maildev:2.1.0"
networks: networks:
- proxy - proxy
ports: ports:
@ -66,7 +66,7 @@ services:
- "traefik.http.services.mail.loadbalancer.server.port=1080" - "traefik.http.services.mail.loadbalancer.server.port=1080"
forgejo: forgejo:
image: codeberg.org/forgejo/forgejo:1.21@sha256:d2c67e2fb33d1d37318abac753b6ab3234415250cfb326427de9354858e97773 image: codeberg.org/forgejo/forgejo:1.20
container_name: forgejo container_name: forgejo
environment: environment:
- USER_UID=1000 - USER_UID=1000
@ -112,7 +112,7 @@ services:
- "traefik.tcp.services.forgejo-ssh-svc.loadbalancer.server.port=22" - "traefik.tcp.services.forgejo-ssh-svc.loadbalancer.server.port=22"
db: db:
image: postgres:16@sha256:49c276fa02e3d61bd9b8db81dfb4784fe814f50f778dce5980a03817438293e3 image: postgres:16
restart: always restart: always
environment: environment:
- POSTGRES_PASSWORD=changeme - POSTGRES_PASSWORD=changeme
@ -128,7 +128,7 @@ services:
- "./postgresql/initdb.d:/docker-entrypoint-initdb.d:Z" - "./postgresql/initdb.d:/docker-entrypoint-initdb.d:Z"
woodpecker-server: woodpecker-server:
image: woodpeckerci/woodpecker-server:v2.2.2@sha256:4717456849b41b6a0d3a429c062eab9eee9616839c24a67174dd812d9693b34c image: woodpeckerci/woodpecker-server:v2.2.2
container_name: woodpecker-server container_name: woodpecker-server
restart: unless-stopped restart: unless-stopped
cpus: 0.5 cpus: 0.5
@ -160,9 +160,9 @@ services:
woodpecker-agent: woodpecker-agent:
container_name: woodpecker-agent container_name: woodpecker-agent
image: woodpeckerci/woodpecker-agent:v2.2.2@sha256:26744e51b989b3885ffbcd8f1292fa1c47d1825c801973ea9aa714ad59003374 image: woodpeckerci/woodpecker-agent:v2.2.2
restart: unless-stopped restart: unless-stopped
cpus: 2 cpus: 0.5
mem_limit: 512m mem_limit: 512m
depends_on: depends_on:
- woodpecker-server - woodpecker-server
@ -176,7 +176,7 @@ services:
- "/var/run/docker.sock:/var/run/docker.sock" - "/var/run/docker.sock:/var/run/docker.sock"
registry: registry:
image: registry:2@sha256:f4e1b878d4bc40a1f65532d68c94dcfbab56aa8cba1f00e355a206e7f6cc9111 image: registry:2
container_name: registry container_name: registry
networks: networks:
- proxy - proxy
@ -192,7 +192,7 @@ services:
- "traefik.http.routers.registry.entrypoints=https" - "traefik.http.routers.registry.entrypoints=https"
- "traefik.http.services.registry.loadbalancer.server.port=5000" - "traefik.http.services.registry.loadbalancer.server.port=5000"
ui: ui:
image: joxit/docker-registry-ui:latest@sha256:ccb4b40737938050b2617b8c61d4287b1078c424ddafe0fcb81b5ce82a3a7198 image: joxit/docker-registry-ui:latest
environment: environment:
- DELETE_IMAGES=true - DELETE_IMAGES=true
- REGISTRY_TITLE=My Private Docker Registry - REGISTRY_TITLE=My Private Docker Registry
@ -209,7 +209,7 @@ services:
- "traefik.http.routers.regui.entrypoints=https" - "traefik.http.routers.regui.entrypoints=https"
- "traefik.http.services.regui.loadbalancer.passhostheader=true" - "traefik.http.services.regui.loadbalancer.passhostheader=true"
mvn-registry: mvn-registry:
image: ghcr.io/dzikoysk/reposilite:3.5.3@sha256:c123c706d9f6371495c5809a4d38b974d9403972b59173d1d1c336b7db49d050 image: ghcr.io/dzikoysk/reposilite:3.5.0
container_name: reposilite container_name: reposilite
deploy: deploy:
resources: resources:
@ -232,7 +232,7 @@ services:
- "traefik.http.routers.mvn.entrypoints=https" - "traefik.http.routers.mvn.entrypoints=https"
verdaccio: verdaccio:
image: verdaccio/verdaccio:5@sha256:c02b4c19b44df9b7a7781a30d79e5d5de2245382f223c188a7c252bf650a6a83 image: verdaccio/verdaccio:5
container_name: verdaccio container_name: verdaccio
volumes: volumes:
- verdaccio_data:/verdaccio/storage - verdaccio_data:/verdaccio/storage

View File

@ -1,4 +1,4 @@
FROM sonarqube:10.3-community@sha256:6238f139804f450197db27474a43f6839eb488b33c204d1279efcbd15747b23b FROM sonarqube:9.9-community
ARG COMMUNITY_BRANCH_VERSION=1.14.0 ARG COMMUNITY_BRANCH_VERSION=1.14.0
ENV COMMUNITY_BRANCH_URL=https://github.com/mc1arke/sonarqube-community-branch-plugin/releases/download/${COMMUNITY_BRANCH_VERSION}/sonarqube-community-branch-plugin-${COMMUNITY_BRANCH_VERSION}.jar ENV COMMUNITY_BRANCH_URL=https://github.com/mc1arke/sonarqube-community-branch-plugin/releases/download/${COMMUNITY_BRANCH_VERSION}/sonarqube-community-branch-plugin-${COMMUNITY_BRANCH_VERSION}.jar
WORKDIR ${SONARQUBE_HOME}/extensions WORKDIR ${SONARQUBE_HOME}/extensions

View File

@ -1,5 +1,5 @@
{ {
"devDependencies": { "devDependencies": {
"@commitlint/config-conventional": "18.6.0" "@commitlint/config-conventional": "^18.1.0"
} }
} }

View File

@ -6,13 +6,13 @@ settings:
devDependencies: devDependencies:
'@commitlint/config-conventional': '@commitlint/config-conventional':
specifier: 18.6.0 specifier: ^18.1.0
version: 18.6.0 version: 18.1.0
packages: packages:
/@commitlint/config-conventional@18.6.0: /@commitlint/config-conventional@18.1.0:
resolution: {integrity: sha512-CDCOf2eJz9D/TL44IBks0stM9TmdLCNE2B48owIU3YCadwzts/bobXPScagIgPQF6hhKYMEdj5zpUDlmbwuqwQ==} resolution: {integrity: sha512-8vvvtV3GOLEMHeKc8PjRL1lfP1Y4B6BG0WroFd9PJeRiOc3nFX1J0wlJenLURzl9Qus6YXVGWf+a/ZlbCKT3AA==}
engines: {node: '>=v18'} engines: {node: '>=v18'}
dependencies: dependencies:
conventional-changelog-conventionalcommits: 7.0.2 conventional-changelog-conventionalcommits: 7.0.2

View File

@ -1,5 +1,5 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices"], "extends": ["config:recommended"],
"platform": "gitea" "platform": "gitea"
} }

View File

@ -7,7 +7,7 @@
plugins { plugins {
// Apply the foojay-resolver plugin to allow automatic download of JDKs // Apply the foojay-resolver plugin to allow automatic download of JDKs
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
} }
rootProject.name = "ci-demo" rootProject.name = "ci-demo"