Compare commits
15 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
dc1a3b6547 | |
|
|
246ebb6318 | |
|
|
f64a27b2c1 | |
|
|
7209d920cd | |
|
|
1064337c48 | |
|
|
af1d221e31 | |
|
|
73fbc2a019 | |
|
|
379927c193 | |
|
|
22c21668aa | |
|
|
c0e7fbc3e4 | |
|
|
b5a6456f57 | |
|
|
929aa8cc17 | |
|
|
704038ee54 | |
|
|
04be97ce48 | |
|
|
8f0a7e305c |
|
|
@ -107,5 +107,3 @@ docker/target/*.jar
|
|||
version-lock.sh
|
||||
.DS_Store
|
||||
.pnpm-store
|
||||
|
||||
infrastructure/.env
|
||||
|
|
|
|||
|
|
@ -1,19 +1,19 @@
|
|||
---
|
||||
variables:
|
||||
- &java_image "gradle:8.5.0-jdk21@sha256:d64047f74f0aefaae35916a3d29a2d8d5890bc4a5cc8f8d14f898c0afb5c8a16"
|
||||
- &java_image "gradle:8.5.0-jdk17"
|
||||
when:
|
||||
path: "app/**"
|
||||
event: [push, tag]
|
||||
clone:
|
||||
git:
|
||||
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8
|
||||
image: woodpeckerci/plugin-git
|
||||
settings:
|
||||
skip_verify: true
|
||||
partial: false
|
||||
tags: true
|
||||
steps:
|
||||
"prepare:version":
|
||||
image: bitnami/git:2.43.0@sha256:3932583adf73c9e7e75232c0a3637fb0ff7833d7a81c858e74468df0dbd89cf1
|
||||
image: bitnami/git:2.43.0
|
||||
commands:
|
||||
- . ./version.sh
|
||||
"lint:style":
|
||||
|
|
@ -22,7 +22,7 @@ steps:
|
|||
- gradle --no-daemon spotlessCheck
|
||||
depends_on: ["prepare:version"]
|
||||
"lint:dockerfile":
|
||||
image: ghcr.io/hadolint/hadolint:latest-debian@sha256:9cef74a390694cdc01dd119cbba9adac5bb6671ce67d8d79eb7ec68f497a3684
|
||||
image: ghcr.io/hadolint/hadolint:latest-debian
|
||||
commands:
|
||||
- hadolint --version
|
||||
depends_on: ["prepare:version"]
|
||||
|
|
@ -42,7 +42,7 @@ steps:
|
|||
|
||||
"deploy:backend":
|
||||
depends_on: ["analyze:sbom"]
|
||||
image: alpine:latest@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b
|
||||
image: alpine:latest
|
||||
commands:
|
||||
- echo "deploy backend"
|
||||
- env
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@ when:
|
|||
path: "documentation/**"
|
||||
event: [push, tag]
|
||||
variables:
|
||||
- &frontend_image "cl00e9ment/node.js-builder:git@sha256:c3f6622a282e81536fa07c0218dfc35aa4141076679d9ea73839ae0032bd57cb"
|
||||
- &frontend_image "cl00e9ment/node.js-builder:git"
|
||||
clone:
|
||||
git:
|
||||
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8
|
||||
image: woodpeckerci/plugin-git
|
||||
partial: false
|
||||
settings:
|
||||
skip_verify: true
|
||||
|
|
@ -29,7 +29,7 @@ steps:
|
|||
- pnpm antora generate --stacktrace antora-playbook.yml
|
||||
directory: documentation
|
||||
"assemble:documentation":
|
||||
image: gcr.io/kaniko-project/executor:v1.20.0-debug@sha256:6976d731d1fc2a4e89986d833c1538946bd36b43e21fb1d0db38fe9499adc49c
|
||||
image: gcr.io/kaniko-project/executor:v1.20.0-debug
|
||||
commands: # Test if using --insecure can be used to directly push to the registry
|
||||
- echo "$CI_WORKSPACE"
|
||||
- echo "$PWD"
|
||||
|
|
@ -43,7 +43,7 @@ steps:
|
|||
- ls -lh
|
||||
directory: 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:
|
||||
- crane push --insecure image.tar "container.demo.rattermeyer.de/${CI_REPO_OWNER}/${CI_REPO_NAME}"
|
||||
directory: documentation
|
||||
|
|
|
|||
|
|
@ -3,69 +3,73 @@ when:
|
|||
path: "frontend/**"
|
||||
event: [push, tag]
|
||||
variables:
|
||||
- &frontend_image "cl00e9ment/node.js-builder:git@sha256:c3f6622a282e81536fa07c0218dfc35aa4141076679d9ea73839ae0032bd57cb"
|
||||
- &frontend_image "cl00e9ment/node.js-builder:git"
|
||||
clone:
|
||||
git:
|
||||
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8
|
||||
image: woodpeckerci/plugin-git
|
||||
settings:
|
||||
skip_verify: true
|
||||
partial: false
|
||||
tags: true
|
||||
steps:
|
||||
"prepare:version":
|
||||
image: bitnami/git:2.43.0@sha256:3932583adf73c9e7e75232c0a3637fb0ff7833d7a81c858e74468df0dbd89cf1
|
||||
image: bitnami/git:2.43.0
|
||||
commands:
|
||||
- . ./version.sh
|
||||
"prepare:frontend":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:version"]
|
||||
commands:
|
||||
- pnpm install --frozen-lockfile
|
||||
- find . -name "prettier"
|
||||
- npm install
|
||||
- ls -ltra ./node_modules
|
||||
- sleep 20s
|
||||
directory: frontend
|
||||
|
||||
"lint:style":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- sleep 7s
|
||||
- find . -name "prettier"
|
||||
- pnpm run prettier
|
||||
- ls -la ./node_modules
|
||||
- ls -la ./node_modules/.bin
|
||||
- ls -la ./node_modules/.bin/prettier
|
||||
- ./node_modules/.bin/prettier . --check
|
||||
- npm run prettier
|
||||
directory: frontend
|
||||
|
||||
"lint:analyze":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- sleep 7s
|
||||
- pnpm run lint
|
||||
- ls -la ./node_modules
|
||||
- npm run lint
|
||||
directory: frontend
|
||||
|
||||
"build:frontend":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- sleep 7s
|
||||
- pnpm run build
|
||||
- npm run build
|
||||
directory: frontend
|
||||
|
||||
"build:tsc":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- pnpm add typescript
|
||||
- pnpm run typecheck
|
||||
- npm install -D typescript
|
||||
- npm run typecheck
|
||||
directory: frontend
|
||||
|
||||
"analyze:sbom":
|
||||
image: *frontend_image
|
||||
depends_on: ["prepare:frontend"]
|
||||
commands:
|
||||
- sleep 7s
|
||||
- rm -rf node_modules
|
||||
- npm install
|
||||
- npx @cyclonedx/cyclonedx-npm --output-file bom.json
|
||||
directory: frontend
|
||||
|
||||
"deploy:frontend":
|
||||
image: alpine:latest@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b
|
||||
image: alpine:latest
|
||||
depends_on: ["build:frontend"]
|
||||
commands:
|
||||
- echo "deploy frontend"
|
||||
|
|
@ -74,5 +78,5 @@ steps:
|
|||
when:
|
||||
- event: [manual]
|
||||
|
||||
#depends_on:
|
||||
# - "lint_general"
|
||||
#depends_on:
|
||||
# - "lint_general"
|
||||
|
|
|
|||
|
|
@ -3,12 +3,12 @@ when:
|
|||
event: [push, tag]
|
||||
clone:
|
||||
git:
|
||||
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8
|
||||
image: woodpeckerci/plugin-git
|
||||
settings:
|
||||
skip_verify: true
|
||||
steps:
|
||||
"prepare:commitlint":
|
||||
image: bitnami/git:2.43.0@sha256:3932583adf73c9e7e75232c0a3637fb0ff7833d7a81c858e74468df0dbd89cf1
|
||||
image: bitnami/git:2.43.0
|
||||
commands:
|
||||
- git log -1 --pretty=%B >> commitlint.txt
|
||||
|
||||
|
|
@ -23,13 +23,13 @@ steps:
|
|||
- branch: [main, dev]
|
||||
event: push
|
||||
"lint:precommit":
|
||||
image: python:3.12.1-bullseye@sha256:2d5f7c8645d454ef5bbfebec83df0f2624fb3d47ea47920484c6d140835c4cdb
|
||||
image: python:3.12.1-bullseye
|
||||
commands:
|
||||
- pip install pre-commit
|
||||
- pre-commit install
|
||||
- pre-commit run --all-files
|
||||
"lint:credentials":
|
||||
image: ghcr.io/gitleaks/gitleaks:latest@sha256:6945c62ca019ead32bc337ab0c9fd055e98d82961765d38b7ccccc84dae95d0f
|
||||
image: ghcr.io/gitleaks/gitleaks:latest
|
||||
commands:
|
||||
- export HOME=/home/gitleaks
|
||||
- gitleaks detect
|
||||
|
|
|
|||
|
|
@ -4,14 +4,14 @@ when:
|
|||
event: [push]
|
||||
clone:
|
||||
git:
|
||||
image: woodpeckerci/plugin-git@sha256:7af90de3a9aa5dc93cc0d5cd2e67e28cb237d4b8e891ccacfd9031f78f4b05a8
|
||||
image: woodpeckerci/plugin-git
|
||||
settings:
|
||||
skip_verify: true
|
||||
partial: true
|
||||
|
||||
steps:
|
||||
"version:update":
|
||||
image: bitnami/git:2.43.0@sha256:3932583adf73c9e7e75232c0a3637fb0ff7833d7a81c858e74468df0dbd89cf1
|
||||
image: bitnami/git:2.43.0
|
||||
commands:
|
||||
- echo "$CI_COMMIT_MESSAGE" | ./version-auto-update.sh
|
||||
- git config --global http.sslVerify false
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ dependencies {
|
|||
}
|
||||
|
||||
dependencyManagement {
|
||||
imports { mavenBom("org.springframework.modulith:spring-modulith-bom:1.1.2") }
|
||||
imports { mavenBom("org.springframework.modulith:spring-modulith-bom:1.0.2") }
|
||||
}
|
||||
|
||||
application {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM nginx:1.25.3-alpine@sha256:d12e6f7153fae36843aaeed8144c39956698e084e2e898891fa0cc8fe8f6c95c
|
||||
FROM nginx:1.25.3-alpine
|
||||
|
||||
RUN mkdir -p /docroot /var/run \
|
||||
&& chgrp -R 0 /etc/nginx \
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -17,44 +17,44 @@
|
|||
"last 2 versions"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@asciidoctor/core": "2.2.6",
|
||||
"@fontsource/roboto": "4.5.8",
|
||||
"@fontsource/roboto-mono": "4.5.10",
|
||||
"autoprefixer": "9.8.8",
|
||||
"browser-pack-flat": "3.5.0",
|
||||
"browserify": "16.5.2",
|
||||
"cssnano": "4.1.11",
|
||||
"eslint": "6.8.0",
|
||||
"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",
|
||||
"fancy-log": "1.3.3",
|
||||
"fs-extra": "8.1.0",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-cli": "2.3.0",
|
||||
"gulp-concat": "2.6.1",
|
||||
"gulp-connect": "5.7.0",
|
||||
"gulp-eslint": "6.0.0",
|
||||
"gulp-imagemin": "6.2.0",
|
||||
"gulp-postcss": "8.0.0",
|
||||
"gulp-stylelint": "13.0.0",
|
||||
"gulp-uglify": "3.0.2",
|
||||
"gulp-vinyl-zip": "2.2.1",
|
||||
"handlebars": "4.7.8",
|
||||
"@asciidoctor/core": "~2.2",
|
||||
"@fontsource/roboto": "~4.5",
|
||||
"@fontsource/roboto-mono": "~4.5",
|
||||
"autoprefixer": "~9.8.0",
|
||||
"browser-pack-flat": "~3.5.0",
|
||||
"browserify": "~16.5",
|
||||
"cssnano": "~4.1",
|
||||
"eslint": "~6.8",
|
||||
"eslint-config-standard": "~14.1",
|
||||
"eslint-plugin-import": "~2.20",
|
||||
"eslint-plugin-node": "~11.1",
|
||||
"eslint-plugin-promise": "~4.2",
|
||||
"eslint-plugin-standard": "~4.0",
|
||||
"fancy-log": "~1.3",
|
||||
"fs-extra": "~8.1",
|
||||
"gulp": "~4.0",
|
||||
"gulp-cli": "^2.3.0",
|
||||
"gulp-concat": "~2.6",
|
||||
"gulp-connect": "~5.7",
|
||||
"gulp-eslint": "~6.0",
|
||||
"gulp-imagemin": "~6.2",
|
||||
"gulp-postcss": "~8.0",
|
||||
"gulp-stylelint": "~13.0",
|
||||
"gulp-uglify": "~3.0",
|
||||
"gulp-vinyl-zip": "~2.2",
|
||||
"handlebars": "~4.7",
|
||||
"highlight.js": "9.18.5",
|
||||
"js-yaml": "3.13.1",
|
||||
"merge-stream": "2.0.0",
|
||||
"postcss-calc": "7.0.5",
|
||||
"postcss-custom-properties": "9.1.1",
|
||||
"postcss-import": "12.0.1",
|
||||
"postcss-url": "8.0.0",
|
||||
"prettier-eslint": "9.0.2",
|
||||
"require-directory": "2.1.1",
|
||||
"require-from-string": "2.0.2",
|
||||
"stylelint": "13.3.3",
|
||||
"stylelint-config-standard": "20.0.0",
|
||||
"vinyl-fs": "3.0.3"
|
||||
"js-yaml": "~3.13",
|
||||
"merge-stream": "~2.0",
|
||||
"postcss-calc": "~7.0",
|
||||
"postcss-custom-properties": "~9.1",
|
||||
"postcss-import": "~12.0",
|
||||
"postcss-url": "~8.0",
|
||||
"prettier-eslint": "~9.0",
|
||||
"require-directory": "~2.1",
|
||||
"require-from-string": "~2.0",
|
||||
"stylelint": "~13.3",
|
||||
"stylelint-config-standard": "~20.0",
|
||||
"vinyl-fs": "~3.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,121 +6,121 @@ settings:
|
|||
|
||||
devDependencies:
|
||||
'@asciidoctor/core':
|
||||
specifier: 2.2.6
|
||||
specifier: ~2.2
|
||||
version: 2.2.6
|
||||
'@fontsource/roboto':
|
||||
specifier: 4.5.8
|
||||
specifier: ~4.5
|
||||
version: 4.5.8
|
||||
'@fontsource/roboto-mono':
|
||||
specifier: 4.5.10
|
||||
specifier: ~4.5
|
||||
version: 4.5.10
|
||||
autoprefixer:
|
||||
specifier: 9.8.8
|
||||
specifier: ~9.8.0
|
||||
version: 9.8.8
|
||||
browser-pack-flat:
|
||||
specifier: 3.5.0
|
||||
specifier: ~3.5.0
|
||||
version: 3.5.0
|
||||
browserify:
|
||||
specifier: 16.5.2
|
||||
specifier: ~16.5
|
||||
version: 16.5.2
|
||||
cssnano:
|
||||
specifier: 4.1.11
|
||||
specifier: ~4.1
|
||||
version: 4.1.11
|
||||
eslint:
|
||||
specifier: 6.8.0
|
||||
specifier: ~6.8
|
||||
version: 6.8.0
|
||||
eslint-config-standard:
|
||||
specifier: 14.1.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)
|
||||
specifier: ~14.1
|
||||
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:
|
||||
specifier: 2.29.1
|
||||
version: 2.29.1(eslint@6.8.0)
|
||||
specifier: ~2.20
|
||||
version: 2.20.2(eslint@6.8.0)
|
||||
eslint-plugin-node:
|
||||
specifier: 11.1.0
|
||||
specifier: ~11.1
|
||||
version: 11.1.0(eslint@6.8.0)
|
||||
eslint-plugin-promise:
|
||||
specifier: 4.2.1
|
||||
specifier: ~4.2
|
||||
version: 4.2.1
|
||||
eslint-plugin-standard:
|
||||
specifier: 4.0.2
|
||||
specifier: ~4.0
|
||||
version: 4.0.2(eslint@6.8.0)
|
||||
fancy-log:
|
||||
specifier: 1.3.3
|
||||
specifier: ~1.3
|
||||
version: 1.3.3
|
||||
fs-extra:
|
||||
specifier: 8.1.0
|
||||
specifier: ~8.1
|
||||
version: 8.1.0
|
||||
gulp:
|
||||
specifier: 4.0.2
|
||||
specifier: ~4.0
|
||||
version: 4.0.2
|
||||
gulp-cli:
|
||||
specifier: 2.3.0
|
||||
specifier: ^2.3.0
|
||||
version: 2.3.0
|
||||
gulp-concat:
|
||||
specifier: 2.6.1
|
||||
specifier: ~2.6
|
||||
version: 2.6.1
|
||||
gulp-connect:
|
||||
specifier: 5.7.0
|
||||
specifier: ~5.7
|
||||
version: 5.7.0
|
||||
gulp-eslint:
|
||||
specifier: 6.0.0
|
||||
specifier: ~6.0
|
||||
version: 6.0.0
|
||||
gulp-imagemin:
|
||||
specifier: 6.2.0
|
||||
specifier: ~6.2
|
||||
version: 6.2.0(gulp@4.0.2)
|
||||
gulp-postcss:
|
||||
specifier: 8.0.0
|
||||
specifier: ~8.0
|
||||
version: 8.0.0
|
||||
gulp-stylelint:
|
||||
specifier: 13.0.0
|
||||
specifier: ~13.0
|
||||
version: 13.0.0(stylelint@13.3.3)
|
||||
gulp-uglify:
|
||||
specifier: 3.0.2
|
||||
specifier: ~3.0
|
||||
version: 3.0.2
|
||||
gulp-vinyl-zip:
|
||||
specifier: 2.2.1
|
||||
specifier: ~2.2
|
||||
version: 2.2.1
|
||||
handlebars:
|
||||
specifier: 4.7.8
|
||||
specifier: ~4.7
|
||||
version: 4.7.8
|
||||
highlight.js:
|
||||
specifier: 9.18.5
|
||||
version: 9.18.5
|
||||
js-yaml:
|
||||
specifier: 3.13.1
|
||||
specifier: ~3.13
|
||||
version: 3.13.1
|
||||
merge-stream:
|
||||
specifier: 2.0.0
|
||||
specifier: ~2.0
|
||||
version: 2.0.0
|
||||
postcss-calc:
|
||||
specifier: 7.0.5
|
||||
specifier: ~7.0
|
||||
version: 7.0.5
|
||||
postcss-custom-properties:
|
||||
specifier: 9.1.1
|
||||
specifier: ~9.1
|
||||
version: 9.1.1
|
||||
postcss-import:
|
||||
specifier: 12.0.1
|
||||
specifier: ~12.0
|
||||
version: 12.0.1
|
||||
postcss-url:
|
||||
specifier: 8.0.0
|
||||
specifier: ~8.0
|
||||
version: 8.0.0
|
||||
prettier-eslint:
|
||||
specifier: 9.0.2
|
||||
specifier: ~9.0
|
||||
version: 9.0.2
|
||||
require-directory:
|
||||
specifier: 2.1.1
|
||||
specifier: ~2.1
|
||||
version: 2.1.1
|
||||
require-from-string:
|
||||
specifier: 2.0.2
|
||||
specifier: ~2.0
|
||||
version: 2.0.2
|
||||
stylelint:
|
||||
specifier: 13.3.3
|
||||
specifier: ~13.3
|
||||
version: 13.3.3
|
||||
stylelint-config-standard:
|
||||
specifier: 20.0.0
|
||||
specifier: ~20.0
|
||||
version: 20.0.0(stylelint@13.3.3)
|
||||
vinyl-fs:
|
||||
specifier: 3.0.3
|
||||
specifier: ~3.0
|
||||
version: 3.0.3
|
||||
|
||||
packages:
|
||||
|
|
@ -442,10 +442,6 @@ packages:
|
|||
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
||||
dev: true
|
||||
|
||||
/@types/json5@0.0.29:
|
||||
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
|
||||
dev: true
|
||||
|
||||
/@types/keyv@3.1.4:
|
||||
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
|
||||
requiresBuild: true
|
||||
|
|
@ -838,17 +834,6 @@ packages:
|
|||
engines: {node: '>=0.10.0'}
|
||||
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:
|
||||
resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
|
@ -859,16 +844,6 @@ packages:
|
|||
es-shim-unscopables: 1.0.2
|
||||
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:
|
||||
resolution: {integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
|
@ -1826,6 +1801,11 @@ packages:
|
|||
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
|
||||
dev: true
|
||||
|
||||
/contains-path@0.1.0:
|
||||
resolution: {integrity: sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/content-disposition@0.5.4:
|
||||
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
|
||||
engines: {node: '>= 0.6'}
|
||||
|
|
@ -2382,11 +2362,12 @@ packages:
|
|||
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
||||
dev: true
|
||||
|
||||
/doctrine@2.1.0:
|
||||
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
|
||||
/doctrine@1.5.0:
|
||||
resolution: {integrity: sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dependencies:
|
||||
esutils: 2.0.3
|
||||
isarray: 1.0.0
|
||||
dev: true
|
||||
|
||||
/doctrine@3.0.0:
|
||||
|
|
@ -2711,7 +2692,7 @@ packages:
|
|||
engines: {node: '>=0.8.0'}
|
||||
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==}
|
||||
peerDependencies:
|
||||
eslint: '>=6.2.2'
|
||||
|
|
@ -2721,7 +2702,7 @@ packages:
|
|||
eslint-plugin-standard: '>=4.0.0'
|
||||
dependencies:
|
||||
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-promise: 4.2.1
|
||||
eslint-plugin-standard: 4.0.2(eslint@6.8.0)
|
||||
|
|
@ -2776,34 +2757,29 @@ packages:
|
|||
regexpp: 3.2.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-import@2.29.1(eslint@6.8.0):
|
||||
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
|
||||
/eslint-plugin-import@2.20.2(eslint@6.8.0):
|
||||
resolution: {integrity: sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg==}
|
||||
engines: {node: '>=4'}
|
||||
peerDependencies:
|
||||
'@typescript-eslint/parser': '*'
|
||||
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
|
||||
eslint: 2.x - 6.x
|
||||
peerDependenciesMeta:
|
||||
'@typescript-eslint/parser':
|
||||
optional: true
|
||||
dependencies:
|
||||
array-includes: 3.1.7
|
||||
array.prototype.findlastindex: 1.2.3
|
||||
array.prototype.flat: 1.3.2
|
||||
array.prototype.flatmap: 1.3.2
|
||||
debug: 3.2.7
|
||||
doctrine: 2.1.0
|
||||
contains-path: 0.1.0
|
||||
debug: 2.6.9
|
||||
doctrine: 1.5.0
|
||||
eslint: 6.8.0
|
||||
eslint-import-resolver-node: 0.3.9
|
||||
eslint-module-utils: 2.8.0(eslint-import-resolver-node@0.3.9)(eslint@6.8.0)
|
||||
hasown: 2.0.0
|
||||
is-core-module: 2.13.1
|
||||
is-glob: 4.0.3
|
||||
has: 1.0.4
|
||||
minimatch: 3.1.2
|
||||
object.fromentries: 2.0.7
|
||||
object.groupby: 1.0.1
|
||||
object.values: 1.1.7
|
||||
semver: 6.3.1
|
||||
tsconfig-paths: 3.15.0
|
||||
read-pkg-up: 2.0.0
|
||||
resolve: 1.22.8
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-typescript
|
||||
- eslint-import-resolver-webpack
|
||||
|
|
@ -3436,6 +3412,13 @@ packages:
|
|||
pinkie-promise: 2.0.1
|
||||
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:
|
||||
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
|
||||
engines: {node: '>=8'}
|
||||
|
|
@ -4309,7 +4292,7 @@ packages:
|
|||
depd: 1.1.2
|
||||
inherits: 2.0.3
|
||||
setprototypeof: 1.1.0
|
||||
statuses: 1.5.0
|
||||
statuses: 1.4.0
|
||||
dev: true
|
||||
|
||||
/http-errors@2.0.0:
|
||||
|
|
@ -5088,13 +5071,6 @@ packages:
|
|||
jsonify: 0.0.1
|
||||
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:
|
||||
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
||||
engines: {node: '>=6'}
|
||||
|
|
@ -5245,6 +5221,24 @@ packages:
|
|||
strip-bom: 2.0.0
|
||||
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:
|
||||
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
|
||||
engines: {node: '>=8'}
|
||||
|
|
@ -5945,15 +5939,6 @@ packages:
|
|||
isobject: 3.0.1
|
||||
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:
|
||||
resolution: {integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==}
|
||||
engines: {node: '>= 0.8'}
|
||||
|
|
@ -5966,15 +5951,6 @@ packages:
|
|||
safe-array-concat: 1.0.1
|
||||
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:
|
||||
resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
|
@ -6142,6 +6118,13 @@ packages:
|
|||
dev: 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:
|
||||
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
|
||||
engines: {node: '>=6'}
|
||||
|
|
@ -6149,6 +6132,13 @@ packages:
|
|||
p-try: 2.2.0
|
||||
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:
|
||||
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
|
||||
engines: {node: '>=8'}
|
||||
|
|
@ -6195,6 +6185,11 @@ packages:
|
|||
dev: 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:
|
||||
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
|
||||
engines: {node: '>=6'}
|
||||
|
|
@ -6307,6 +6302,11 @@ packages:
|
|||
pinkie-promise: 2.0.1
|
||||
dev: true
|
||||
|
||||
/path-exists@3.0.0:
|
||||
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
|
||||
engines: {node: '>=4'}
|
||||
dev: true
|
||||
|
||||
/path-exists@4.0.0:
|
||||
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
||||
engines: {node: '>=8'}
|
||||
|
|
@ -6356,6 +6356,13 @@ packages:
|
|||
pinkie-promise: 2.0.1
|
||||
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:
|
||||
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
||||
engines: {node: '>=8'}
|
||||
|
|
@ -7078,6 +7085,14 @@ packages:
|
|||
read-pkg: 1.1.0
|
||||
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:
|
||||
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
|
||||
engines: {node: '>=8'}
|
||||
|
|
@ -7096,6 +7111,15 @@ packages:
|
|||
path-type: 1.1.0
|
||||
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:
|
||||
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
|
||||
engines: {node: '>=8'}
|
||||
|
|
@ -8498,15 +8522,6 @@ packages:
|
|||
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
|
||||
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:
|
||||
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
|
||||
dev: true
|
||||
|
|
|
|||
|
|
@ -6,11 +6,11 @@
|
|||
"": {
|
||||
"devDependencies": {
|
||||
"@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",
|
||||
"asciidoctor-kroki": "0.18.1",
|
||||
"http-server": "14.1.1",
|
||||
"linkinator": "6.0.4"
|
||||
"asciidoctor-kroki": "^0.18.0",
|
||||
"http-server": "^14.1.1",
|
||||
"linkinator": "^6.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@antora/asciidoc-loader": {
|
||||
|
|
@ -140,7 +140,7 @@
|
|||
},
|
||||
"node_modules/@antora/lunr-extension": {
|
||||
"version": "1.0.0-alpha.8",
|
||||
"resolved": "http://npm.demo.rattermeyer.de/@antora/lunr-extension/-/lunr-extension-1.0.0-alpha.8.tgz",
|
||||
"resolved": "https://registry.npmjs.org/@antora/lunr-extension/-/lunr-extension-1.0.0-alpha.8.tgz",
|
||||
"integrity": "sha512-vdBgW3rsvbnmA236kT2Dckh9n0Db5za2/WxiLnFLgZ05ZO1KJQa9+R2WHaIFuGE7bKKbY+lqfM/i3KiezbL9YQ==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
|
|
@ -1550,7 +1550,7 @@
|
|||
},
|
||||
"node_modules/http-server": {
|
||||
"version": "14.1.1",
|
||||
"resolved": "http://npm.demo.rattermeyer.de/http-server/-/http-server-14.1.1.tgz",
|
||||
"resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz",
|
||||
"integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@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",
|
||||
"asciidoctor-kroki": "0.18.1",
|
||||
"http-server": "14.1.1",
|
||||
"linkinator": "6.0.4"
|
||||
"asciidoctor-kroki": "^0.18.0",
|
||||
"http-server": "^14.1.1",
|
||||
"linkinator": "^6.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,19 +9,19 @@ devDependencies:
|
|||
specifier: 3.1.7
|
||||
version: 3.1.7
|
||||
'@antora/lunr-extension':
|
||||
specifier: 1.0.0-alpha.8
|
||||
specifier: ^1.0.0-alpha.8
|
||||
version: 1.0.0-alpha.8
|
||||
'@antora/site-generator':
|
||||
specifier: 3.1.7
|
||||
version: 3.1.7
|
||||
asciidoctor-kroki:
|
||||
specifier: 0.18.1
|
||||
specifier: ^0.18.0
|
||||
version: 0.18.1(@asciidoctor/core@2.2.6)
|
||||
http-server:
|
||||
specifier: 14.1.1
|
||||
specifier: ^14.1.1
|
||||
version: 14.1.1
|
||||
linkinator:
|
||||
specifier: 6.0.4
|
||||
specifier: ^6.0.0
|
||||
version: 6.0.4
|
||||
|
||||
packages:
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -9,7 +9,7 @@
|
|||
"start": "remix-serve ./build/index.js",
|
||||
"typecheck": "tsc",
|
||||
"lint": "eslint app",
|
||||
"lint:fix": "pnpm run lint --fix",
|
||||
"lint:fix": "npm run lint --fix",
|
||||
"prettier": "prettier . --check",
|
||||
"prettier:fix": "prettier . --write"
|
||||
},
|
||||
|
|
@ -23,14 +23,14 @@
|
|||
"react-dom": "^18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@remix-run/dev": "2.5.1",
|
||||
"@remix-run/eslint-config": "2.5.1",
|
||||
"@types/react": "18.2.48",
|
||||
"@types/react-dom": "18.2.18",
|
||||
"eslint": "8.52.0",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"@remix-run/dev": "^2.2.0",
|
||||
"@remix-run/eslint-config": "^2.2.0",
|
||||
"@types/react": "^18.2.20",
|
||||
"@types/react-dom": "^18.2.7",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-config-prettier": "9.0.0",
|
||||
"prettier": "3.2.4",
|
||||
"typescript": "5.2.2"
|
||||
"typescript": "^5.1.6"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
|
|
|
|||
|
|
@ -29,28 +29,28 @@ dependencies:
|
|||
|
||||
devDependencies:
|
||||
'@remix-run/dev':
|
||||
specifier: 2.5.1
|
||||
version: 2.5.1(@remix-run/serve@2.2.0)(typescript@5.2.2)
|
||||
specifier: ^2.2.0
|
||||
version: 2.2.0(@remix-run/serve@2.2.0)(typescript@5.2.2)
|
||||
'@remix-run/eslint-config':
|
||||
specifier: 2.5.1
|
||||
version: 2.5.1(eslint@8.52.0)(react@18.2.0)(typescript@5.2.2)
|
||||
specifier: ^2.2.0
|
||||
version: 2.2.0(eslint@8.52.0)(react@18.2.0)(typescript@5.2.2)
|
||||
'@types/react':
|
||||
specifier: 18.2.48
|
||||
version: 18.2.48
|
||||
specifier: ^18.2.20
|
||||
version: 18.2.34
|
||||
'@types/react-dom':
|
||||
specifier: 18.2.18
|
||||
version: 18.2.18
|
||||
specifier: ^18.2.7
|
||||
version: 18.2.14
|
||||
eslint:
|
||||
specifier: 8.52.0
|
||||
specifier: ^8.38.0
|
||||
version: 8.52.0
|
||||
eslint-config-prettier:
|
||||
specifier: 9.1.0
|
||||
version: 9.1.0(eslint@8.52.0)
|
||||
specifier: 9.0.0
|
||||
version: 9.0.0(eslint@8.52.0)
|
||||
prettier:
|
||||
specifier: 3.2.4
|
||||
version: 3.2.4
|
||||
typescript:
|
||||
specifier: 5.2.2
|
||||
specifier: ^5.1.6
|
||||
version: 5.2.2
|
||||
|
||||
packages:
|
||||
|
|
@ -909,6 +909,11 @@ packages:
|
|||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
dev: true
|
||||
|
||||
/@fastify/busboy@2.0.0:
|
||||
resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==}
|
||||
engines: {node: '>=14'}
|
||||
dev: true
|
||||
|
||||
/@humanwhocodes/config-array@0.11.13:
|
||||
resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
|
||||
engines: {node: '>=10.10.0'}
|
||||
|
|
@ -1083,14 +1088,14 @@ packages:
|
|||
engines: {node: '>=18.0.0'}
|
||||
dev: false
|
||||
|
||||
/@remix-run/dev@2.5.1(@remix-run/serve@2.2.0)(typescript@5.2.2):
|
||||
resolution: {integrity: sha512-IrYhWANubH+WM62Wz55n8NWT5kBqfbyytXDFlP0VoZLrr1IpJf2GtaT4IA+CODMaNoeXeMACOD5Tw5/Y2bO5lA==}
|
||||
/@remix-run/dev@2.2.0(@remix-run/serve@2.2.0)(typescript@5.2.2):
|
||||
resolution: {integrity: sha512-JtteMtYirQlj1Xf9FSLLjqO+owxlqJVsTESgVWdF+CR5kon2i12YjPnRx1xGtB4UGgU/yTZseMTPNhTKc5mwpQ==}
|
||||
engines: {node: '>=18.0.0'}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
'@remix-run/serve': ^2.5.1
|
||||
'@remix-run/serve': ^2.2.0
|
||||
typescript: ^5.1.0
|
||||
vite: ^5.0.0
|
||||
vite: ^4.4.9
|
||||
peerDependenciesMeta:
|
||||
'@remix-run/serve':
|
||||
optional: true
|
||||
|
|
@ -1109,10 +1114,10 @@ packages:
|
|||
'@babel/types': 7.23.0
|
||||
'@mdx-js/mdx': 2.3.0
|
||||
'@npmcli/package-json': 4.0.1
|
||||
'@remix-run/node': 2.5.1(typescript@5.2.2)
|
||||
'@remix-run/router': 1.14.2
|
||||
'@remix-run/node': 2.2.0(typescript@5.2.2)
|
||||
'@remix-run/router': 1.11.0
|
||||
'@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
|
||||
'@vanilla-extract/integration': 6.2.2
|
||||
arg: 5.0.2
|
||||
|
|
@ -1135,7 +1140,9 @@ packages:
|
|||
lodash: 4.17.21
|
||||
lodash.debounce: 4.0.8
|
||||
minimatch: 9.0.3
|
||||
node-fetch: 2.7.0
|
||||
ora: 5.4.1
|
||||
parse-multipart-data: 1.5.0
|
||||
picocolors: 1.0.0
|
||||
picomatch: 2.3.1
|
||||
pidtree: 0.6.0
|
||||
|
|
@ -1153,11 +1160,13 @@ packages:
|
|||
tar-fs: 2.1.1
|
||||
tsconfig-paths: 4.2.0
|
||||
typescript: 5.2.2
|
||||
undici: 5.27.2
|
||||
ws: 7.5.9
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- bluebird
|
||||
- bufferutil
|
||||
- encoding
|
||||
- less
|
||||
- lightningcss
|
||||
- sass
|
||||
|
|
@ -1169,8 +1178,8 @@ packages:
|
|||
- utf-8-validate
|
||||
dev: true
|
||||
|
||||
/@remix-run/eslint-config@2.5.1(eslint@8.52.0)(react@18.2.0)(typescript@5.2.2):
|
||||
resolution: {integrity: sha512-PpLj0QSd2NZ12KdTA2QYPd/FK3Szu9Np7kTmx26VxDZJTzQYSgGb5i2O9uby+j2sD68zR/+EAYaIcOlq66ekJw==}
|
||||
/@remix-run/eslint-config@2.2.0(eslint@8.52.0)(react@18.2.0)(typescript@5.2.2):
|
||||
resolution: {integrity: sha512-H+LPiQhsXaCsOVvyB5vf6wTAv72m/pI6rdoCjyx3ayipNGAuqldkAnmFD6Qa/Bpc/zRHk13+PZV27kjyNd32vw==}
|
||||
engines: {node: '>=18.0.0'}
|
||||
peerDependencies:
|
||||
eslint: ^8.0.0
|
||||
|
|
@ -1238,26 +1247,6 @@ packages:
|
|||
stream-slice: 0.1.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):
|
||||
resolution: {integrity: sha512-1nD5ihI0A1wUpFr9Eo9bquEtqjhjvg1OwFF7qDXXHgQ4Zh13y3MKO5dRmHf+Os999o0vqVJ+xSnVPN+Vbco3uA==}
|
||||
engines: {node: '>=18.0.0'}
|
||||
|
|
@ -1281,11 +1270,6 @@ packages:
|
|||
resolution: {integrity: sha512-BHdhcWgeiudl91HvVa2wxqZjSHbheSgIiDvxrF1VjFzBzpTtuDPkOdOi3Iqvc08kXtFkLjhbS+ML9aM8mJS+wQ==}
|
||||
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):
|
||||
resolution: {integrity: sha512-hUdxQeb/KwIiJTaW5w6OFgcF8lEucafxOkZDH66XYKdUAW4Mj300+gG8R0f20xdnf0Ud7PnhdVjkMhVNETyXqw==}
|
||||
engines: {node: '>=18.0.0'}
|
||||
|
|
@ -1320,24 +1304,6 @@ packages:
|
|||
source-map: 0.7.4
|
||||
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:
|
||||
resolution: {integrity: sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==}
|
||||
dependencies:
|
||||
|
|
@ -1357,20 +1323,6 @@ packages:
|
|||
data-uri-to-buffer: 3.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:
|
||||
resolution: {integrity: sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==}
|
||||
dependencies:
|
||||
|
|
@ -1417,10 +1369,6 @@ packages:
|
|||
/@types/cookie@0.4.1:
|
||||
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:
|
||||
resolution: {integrity: sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==}
|
||||
dependencies:
|
||||
|
|
@ -1475,14 +1423,14 @@ packages:
|
|||
resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==}
|
||||
dev: true
|
||||
|
||||
/@types/react-dom@18.2.18:
|
||||
resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==}
|
||||
/@types/react-dom@18.2.14:
|
||||
resolution: {integrity: sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==}
|
||||
dependencies:
|
||||
'@types/react': 18.2.48
|
||||
'@types/react': 18.2.34
|
||||
dev: true
|
||||
|
||||
/@types/react@18.2.48:
|
||||
resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==}
|
||||
/@types/react@18.2.34:
|
||||
resolution: {integrity: sha512-U6eW/alrRk37FU/MS2RYMjx0Va2JGIVXELTODaTIYgvWGCV4Y4TfTUzG8DdmpDNIT0Xpj/R7GfyHOJJrDttcvg==}
|
||||
dependencies:
|
||||
'@types/prop-types': 15.7.9
|
||||
'@types/scheduler': 0.16.5
|
||||
|
|
@ -2225,11 +2173,6 @@ packages:
|
|||
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
|
||||
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:
|
||||
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
|
||||
dev: true
|
||||
|
|
@ -2658,8 +2601,8 @@ packages:
|
|||
engines: {node: '>=10'}
|
||||
dev: true
|
||||
|
||||
/eslint-config-prettier@9.1.0(eslint@8.52.0):
|
||||
resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
|
||||
/eslint-config-prettier@9.0.0(eslint@8.52.0):
|
||||
resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
eslint: '>=7.0.0'
|
||||
|
|
@ -4689,6 +4632,18 @@ packages:
|
|||
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
||||
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:
|
||||
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
|
||||
dev: true
|
||||
|
|
@ -4930,6 +4885,10 @@ packages:
|
|||
engines: {node: '>=6'}
|
||||
dev: true
|
||||
|
||||
/parse-multipart-data@1.5.0:
|
||||
resolution: {integrity: sha512-ck5zaMF0ydjGfejNMnlo5YU2oJ+pT+80Jb1y4ybanT27j+zbVP/jkYmCrUGsEln0Ox/hZmuvgy8Ra7AxbXP2Mw==}
|
||||
dev: true
|
||||
|
||||
/parseurl@1.3.3:
|
||||
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
|
||||
engines: {node: '>= 0.8'}
|
||||
|
|
@ -5891,6 +5850,10 @@ packages:
|
|||
resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==}
|
||||
dev: true
|
||||
|
||||
/tr46@0.0.3:
|
||||
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
|
||||
dev: true
|
||||
|
||||
/trim-lines@3.0.1:
|
||||
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
|
||||
dev: true
|
||||
|
|
@ -6010,6 +5973,13 @@ packages:
|
|||
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
|
||||
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:
|
||||
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
|
||||
dependencies:
|
||||
|
|
@ -6250,6 +6220,17 @@ packages:
|
|||
resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
|
||||
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:
|
||||
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
|
||||
dependencies:
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
trigger5
|
||||
|
|
@ -0,0 +1 @@
|
|||
trigger7
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||
"compilerOptions": {
|
||||
"skipLibCheck": true,
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
||||
"isolatedModules": true,
|
||||
"esModuleInterop": true,
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ volumes:
|
|||
|
||||
services:
|
||||
traefik:
|
||||
image: traefik:v2.10.7@sha256:6341b98aec5ec8969b99e9730f4c5b22cca3103d42b6bbe4b7a3c910758fe565
|
||||
image: traefik:v2.10.7
|
||||
container_name: traefik
|
||||
restart: always
|
||||
# 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}"
|
||||
|
||||
smtp:
|
||||
image: "maildev/maildev:2.1.0@sha256:f7429227b8f471b3fe761767d86a8794a2fc7488bccdcda46ea6d5ba5c2c7bf5"
|
||||
image: "maildev/maildev:2.1.0"
|
||||
networks:
|
||||
- proxy
|
||||
ports:
|
||||
|
|
@ -112,7 +112,7 @@ services:
|
|||
- "traefik.tcp.services.forgejo-ssh-svc.loadbalancer.server.port=22"
|
||||
|
||||
db:
|
||||
image: postgres:16@sha256:49c276fa02e3d61bd9b8db81dfb4784fe814f50f778dce5980a03817438293e3
|
||||
image: postgres:16
|
||||
restart: always
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=changeme
|
||||
|
|
@ -128,7 +128,7 @@ services:
|
|||
- "./postgresql/initdb.d:/docker-entrypoint-initdb.d:Z"
|
||||
|
||||
woodpecker-server:
|
||||
image: woodpeckerci/woodpecker-server:v2.2.2@sha256:4717456849b41b6a0d3a429c062eab9eee9616839c24a67174dd812d9693b34c
|
||||
image: woodpeckerci/woodpecker-server:v2.2.2
|
||||
container_name: woodpecker-server
|
||||
restart: unless-stopped
|
||||
cpus: 0.5
|
||||
|
|
@ -160,7 +160,7 @@ services:
|
|||
|
||||
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
|
||||
cpus: 2
|
||||
mem_limit: 512m
|
||||
|
|
@ -176,7 +176,7 @@ services:
|
|||
- "/var/run/docker.sock:/var/run/docker.sock"
|
||||
|
||||
registry:
|
||||
image: registry:2@sha256:f4e1b878d4bc40a1f65532d68c94dcfbab56aa8cba1f00e355a206e7f6cc9111
|
||||
image: registry:2
|
||||
container_name: registry
|
||||
networks:
|
||||
- proxy
|
||||
|
|
@ -192,7 +192,7 @@ services:
|
|||
- "traefik.http.routers.registry.entrypoints=https"
|
||||
- "traefik.http.services.registry.loadbalancer.server.port=5000"
|
||||
ui:
|
||||
image: joxit/docker-registry-ui:latest@sha256:ccb4b40737938050b2617b8c61d4287b1078c424ddafe0fcb81b5ce82a3a7198
|
||||
image: joxit/docker-registry-ui:latest
|
||||
environment:
|
||||
- DELETE_IMAGES=true
|
||||
- REGISTRY_TITLE=My Private Docker Registry
|
||||
|
|
@ -209,7 +209,7 @@ services:
|
|||
- "traefik.http.routers.regui.entrypoints=https"
|
||||
- "traefik.http.services.regui.loadbalancer.passhostheader=true"
|
||||
mvn-registry:
|
||||
image: ghcr.io/dzikoysk/reposilite:3.5.3@sha256:c123c706d9f6371495c5809a4d38b974d9403972b59173d1d1c336b7db49d050
|
||||
image: ghcr.io/dzikoysk/reposilite:3.5.3
|
||||
container_name: reposilite
|
||||
deploy:
|
||||
resources:
|
||||
|
|
@ -232,7 +232,7 @@ services:
|
|||
- "traefik.http.routers.mvn.entrypoints=https"
|
||||
|
||||
verdaccio:
|
||||
image: verdaccio/verdaccio:5@sha256:c02b4c19b44df9b7a7781a30d79e5d5de2245382f223c188a7c252bf650a6a83
|
||||
image: verdaccio/verdaccio:5
|
||||
container_name: verdaccio
|
||||
volumes:
|
||||
- verdaccio_data:/verdaccio/storage
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM sonarqube:10.3-community@sha256:6238f139804f450197db27474a43f6839eb488b33c204d1279efcbd15747b23b
|
||||
FROM sonarqube:10.3-community
|
||||
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
|
||||
WORKDIR ${SONARQUBE_HOME}/extensions
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"devDependencies": {
|
||||
"@commitlint/config-conventional": "18.6.0"
|
||||
"@commitlint/config-conventional": "^18.1.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,13 +6,13 @@ settings:
|
|||
|
||||
devDependencies:
|
||||
'@commitlint/config-conventional':
|
||||
specifier: 18.6.0
|
||||
version: 18.6.0
|
||||
specifier: ^18.1.0
|
||||
version: 18.1.0
|
||||
|
||||
packages:
|
||||
|
||||
/@commitlint/config-conventional@18.6.0:
|
||||
resolution: {integrity: sha512-CDCOf2eJz9D/TL44IBks0stM9TmdLCNE2B48owIU3YCadwzts/bobXPScagIgPQF6hhKYMEdj5zpUDlmbwuqwQ==}
|
||||
/@commitlint/config-conventional@18.1.0:
|
||||
resolution: {integrity: sha512-8vvvtV3GOLEMHeKc8PjRL1lfP1Y4B6BG0WroFd9PJeRiOc3nFX1J0wlJenLURzl9Qus6YXVGWf+a/ZlbCKT3AA==}
|
||||
engines: {node: '>=v18'}
|
||||
dependencies:
|
||||
conventional-changelog-conventionalcommits: 7.0.2
|
||||
|
|
|
|||
Loading…
Reference in New Issue