From bdbf511a759e5e4f6051b8d6f853c7ece77bd394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Tue, 14 Sep 2021 13:00:12 +0200 Subject: [PATCH] =?UTF-8?q?=E2=98=A0=EF=B8=8F=20RESET=20for=20v2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .dockerignore | 3 - .drone.yml | 149 - .env | 11 - .env.local | 11 + .eslintrc.cjs | 20 + .eslintrc.js | 22 - .gitignore | 5 +- Dockerfile | 14 - babel.config.js | 11 - package.json | 81 +- pnpm-lock.yaml | 4945 ++++------------- postcss.config.js | 30 - rollup.config.js | 152 - src/animations/Carousel.js | 76 - src/animations/Locations.js | 58 - src/animations/Photo.js | 95 - src/animations/TitleSite.js | 31 - src/animations/Transition.js | 16 - src/animations/crossfade.js | 25 - src/animations/index.js | 93 - src/animations/page.js | 22 - src/animations/place.js | 62 - src/animations/viewer.js | 40 - src/{template.html => app.html} | 16 +- src/atoms/Badge.svelte | 9 - src/atoms/Button.svelte | 23 - src/atoms/Counter.svelte | 47 - src/atoms/IconArrow.svelte | 20 - src/atoms/IconCross.svelte | 9 - src/atoms/IconGlobe.svelte | 40 - src/atoms/IconGlobeSmall.svelte | 38 - src/atoms/IconZoomOut.svelte | 9 - src/atoms/LinkChange.svelte | 12 - src/atoms/LinkTranslate.svelte | 15 - src/atoms/TitleSite.svelte | 42 - src/atoms/ToggleLayout.svelte | 89 - src/client.js | 6 - src/components/Metas.svelte | 25 + src/components/molecules/Location.svelte | 3 + src/components/organisms/Locations.svelte | 27 + src/global.d.ts | 1 + src/molecules/InteractiveGlobe.svelte | 112 - src/molecules/Location.svelte | 30 - src/molecules/NewsletterForm.svelte | 41 - src/molecules/PaginationDots.svelte | 22 - src/molecules/Photo.svelte | 75 - src/molecules/Switcher.svelte | 48 - src/organisms/Carousel.svelte | 242 - src/organisms/Footer.svelte | 47 - src/organisms/Fullscreen.svelte | 80 - src/organisms/Locations.svelte | 72 - src/organisms/Newsletter.svelte | 22 - src/organisms/Pagination.svelte | 67 - src/routes/__layout.svelte | 57 + src/routes/_error.svelte | 49 - src/routes/_layout.svelte | 126 - src/routes/choose.svelte | 81 - src/routes/credits.svelte | 90 - src/routes/index.svelte | 146 +- src/routes/location/[country]/[place].svelte | 209 - src/routes/sitemap.xml.js | 79 - src/routes/subscribe.svelte | 75 - .../viewer/[country]/[place]/[photo].svelte | 137 - src/server.js | 19 - src/service-worker.js | 85 - src/style/_base.scss | 246 +- src/style/_fonts.scss | 15 +- src/style/_typography.scss | 0 src/style/_variables.scss | 48 +- src/style/atoms/_badge.scss | 23 - src/style/atoms/_button-control.scss | 283 - src/style/atoms/_button-outline.scss | 71 - src/style/atoms/_button.scss | 97 - src/style/atoms/_counter.scss | 27 - src/style/atoms/_icon-globe.scss | 27 - src/style/atoms/_inputs.scss | 40 - src/style/atoms/_link.scss | 116 - src/style/atoms/_switcher.scss | 92 - src/style/atoms/_toggle.scss | 93 - src/style/layout/_grid.scss | 14 + src/style/layouts/_explore.scss | 25 - src/style/layouts/_main.scss | 13 - src/style/molecules/_form.scss | 50 - src/style/molecules/_globe.scss | 191 - src/style/molecules/_location.scss | 98 - src/style/molecules/_newsletter.scss | 113 - src/style/molecules/_photo.scss | 188 - src/style/organisms/_carousel.scss | 352 -- src/style/organisms/_footer.scss | 132 - src/style/organisms/_fullscreen.scss | 87 - src/style/organisms/_locations.scss | 73 - src/style/organisms/_pagination.scss | 121 - src/style/organisms/_photos.scss | 248 - src/style/pages/_homepage.scss | 138 - src/style/pages/_page.scss | 106 - src/style/pages/_place.scss | 200 - src/style/pages/_viewer.scss | 182 - src/style/style.scss | 48 +- src/style/tools/_functions.scss | 27 +- src/style/tools/_helpers.scss | 10 +- src/style/tools/_mixins.scss | 95 +- src/utils/AnalyticsTracker.svelte | 29 - src/utils/SocialMetas.svelte | 24 - src/utils/Transition.svelte | 77 - src/utils/api.ts | 27 + src/utils/contants.ts | 0 src/utils/functions.js | 240 - src/utils/mainQuery.js | 58 - src/utils/polyfills.ts | 5 + src/utils/store.js | 40 - static/humans.txt | 13 +- static/{img => images}/favicon.png | Bin .../map-2k.png => images/globe-map-2k.png} | Bin .../map-3k.png => images/globe-map-3k.png} | Bin .../map-4k.png => images/globe-map-4k.png} | Bin static/{img => images}/logo-ctf.svg | 0 static/{img => images}/siteicon-192.png | Bin static/{img => images}/siteicon-512.png | Bin static/{img => images}/siteicon.png | Bin static/img/globe.png | Bin 270793 -> 0 bytes static/manifest.json | 22 - static/robots.txt | 3 - svelte.config.js | 32 + tsconfig.json | 33 + 124 files changed, 1612 insertions(+), 11094 deletions(-) delete mode 100644 .dockerignore delete mode 100644 .drone.yml delete mode 100644 .env create mode 100644 .env.local create mode 100644 .eslintrc.cjs delete mode 100644 .eslintrc.js delete mode 100644 Dockerfile delete mode 100644 babel.config.js delete mode 100644 postcss.config.js delete mode 100644 rollup.config.js delete mode 100644 src/animations/Carousel.js delete mode 100644 src/animations/Locations.js delete mode 100644 src/animations/Photo.js delete mode 100644 src/animations/TitleSite.js delete mode 100644 src/animations/Transition.js delete mode 100644 src/animations/crossfade.js delete mode 100644 src/animations/index.js delete mode 100644 src/animations/page.js delete mode 100644 src/animations/place.js delete mode 100644 src/animations/viewer.js rename src/{template.html => app.html} (53%) delete mode 100644 src/atoms/Badge.svelte delete mode 100644 src/atoms/Button.svelte delete mode 100644 src/atoms/Counter.svelte delete mode 100644 src/atoms/IconArrow.svelte delete mode 100644 src/atoms/IconCross.svelte delete mode 100644 src/atoms/IconGlobe.svelte delete mode 100644 src/atoms/IconGlobeSmall.svelte delete mode 100644 src/atoms/IconZoomOut.svelte delete mode 100644 src/atoms/LinkChange.svelte delete mode 100644 src/atoms/LinkTranslate.svelte delete mode 100644 src/atoms/TitleSite.svelte delete mode 100644 src/atoms/ToggleLayout.svelte delete mode 100644 src/client.js create mode 100644 src/components/Metas.svelte create mode 100644 src/components/molecules/Location.svelte create mode 100644 src/components/organisms/Locations.svelte create mode 100644 src/global.d.ts delete mode 100644 src/molecules/InteractiveGlobe.svelte delete mode 100644 src/molecules/Location.svelte delete mode 100644 src/molecules/NewsletterForm.svelte delete mode 100644 src/molecules/PaginationDots.svelte delete mode 100644 src/molecules/Photo.svelte delete mode 100644 src/molecules/Switcher.svelte delete mode 100644 src/organisms/Carousel.svelte delete mode 100644 src/organisms/Footer.svelte delete mode 100644 src/organisms/Fullscreen.svelte delete mode 100644 src/organisms/Locations.svelte delete mode 100644 src/organisms/Newsletter.svelte delete mode 100644 src/organisms/Pagination.svelte create mode 100644 src/routes/__layout.svelte delete mode 100644 src/routes/_error.svelte delete mode 100644 src/routes/_layout.svelte delete mode 100644 src/routes/choose.svelte delete mode 100644 src/routes/credits.svelte delete mode 100644 src/routes/location/[country]/[place].svelte delete mode 100644 src/routes/sitemap.xml.js delete mode 100644 src/routes/subscribe.svelte delete mode 100644 src/routes/viewer/[country]/[place]/[photo].svelte delete mode 100644 src/server.js delete mode 100644 src/service-worker.js create mode 100644 src/style/_typography.scss delete mode 100644 src/style/atoms/_badge.scss delete mode 100644 src/style/atoms/_button-control.scss delete mode 100644 src/style/atoms/_button-outline.scss delete mode 100644 src/style/atoms/_button.scss delete mode 100644 src/style/atoms/_counter.scss delete mode 100644 src/style/atoms/_icon-globe.scss delete mode 100644 src/style/atoms/_inputs.scss delete mode 100644 src/style/atoms/_link.scss delete mode 100644 src/style/atoms/_switcher.scss delete mode 100644 src/style/atoms/_toggle.scss create mode 100644 src/style/layout/_grid.scss delete mode 100644 src/style/layouts/_explore.scss delete mode 100644 src/style/layouts/_main.scss delete mode 100644 src/style/molecules/_form.scss delete mode 100644 src/style/molecules/_globe.scss delete mode 100644 src/style/molecules/_location.scss delete mode 100644 src/style/molecules/_newsletter.scss delete mode 100644 src/style/molecules/_photo.scss delete mode 100644 src/style/organisms/_carousel.scss delete mode 100644 src/style/organisms/_footer.scss delete mode 100644 src/style/organisms/_fullscreen.scss delete mode 100644 src/style/organisms/_locations.scss delete mode 100644 src/style/organisms/_pagination.scss delete mode 100644 src/style/organisms/_photos.scss delete mode 100644 src/style/pages/_homepage.scss delete mode 100644 src/style/pages/_page.scss delete mode 100644 src/style/pages/_place.scss delete mode 100644 src/style/pages/_viewer.scss delete mode 100644 src/utils/AnalyticsTracker.svelte delete mode 100644 src/utils/SocialMetas.svelte delete mode 100644 src/utils/Transition.svelte create mode 100644 src/utils/api.ts create mode 100644 src/utils/contants.ts delete mode 100644 src/utils/functions.js delete mode 100644 src/utils/mainQuery.js create mode 100644 src/utils/polyfills.ts delete mode 100644 src/utils/store.js rename static/{img => images}/favicon.png (100%) rename static/{img/globe/map-2k.png => images/globe-map-2k.png} (100%) rename static/{img/globe/map-3k.png => images/globe-map-3k.png} (100%) rename static/{img/globe/map-4k.png => images/globe-map-4k.png} (100%) rename static/{img => images}/logo-ctf.svg (100%) rename static/{img => images}/siteicon-192.png (100%) rename static/{img => images}/siteicon-512.png (100%) rename static/{img => images}/siteicon.png (100%) delete mode 100644 static/img/globe.png delete mode 100644 static/manifest.json delete mode 100644 static/robots.txt create mode 100644 svelte.config.js create mode 100644 tsconfig.json diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index b76334d..0000000 --- a/.dockerignore +++ /dev/null @@ -1,3 +0,0 @@ -.git -*Dockerfile* -.env \ No newline at end of file diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index fe825ff..0000000 --- a/.drone.yml +++ /dev/null @@ -1,149 +0,0 @@ -# DEPLOY -kind: pipeline -name: deploy - -trigger: - status: - - success - event: - - push - -steps: - # - # Restore cache (node_modules, build, etc) - # - - name: cache-restore - image: meltwater/drone-cache:dev - pull: true - volumes: - - name: cache - path: /tmp/cache - settings: - backend: "filesystem" - restore: true - cache_key: "volume" - archive_format: "gzip" - mount: - - "node_modules" - - # - # Build Node.js app - # - - name: build-node - image: node:latest - commands: - - yarn - - yarn build - - # - # Build the Docker image - # - # DEV - - name: build-docker-dev - image: docker:latest - volumes: - - name: docker_sock - path: /var/run/docker.sock - commands: - - docker build --pull --no-cache -t cetrucflotte/housesof:dev . - when: - branch: - - dev - - # PROD - - name: build-docker-prod - image: docker:latest - volumes: - - name: docker_sock - path: /var/run/docker.sock - commands: - - docker build --pull --no-cache -t cetrucflotte/housesof:latest . - when: - branch: - - master - - - - # - # Restart container - # - # DEV - - name: restart-container-dev - image: appleboy/drone-ssh - settings: - host: flayks.com - username: - from_secret: ssh_user - key: - from_secret: ssh_key - script: - - cd /data/sites/housesof.world/test - - docker-compose down - - docker-compose up -d --remove-orphans - when: - branch: - - dev - - # PROD - - name: restart-container-prod - image: appleboy/drone-ssh - settings: - host: flayks.com - username: - from_secret: ssh_user - key: - from_secret: ssh_key - script: - - cd /data/sites/housesof.world/www - - docker-compose down - - docker-compose up -d --remove-orphans - when: - branch: - - master - - - - # - # Rebuild cache - # - - name: cache-rebuild - image: meltwater/drone-cache:dev - pull: true - volumes: - - name: cache - path: /tmp/cache - settings: - backend: "filesystem" - rebuild: true - cache_key: "volume" - archive_format: "gzip" - mount: - - "node_modules" - - # - # Notify (by Email) - # - - name: notify-email - image: drillster/drone-email - settings: - host: - from_secret: notify_email_server - from: - from_secret: notify_email_address - username: - from_secret: notify_email_address - password: - from_secret: notify_email_password - recipients: - - hello@flayks.com - recipients_only: true - - -# Mount cache volume -volumes: - - name: cache - host: - path: /var/lib/cache - - name: docker_sock - host: - path: /var/run/docker.sock diff --git a/.env b/.env deleted file mode 100644 index 7c15590..0000000 --- a/.env +++ /dev/null @@ -1,11 +0,0 @@ -# Website -PROD_URL="https://housesof.world" -HOME_PHOTOS_LIMIT=6 - -# API -API_TOKEN="NJk0urljsdSvApUDzWxGgoO6" -API_URL_DEV="http://api.housesof.localhost/how" -API_URL_PROD="https://api.housesof.world/how" - -# Tracking -GA_TRACKER_ID="UA-4060922-27" \ No newline at end of file diff --git a/.env.local b/.env.local new file mode 100644 index 0000000..5b97884 --- /dev/null +++ b/.env.local @@ -0,0 +1,11 @@ +# Options +# VITE_OPTION=true + +# API related +VITE_API_GRAPHQL_URL_DEV="http://api.housesof.localhost:8055/graphql" +VITE_API_GRAPHQL_URL_PROD="https://api.housesof.world/graphql" +VITE_API_TOKEN="efa40490-152c-49d7-a75b-30a6427439b1" + +# Analytics +VITE_ANALYTICS_KEY="" +VITE_ANALYTICS_URL="https://stats.flayks.com" \ No newline at end of file diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 0000000..342c596 --- /dev/null +++ b/.eslintrc.cjs @@ -0,0 +1,20 @@ +module.exports = { + root: true, + parser: '@typescript-eslint/parser', + extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'], + plugins: ['svelte3', '@typescript-eslint'], + ignorePatterns: ['*.cjs'], + overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }], + settings: { + 'svelte3/typescript': () => require('typescript') + }, + parserOptions: { + sourceType: 'module', + ecmaVersion: 2019 + }, + env: { + browser: true, + es2017: true, + node: true + } +} \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 88c58b6..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1,22 +0,0 @@ -module.exports = { - extends: [ - // 'eslint:recommended' - ], - env: { - 'browser': true, - 'es6': true - }, - plugins: ['svelte3'], - parserOptions: { - 'ecmaVersion': 2019, - 'sourceType': 'module' - }, - overrides: [{ - files: ['**/*.svelte'], - processor: 'svelte3/svelte3' - }], - rules: { - indent: [ 'error', 4 ], - 'no-multiple-empty-lines': [ 1, { 'max': 5 } ] - } -} diff --git a/.gitignore b/.gitignore index 480ace8..dad6f80 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store node_modules -__sapper__ -/cypress/screenshots +/build +/.svelte-kit +/package diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index c126d8d..0000000 --- a/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -FROM node:current-alpine - -WORKDIR /var/www - -# Copy build and modules -COPY . . - -# Open port -EXPOSE 3000 - -# Serve -CMD node dist - -VOLUME ["/var/www"] diff --git a/babel.config.js b/babel.config.js deleted file mode 100644 index 41954a4..0000000 --- a/babel.config.js +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = { - presets: [ - '@babel/preset-env' - ], - plugins: [ - '@babel/plugin-syntax-dynamic-import', - ['@babel/plugin-transform-runtime', { - 'useESModules': true - }] - ] -} diff --git a/package.json b/package.json index 95e0bc6..63c0e97 100644 --- a/package.json +++ b/package.json @@ -1,61 +1,42 @@ { "name": "housesof", - "version": "1.2.0", - "description": "Houses Of website", - "author": { - "name": "Flayks", - "email": "hello@flayks.com", - "url": "http://flayks.com" - }, + "version": "2.0.0", "private": true, + "author": { + "name": "Félix Péault", + "url": "https://flayks.com", + "email": "hello@flayks.com" + }, "scripts": { - "dev": "sapper dev --port 3000", - "build": "sapper build dist --legacy", - "export": "sapper export export --legacy", - "start": "node dist" + "dev": "svelte-kit dev", + "build": "svelte-kit build", + "preview": "svelte-kit preview", + "check": "svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-check --tsconfig ./tsconfig.json --watch", + "lint": "eslint --ignore-path .gitignore ." }, "dependencies": { - "animejs": "^3.2.1", - "compression": "^1.7.4", - "imagesloaded": "^4.1.4", - "lazysizes": "^5.3.0", - "node-fetch": "^2.6.1", - "normalize.css": "^8.0.1", - "polka": "^1.0.0-next.11", - "rellax": "^1.12.1", - "scroll-out": "^2.2.12", - "sirv": "^1.0.10", - "svelte-lazy": "^1.0.8", - "swipe-listener": "^1.3.0" + "focus-visible": "^5.2.0", + "sanitize.css": "^12.0.1" }, "devDependencies": { - "@babel/core": "^7.12.10", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.12.10", - "@babel/preset-env": "^7.12.11", - "@babel/runtime": "^7.12.5", - "@rollup/plugin-alias": "^3.1.1", - "@rollup/plugin-babel": "^5.2.2", - "@rollup/plugin-commonjs": "17.0.0", - "@rollup/plugin-node-resolve": "^11.1.0", - "@rollup/plugin-replace": "^2.3.4", - "autoprefixer": "^10.2.1", - "dotenv": "^8.2.0", - "node-sass": "^5.0.0", - "postcss": "^8.2.4", - "postcss-load-config": "^3.0.0", - "postcss-preset-env": "^6.7.0", - "rollup": "^2.36.2", - "rollup-plugin-glslify": "^1.2.0", - "rollup-plugin-svelte": "^7.0.0", - "rollup-plugin-terser": "^7.0.2", - "sapper": "^0.28.10", - "svelte": "^3.31.2", - "svelte-preprocess": "^4.6.1" + "@sveltejs/adapter-node": "^1.0.0-next.46", + "@sveltejs/adapter-vercel": "^1.0.0-next.28", + "@sveltejs/kit": "next", + "@typescript-eslint/eslint-plugin": "^4.31.1", + "@typescript-eslint/parser": "^4.31.1", + "eslint": "^7.32.0", + "eslint-plugin-svelte3": "^3.2.1", + "sass": "^1.40.1", + "svelte": "^3.42.5", + "svelte-check": "^2.2.6", + "svelte-preprocess": "^4.9.4", + "tslib": "^2.3.1", + "typescript": "^4.4.3" }, + "type": "module", "browserslist": [ - "> 0.5%", - "last 2 versions", - "not dead" + "last 3 versions", + "> 0.3%" ] -} +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7e838e7..054ad83 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,1906 +1,784 @@ +lockfileVersion: 5.3 + +specifiers: + '@sveltejs/adapter-node': ^1.0.0-next.46 + '@sveltejs/adapter-vercel': ^1.0.0-next.28 + '@sveltejs/kit': next + '@typescript-eslint/eslint-plugin': ^4.31.1 + '@typescript-eslint/parser': ^4.31.1 + eslint: ^7.32.0 + eslint-plugin-svelte3: ^3.2.1 + focus-visible: ^5.2.0 + sanitize.css: ^12.0.1 + sass: ^1.40.1 + svelte: ^3.42.5 + svelte-check: ^2.2.6 + svelte-preprocess: ^4.9.4 + tslib: ^2.3.1 + typescript: ^4.4.3 + dependencies: - animejs: 3.2.1 - compression: 1.7.4 - imagesloaded: 4.1.4 - lazysizes: 5.3.0 - node-fetch: 2.6.1 - normalize.css: 8.0.1 - polka: 1.0.0-next.11 - rellax: 1.12.1 - scroll-out: 2.2.12 - sirv: 1.0.10 - svelte-lazy: 1.0.8_svelte@3.31.2 - swipe-listener: 1.3.0 + focus-visible: 5.2.0 + sanitize.css: 12.0.1 + devDependencies: - '@babel/core': 7.12.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-transform-runtime': 7.12.10_@babel+core@7.12.10 - '@babel/preset-env': 7.12.11_@babel+core@7.12.10 - '@babel/runtime': 7.12.5 - '@rollup/plugin-alias': 3.1.1_rollup@2.36.2 - '@rollup/plugin-babel': 5.2.2_d291def3ad863a337509a274a4371b7e - '@rollup/plugin-commonjs': 17.0.0_rollup@2.36.2 - '@rollup/plugin-node-resolve': 11.1.0_rollup@2.36.2 - '@rollup/plugin-replace': 2.3.4_rollup@2.36.2 - autoprefixer: 10.2.1_postcss@8.2.4 - dotenv: 8.2.0 - node-sass: 5.0.0 - postcss: 8.2.4 - postcss-load-config: 3.0.0 - postcss-preset-env: 6.7.0 - rollup: 2.36.2 - rollup-plugin-glslify: 1.2.0 - rollup-plugin-svelte: 7.0.0_rollup@2.36.2+svelte@3.31.2 - rollup-plugin-terser: 7.0.2_rollup@2.36.2 - sapper: 0.28.10_svelte@3.31.2 - svelte: 3.31.2 - svelte-preprocess: 4.6.1_f1d5d739eab137f4683f3cf6104542ab -lockfileVersion: 5.2 + '@sveltejs/adapter-node': 1.0.0-next.46 + '@sveltejs/adapter-vercel': 1.0.0-next.28 + '@sveltejs/kit': 1.0.0-next.166_svelte@3.42.5 + '@typescript-eslint/eslint-plugin': 4.31.1_e2d3c88d378335c4183365c112128ce9 + '@typescript-eslint/parser': 4.31.1_eslint@7.32.0+typescript@4.4.3 + eslint: 7.32.0 + eslint-plugin-svelte3: 3.2.1_eslint@7.32.0+svelte@3.42.5 + sass: 1.40.1 + svelte: 3.42.5 + svelte-check: 2.2.6_sass@1.40.1+svelte@3.42.5 + svelte-preprocess: 4.9.4_880c3b2362d6b02a01dcd3cbdf5b476b + tslib: 2.3.1 + typescript: 4.4.3 + packages: + /@babel/code-frame/7.12.11: + resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} dependencies: - '@babel/highlight': 7.10.4 + '@babel/highlight': 7.14.5 dev: true - resolution: - integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== - /@babel/compat-data/7.12.7: + + /@babel/helper-validator-identifier/7.14.9: + resolution: {integrity: sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==} + engines: {node: '>=6.9.0'} dev: true - resolution: - integrity: sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw== - /@babel/core/7.12.10: + + /@babel/highlight/7.14.5: + resolution: {integrity: sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==} + engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.12.11 - '@babel/generator': 7.12.11 - '@babel/helper-module-transforms': 7.12.1 - '@babel/helpers': 7.12.5 - '@babel/parser': 7.12.11 - '@babel/template': 7.12.7 - '@babel/traverse': 7.12.12 - '@babel/types': 7.12.12 - convert-source-map: 1.7.0 - debug: 4.3.1 - gensync: 1.0.0-beta.2 - json5: 2.1.3 - lodash: 4.17.20 - semver: 5.7.1 - source-map: 0.5.7 - dev: true - engines: - node: '>=6.9.0' - resolution: - integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w== - /@babel/generator/7.12.11: - dependencies: - '@babel/types': 7.12.12 - jsesc: 2.5.2 - source-map: 0.5.7 - dev: true - resolution: - integrity: sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA== - /@babel/helper-annotate-as-pure/7.12.10: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ== - /@babel/helper-builder-binary-assignment-operator-visitor/7.10.4: - dependencies: - '@babel/helper-explode-assignable-expression': 7.12.1 - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== - /@babel/helper-compilation-targets/7.12.5_@babel+core@7.12.10: - dependencies: - '@babel/compat-data': 7.12.7 - '@babel/core': 7.12.10 - '@babel/helper-validator-option': 7.12.11 - browserslist: 4.16.1 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw== - /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-function-name': 7.12.11 - '@babel/helper-member-expression-to-functions': 7.12.7 - '@babel/helper-optimise-call-expression': 7.12.10 - '@babel/helper-replace-supers': 7.12.11 - '@babel/helper-split-export-declaration': 7.12.11 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== - /@babel/helper-create-regexp-features-plugin/7.12.7_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-annotate-as-pure': 7.12.10 - regexpu-core: 4.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ== - /@babel/helper-define-map/7.10.5: - dependencies: - '@babel/helper-function-name': 7.12.11 - '@babel/types': 7.12.12 - lodash: 4.17.20 - dev: true - resolution: - integrity: sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== - /@babel/helper-explode-assignable-expression/7.12.1: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== - /@babel/helper-function-name/7.12.11: - dependencies: - '@babel/helper-get-function-arity': 7.12.10 - '@babel/template': 7.12.7 - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA== - /@babel/helper-get-function-arity/7.12.10: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag== - /@babel/helper-hoist-variables/7.10.4: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== - /@babel/helper-member-expression-to-functions/7.12.7: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== - /@babel/helper-module-imports/7.12.5: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== - /@babel/helper-module-transforms/7.12.1: - dependencies: - '@babel/helper-module-imports': 7.12.5 - '@babel/helper-replace-supers': 7.12.11 - '@babel/helper-simple-access': 7.12.1 - '@babel/helper-split-export-declaration': 7.12.11 - '@babel/helper-validator-identifier': 7.12.11 - '@babel/template': 7.12.7 - '@babel/traverse': 7.12.12 - '@babel/types': 7.12.12 - lodash: 4.17.20 - dev: true - resolution: - integrity: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== - /@babel/helper-optimise-call-expression/7.12.10: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ== - /@babel/helper-plugin-utils/7.10.4: - dev: true - resolution: - integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== - /@babel/helper-remap-async-to-generator/7.12.1: - dependencies: - '@babel/helper-annotate-as-pure': 7.12.10 - '@babel/helper-wrap-function': 7.12.3 - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== - /@babel/helper-replace-supers/7.12.11: - dependencies: - '@babel/helper-member-expression-to-functions': 7.12.7 - '@babel/helper-optimise-call-expression': 7.12.10 - '@babel/traverse': 7.12.12 - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA== - /@babel/helper-simple-access/7.12.1: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== - /@babel/helper-skip-transparent-expression-wrappers/7.12.1: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== - /@babel/helper-split-export-declaration/7.12.11: - dependencies: - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g== - /@babel/helper-validator-identifier/7.12.11: - dev: true - resolution: - integrity: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== - /@babel/helper-validator-option/7.12.11: - dev: true - resolution: - integrity: sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw== - /@babel/helper-wrap-function/7.12.3: - dependencies: - '@babel/helper-function-name': 7.12.11 - '@babel/template': 7.12.7 - '@babel/traverse': 7.12.12 - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== - /@babel/helpers/7.12.5: - dependencies: - '@babel/template': 7.12.7 - '@babel/traverse': 7.12.12 - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== - /@babel/highlight/7.10.4: - dependencies: - '@babel/helper-validator-identifier': 7.12.11 + '@babel/helper-validator-identifier': 7.14.9 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - resolution: - integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== - /@babel/parser/7.12.11: - dev: true - engines: - node: '>=6.0.0' - hasBin: true - resolution: - integrity: sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg== - /@babel/plugin-proposal-async-generator-functions/7.12.12_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.12.1 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A== - /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== - /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== - /@babel/plugin-proposal-export-namespace-from/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== - /@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== - /@babel/plugin-proposal-logical-assignment-operators/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== - /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== - /@babel/plugin-proposal-numeric-separator/7.12.7_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ== - /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== - /@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== - /@babel/plugin-proposal-optional-chaining/7.12.7_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA== - /@babel/plugin-proposal-private-methods/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== - /@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - engines: - node: '>=4' - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== - /@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== - /@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-module-imports': 7.12.5 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.12.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== - /@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== - /@babel/plugin-transform-block-scoping/7.12.12_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ== - /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-annotate-as-pure': 7.12.10 - '@babel/helper-define-map': 7.10.5 - '@babel/helper-function-name': 7.12.11 - '@babel/helper-optimise-call-expression': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.12.11 - '@babel/helper-split-export-declaration': 7.12.11 - globals: 11.12.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== - /@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== - /@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== - /@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== - /@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== - /@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== - /@babel/plugin-transform-for-of/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== - /@babel/plugin-transform-function-name/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-function-name': 7.12.11 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== - /@babel/plugin-transform-literals/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== - /@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== - /@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-module-transforms': 7.12.1 - '@babel/helper-plugin-utils': 7.10.4 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== - /@babel/plugin-transform-modules-commonjs/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-module-transforms': 7.12.1 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-simple-access': 7.12.1 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== - /@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-hoist-variables': 7.10.4 - '@babel/helper-module-transforms': 7.12.1 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-validator-identifier': 7.12.11 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== - /@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-module-transforms': 7.12.1 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== - /@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== - /@babel/plugin-transform-new-target/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== - /@babel/plugin-transform-object-super/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.12.11 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== - /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== - /@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== - /@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - regenerator-transform: 0.14.5 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== - /@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== - /@babel/plugin-transform-runtime/7.12.10_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-module-imports': 7.12.5 - '@babel/helper-plugin-utils': 7.10.4 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA== - /@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== - /@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== - /@babel/plugin-transform-sticky-regex/7.12.7_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg== - /@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== - /@babel/plugin-transform-typeof-symbol/7.12.10_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA== - /@babel/plugin-transform-unicode-escapes/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== - /@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== - /@babel/preset-env/7.12.11_@babel+core@7.12.10: - dependencies: - '@babel/compat-data': 7.12.7 - '@babel/core': 7.12.10 - '@babel/helper-compilation-targets': 7.12.5_@babel+core@7.12.10 - '@babel/helper-module-imports': 7.12.5 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-validator-option': 7.12.11 - '@babel/plugin-proposal-async-generator-functions': 7.12.12_@babel+core@7.12.10 - '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-numeric-separator': 7.12.7_@babel+core@7.12.10 - '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-optional-catch-binding': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10 - '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.10 - '@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.10 - '@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-block-scoped-functions': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-block-scoping': 7.12.12_@babel+core@7.12.10 - '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-computed-properties': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-duplicate-keys': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-exponentiation-operator': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-function-name': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-literals': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-member-expression-literals': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-modules-amd': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-modules-systemjs': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-modules-umd': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-named-capturing-groups-regex': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-new-target': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-object-super': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-property-literals': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-regenerator': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-reserved-words': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-sticky-regex': 7.12.7_@babel+core@7.12.10 - '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-typeof-symbol': 7.12.10_@babel+core@7.12.10 - '@babel/plugin-transform-unicode-escapes': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-unicode-regex': 7.12.1_@babel+core@7.12.10 - '@babel/preset-modules': 0.1.4_@babel+core@7.12.10 - '@babel/types': 7.12.12 - core-js-compat: 3.8.2 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw== - /@babel/preset-modules/0.1.4_@babel+core@7.12.10: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.10 - '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.10 - '@babel/types': 7.12.12 - esutils: 2.0.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== - /@babel/runtime/7.12.5: - dependencies: - regenerator-runtime: 0.13.7 - dev: true - resolution: - integrity: sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== - /@babel/template/7.12.7: - dependencies: - '@babel/code-frame': 7.12.11 - '@babel/parser': 7.12.11 - '@babel/types': 7.12.12 - dev: true - resolution: - integrity: sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== - /@babel/traverse/7.12.12: - dependencies: - '@babel/code-frame': 7.12.11 - '@babel/generator': 7.12.11 - '@babel/helper-function-name': 7.12.11 - '@babel/helper-split-export-declaration': 7.12.11 - '@babel/parser': 7.12.11 - '@babel/types': 7.12.12 - debug: 4.3.1 - globals: 11.12.0 - lodash: 4.17.20 - dev: true - resolution: - integrity: sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w== - /@babel/types/7.12.12: - dependencies: - '@babel/helper-validator-identifier': 7.12.11 - lodash: 4.17.20 - to-fast-properties: 2.0.0 - dev: true - resolution: - integrity: sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ== - /@choojs/findup/0.2.1: - dependencies: - commander: 2.20.3 - dev: true - hasBin: true - resolution: - integrity: sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw== - /@csstools/convert-colors/1.4.0: - dev: true - engines: - node: '>=4.0.0' - resolution: - integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== - /@polka/url/1.0.0-next.11: - dev: false - resolution: - integrity: sha512-3NsZsJIA/22P3QUyrEDNA2D133H4j224twJrdipXN38dpnIOzAbUDtOwkcJ5pXmn75w7LSQDjA4tO9dm1XlqlA== - /@rollup/plugin-alias/3.1.1_rollup@2.36.2: - dependencies: - rollup: 2.36.2 - slash: 3.0.0 - dev: true - engines: - node: '>=8.0.0' - peerDependencies: - rollup: ^1.20.0||^2.0.0 - resolution: - integrity: sha512-hNcQY4bpBUIvxekd26DBPgF7BT4mKVNDF5tBG4Zi+3IgwLxGYRY0itHs9D0oLVwXM5pvJDWJlBQro+au8WaUWw== - /@rollup/plugin-babel/5.2.2_d291def3ad863a337509a274a4371b7e: - dependencies: - '@babel/core': 7.12.10 - '@babel/helper-module-imports': 7.12.5 - '@rollup/pluginutils': 3.1.0_rollup@2.36.2 - rollup: 2.36.2 - dev: true - engines: - node: '>= 10.0.0' - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true - resolution: - integrity: sha512-MjmH7GvFT4TW8xFdIeFS3wqIX646y5tACdxkTO+khbHvS3ZcVJL6vkAHLw2wqPmkhwCfWHoNsp15VYNwW6JEJA== - /@rollup/plugin-commonjs/17.0.0_rollup@2.36.2: + + /@eslint/eslintrc/0.4.3: + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.2 + espree: 7.3.1 + globals: 13.11.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + js-yaml: 3.14.1 + minimatch: 3.0.4 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/config-array/0.5.0: + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.0 + debug: 4.3.2 + minimatch: 3.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/object-schema/1.2.0: + resolution: {integrity: sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==} + dev: true + + /@nodelib/fs.scandir/2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat/2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk/1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.13.0 + dev: true + + /@rollup/pluginutils/4.1.1: + resolution: {integrity: sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ==} + engines: {node: '>= 8.0.0'} dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.36.2 - commondir: 1.0.1 estree-walker: 2.0.2 - glob: 7.1.6 - is-reference: 1.2.1 - magic-string: 0.25.7 - resolve: 1.19.0 - rollup: 2.36.2 + picomatch: 2.3.0 dev: true - engines: - node: '>= 8.0.0' - peerDependencies: - rollup: ^2.30.0 - resolution: - integrity: sha512-/omBIJG1nHQc+bgkYDuLpb/V08QyutP9amOrJRUSlYJZP+b/68gM//D8sxJe3Yry2QnYIr3QjR3x4AlxJEN3GA== - /@rollup/plugin-node-resolve/11.1.0_rollup@2.36.2: + + /@sveltejs/adapter-node/1.0.0-next.46: + resolution: {integrity: sha512-aNEArjFTZiHDiiwP7sh+4F/VmtwPmNv4FeAiX0nryMXww7UbiWgj9VW7V6wIh9YjpPVdFqeaGtFRlPzFl5zGgA==} dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.36.2 - '@types/resolve': 1.17.1 - builtin-modules: 3.2.0 - deepmerge: 4.2.2 - is-module: 1.0.0 - resolve: 1.19.0 - rollup: 2.36.2 + esbuild: 0.12.27 + tiny-glob: 0.2.9 dev: true - engines: - node: '>= 10.0.0' - peerDependencies: - rollup: ^1.20.0||^2.0.0 - resolution: - integrity: sha512-ouBBppRdWJKCllDXGzJ7ZIkYbaq+5TmyP0smt1vdJCFfoZhLi31vhpmjLhyo8lreHf4RoeSNllaWrvSqHpHRog== - /@rollup/plugin-replace/2.3.4_rollup@2.36.2: + + /@sveltejs/adapter-vercel/1.0.0-next.28: + resolution: {integrity: sha512-a2n4UCuTu5LhUoS5KiI5xasgvIXW8qKnSSKOnTTLYlZhpJ5VnSKWyT9hUOoVsAEGkeZw+2SYxxI3Vckw6ZhSng==} dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.36.2 - magic-string: 0.25.7 - rollup: 2.36.2 + esbuild: 0.12.27 dev: true - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - resolution: - integrity: sha512-waBhMzyAtjCL1GwZes2jaE9MjuQ/DQF2BatH3fRivUF3z0JBFrU0U6iBNC/4WR+2rLKhaAhPWDNPYp4mI6RqdQ== - /@rollup/pluginutils/3.1.0_rollup@2.36.2: - dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.2.2 - rollup: 2.36.2 - dev: true - engines: - node: '>= 8.0.0' - peerDependencies: - rollup: ^1.20.0||^2.0.0 - resolution: - integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - /@types/estree/0.0.39: - dev: true - resolution: - integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== - /@types/estree/0.0.45: - dev: true - resolution: - integrity: sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== - /@types/node/14.14.20: - dev: true - resolution: - integrity: sha512-Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A== - /@types/parse-json/4.0.0: - dev: true - resolution: - integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - /@types/pug/2.0.4: - dev: true - resolution: - integrity: sha1-h3L80EGOPNLMFxVV1zAHQVBR9LI= - /@types/resolve/1.17.1: - dependencies: - '@types/node': 14.14.20 - dev: true - resolution: - integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== - /@types/sass/1.16.0: - dependencies: - '@types/node': 14.14.20 - dev: true - resolution: - integrity: sha512-2XZovu4NwcqmtZtsBR5XYLw18T8cBCnU2USFHTnYLLHz9fkhnoEMoDsqShJIOFsFhn5aJHjweiUUdTrDGujegA== - /abbrev/1.1.1: - dev: true - resolution: - integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - /accepts/1.3.7: - dependencies: - mime-types: 2.1.28 - negotiator: 0.6.2 - dev: false - engines: - node: '>= 0.6' - resolution: - integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== - /acorn/7.4.1: - dev: true - engines: - node: '>=0.4.0' + + /@sveltejs/kit/1.0.0-next.166_svelte@3.42.5: + resolution: {integrity: sha512-TQWtWbgyc5+eJY1/RZvCc4gHLssnW+PfKh0dGxbysR0r1vahBgLDUELNlc1dktg/jUJm4eEFl4cqDqKsvU84tQ==} + engines: {node: ^12.20 || >=14.13} hasBin: true - resolution: - integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + peerDependencies: + svelte: ^3.39.0 + dependencies: + '@sveltejs/vite-plugin-svelte': 1.0.0-next.23_svelte@3.42.5+vite@2.5.7 + cheap-watch: 1.0.4 + sade: 1.7.4 + svelte: 3.42.5 + vite: 2.5.7 + transitivePeerDependencies: + - diff-match-patch + - supports-color + dev: true + + /@sveltejs/vite-plugin-svelte/1.0.0-next.23_svelte@3.42.5+vite@2.5.7: + resolution: {integrity: sha512-zmguJ9OYYsvZUhzPA3ZeYana2qx/ORadI0LVjzDIuXEXcR7AKj9qJgGCWe5Wi2Z/xg9PsKMHTTCHgiiplphIYg==} + engines: {node: ^12.20 || ^14.13.1 || >= 16} + peerDependencies: + diff-match-patch: ^1.0.5 + svelte: ^3.34.0 + vite: ^2.5.3 + peerDependenciesMeta: + diff-match-patch: + optional: true + dependencies: + '@rollup/pluginutils': 4.1.1 + debug: 4.3.2 + kleur: 4.1.4 + magic-string: 0.25.7 + require-relative: 0.8.7 + svelte: 3.42.5 + svelte-hmr: 0.14.7_svelte@3.42.5 + vite: 2.5.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@types/json-schema/7.0.9: + resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==} + dev: true + + /@types/node/16.9.1: + resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==} + dev: true + + /@types/pug/2.0.5: + resolution: {integrity: sha512-LOnASQoeNZMkzexRuyqcBBDZ6rS+rQxUMkmj5A0PkhhiSZivLIuz6Hxyr1mkGoEZEkk66faROmpMi4fFkrKsBA==} + dev: true + + /@types/sass/1.16.1: + resolution: {integrity: sha512-iZUcRrGuz/Tbg3loODpW7vrQJkUtpY2fFSf4ELqqkApcS2TkZ1msk7ie8iZPB86lDOP8QOTTmuvWjc5S0R9OjQ==} + dependencies: + '@types/node': 16.9.1 + dev: true + + /@typescript-eslint/eslint-plugin/4.31.1_e2d3c88d378335c4183365c112128ce9: + resolution: {integrity: sha512-UDqhWmd5i0TvPLmbK5xY3UZB0zEGseF+DHPghZ37Sb83Qd3p8ujhvAtkU4OF46Ka5Pm5kWvFIx0cCTBFKo0alA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/experimental-utils': 4.31.1_eslint@7.32.0+typescript@4.4.3 + '@typescript-eslint/parser': 4.31.1_eslint@7.32.0+typescript@4.4.3 + '@typescript-eslint/scope-manager': 4.31.1 + debug: 4.3.2 + eslint: 7.32.0 + functional-red-black-tree: 1.0.1 + regexpp: 3.2.0 + semver: 7.3.5 + tsutils: 3.21.0_typescript@4.4.3 + typescript: 4.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/experimental-utils/4.31.1_eslint@7.32.0+typescript@4.4.3: + resolution: {integrity: sha512-NtoPsqmcSsWty0mcL5nTZXMf7Ei0Xr2MT8jWjXMVgRK0/1qeQ2jZzLFUh4QtyJ4+/lPUyMw5cSfeeME+Zrtp9Q==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: '*' + dependencies: + '@types/json-schema': 7.0.9 + '@typescript-eslint/scope-manager': 4.31.1 + '@typescript-eslint/types': 4.31.1 + '@typescript-eslint/typescript-estree': 4.31.1_typescript@4.4.3 + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@7.32.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/parser/4.31.1_eslint@7.32.0+typescript@4.4.3: + resolution: {integrity: sha512-dnVZDB6FhpIby6yVbHkwTKkn2ypjVIfAR9nh+kYsA/ZL0JlTsd22BiDjouotisY3Irmd3OW1qlk9EI5R8GrvRQ==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 4.31.1 + '@typescript-eslint/types': 4.31.1 + '@typescript-eslint/typescript-estree': 4.31.1_typescript@4.4.3 + debug: 4.3.2 + eslint: 7.32.0 + typescript: 4.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager/4.31.1: + resolution: {integrity: sha512-N1Uhn6SqNtU2XpFSkD4oA+F0PfKdWHyr4bTX0xTj8NRx1314gBDRL1LUuZd5+L3oP+wo6hCbZpaa1in6SwMcVQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dependencies: + '@typescript-eslint/types': 4.31.1 + '@typescript-eslint/visitor-keys': 4.31.1 + dev: true + + /@typescript-eslint/types/4.31.1: + resolution: {integrity: sha512-kixltt51ZJGKENNW88IY5MYqTBA8FR0Md8QdGbJD2pKZ+D5IvxjTYDNtJPDxFBiXmka2aJsITdB1BtO1fsgmsQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dev: true + + /@typescript-eslint/typescript-estree/4.31.1_typescript@4.4.3: + resolution: {integrity: sha512-EGHkbsUvjFrvRnusk6yFGqrqMBTue5E5ROnS5puj3laGQPasVUgwhrxfcgkdHNFECHAewpvELE1Gjv0XO3mdWg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 4.31.1 + '@typescript-eslint/visitor-keys': 4.31.1 + debug: 4.3.2 + globby: 11.0.4 + is-glob: 4.0.1 + semver: 7.3.5 + tsutils: 3.21.0_typescript@4.4.3 + typescript: 4.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/visitor-keys/4.31.1: + resolution: {integrity: sha512-PCncP8hEqKw6SOJY+3St4LVtoZpPPn+Zlpm7KW5xnviMhdqcsBty4Lsg4J/VECpJjw1CkROaZhH4B8M1OfnXTQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dependencies: + '@typescript-eslint/types': 4.31.1 + eslint-visitor-keys: 2.1.0 + dev: true + + /acorn-jsx/5.3.2_acorn@7.4.1: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 7.4.1 + dev: true + + /acorn/7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + /ajv/6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 dev: true - resolution: - integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - /amdefine/1.0.1: + + /ajv/8.6.3: + resolution: {integrity: sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 dev: true - engines: - node: '>=0.4.2' - resolution: - integrity: sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= - /animejs/3.2.1: - dev: false - resolution: - integrity: sha512-sWno3ugFryK5nhiDm/2BKeFCpZv7vzerWUcUPyAZLDhMek3+S/p418ldZJbJXo5ZUOpfm2kP2XRO4NJcULMy9A== - /ansi-regex/2.1.1: + + /ansi-colors/4.1.1: + resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} + engines: {node: '>=6'} dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - /ansi-regex/4.1.0: + + /ansi-regex/5.0.0: + resolution: {integrity: sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==} + engines: {node: '>=8'} dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - /ansi-styles/2.2.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + /ansi-styles/3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} dependencies: color-convert: 1.9.3 dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - /aproba/1.2.0: - dev: true - resolution: - integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== - /are-we-there-yet/1.1.5: + + /ansi-styles/4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} dependencies: - delegates: 1.0.0 - readable-stream: 2.3.7 + color-convert: 2.0.1 dev: true - resolution: - integrity: sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== - /array-find-index/1.0.2: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= - /asn1/0.2.4: + + /anymatch/3.1.2: + resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + engines: {node: '>= 8'} dependencies: - safer-buffer: 2.1.2 + normalize-path: 3.0.0 + picomatch: 2.3.0 dev: true - resolution: - integrity: sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== - /assert-plus/1.0.0: - dev: true - engines: - node: '>=0.8' - resolution: - integrity: sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= - /async-foreach/0.1.3: - dev: true - resolution: - integrity: sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI= - /asynckit/0.4.0: - dev: true - resolution: - integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k= - /autoprefixer/10.2.1_postcss@8.2.4: + + /argparse/1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: - browserslist: 4.16.1 - caniuse-lite: 1.0.30001173 - colorette: 1.2.1 - fraction.js: 4.0.13 - normalize-range: 0.1.2 - postcss: 8.2.4 - postcss-value-parser: 4.1.0 + sprintf-js: 1.0.3 dev: true - engines: - node: ^10 || ^12 || >=14 - hasBin: true - peerDependencies: - postcss: ^8.1.0 - resolution: - integrity: sha512-dwP0UjyYvROUvtU+boBx8ff5pPWami1NGTrJs9YUsS/oZVbRAcdNHOOuXSA1fc46tgKqe072cVaKD69rvCc3QQ== - /autoprefixer/9.8.6: - dependencies: - browserslist: 4.16.1 - caniuse-lite: 1.0.30001173 - colorette: 1.2.1 - normalize-range: 0.1.2 - num2fraction: 1.2.2 - postcss: 7.0.35 - postcss-value-parser: 4.1.0 + + /array-union/2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} dev: true - hasBin: true - resolution: - integrity: sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg== - /aws-sign2/0.7.0: + + /astral-regex/2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} dev: true - resolution: - integrity: sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= - /aws4/1.11.0: + + /balanced-match/1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} dev: true - resolution: - integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== - /babel-plugin-dynamic-import-node/2.3.3: - dependencies: - object.assign: 4.1.2 + + /binary-extensions/2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} dev: true - resolution: - integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== - /balanced-match/1.0.0: - dev: true - resolution: - integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c= - /bcrypt-pbkdf/1.0.2: - dependencies: - tweetnacl: 0.14.5 - dev: true - resolution: - integrity: sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= - /bl/2.2.1: - dependencies: - readable-stream: 2.3.7 - safe-buffer: 5.2.1 - dev: true - resolution: - integrity: sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g== + /brace-expansion/1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: - balanced-match: 1.0.0 + balanced-match: 1.0.2 concat-map: 0.0.1 dev: true - resolution: - integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - /browserslist/4.16.1: + + /braces/3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} dependencies: - caniuse-lite: 1.0.30001173 - colorette: 1.2.1 - electron-to-chromium: 1.3.635 - escalade: 3.1.1 - node-releases: 1.1.69 + fill-range: 7.0.1 dev: true - engines: - node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 - hasBin: true - resolution: - integrity: sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA== - /buffer-from/1.1.1: + + /buffer-crc32/0.2.13: + resolution: {integrity: sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=} dev: true - resolution: - integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - /builtin-modules/3.2.0: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== - /bytes/3.0.0: - dev: false - engines: - node: '>= 0.8' - resolution: - integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= - /call-bind/1.0.1: - dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.0.2 - dev: true - resolution: - integrity: sha512-tvAvUwNcRikl3RVF20X9lsYmmepsovzTWeJiXjO0PkJp15uy/6xKFZOQtuiSULwYW+6ToZBprphCgWXC2dSgcQ== + /callsites/3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - /camel-case/3.0.0: - dependencies: - no-case: 2.3.2 - upper-case: 1.1.3 - dev: true - resolution: - integrity: sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M= - /camelcase-keys/2.1.0: - dependencies: - camelcase: 2.1.1 - map-obj: 1.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-MIvur/3ygRkFHvodkyITyRuPkuc= - /camelcase/2.1.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= - /camelcase/5.3.1: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - /caniuse-lite/1.0.30001173: - dev: true - resolution: - integrity: sha512-R3aqmjrICdGCTAnSXtNyvWYMK3YtV5jwudbq0T7nN9k4kmE4CBuwPqyJ+KBzepSTh0huivV2gLbSMEzTTmfeYw== - /caseless/0.12.0: - dev: true - resolution: - integrity: sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= - /chalk/1.1.3: - dependencies: - ansi-styles: 2.2.1 - escape-string-regexp: 1.0.5 - has-ansi: 2.0.0 - strip-ansi: 3.0.1 - supports-color: 2.0.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + /chalk/2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - /chownr/2.0.0: - dev: true - engines: - node: '>=10' - resolution: - integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - /clean-css/4.2.3: + + /chalk/4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} dependencies: - source-map: 0.6.1 + ansi-styles: 4.3.0 + supports-color: 7.2.0 dev: true - engines: - node: '>= 4.0' - resolution: - integrity: sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== - /cliui/5.0.0: + + /cheap-watch/1.0.4: + resolution: {integrity: sha512-QR/9FrtRL5fjfUJBhAKCdi0lSRQ3rVRRum3GF9wDKp2TJbEIMGhUEr2yU8lORzm9Isdjx7/k9S0DFDx+z5VGtw==} + engines: {node: '>=8'} + dev: true + + /chokidar/3.5.2: + resolution: {integrity: sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==} + engines: {node: '>= 8.10.0'} dependencies: - string-width: 3.1.0 - strip-ansi: 5.2.0 - wrap-ansi: 5.1.0 + anymatch: 3.1.2 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.1 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 dev: true - resolution: - integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== - /code-point-at/1.1.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + /color-convert/1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 dev: true - resolution: - integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + + /color-convert/2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + /color-name/1.1.3: + resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} dev: true - resolution: - integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - /colorette/1.2.1: + + /color-name/1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: true - resolution: - integrity: sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== - /combined-stream/1.0.8: - dependencies: - delayed-stream: 1.0.0 + + /colorette/1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} dev: true - engines: - node: '>= 0.8' - resolution: - integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - /commander/2.20.3: - dev: true - resolution: - integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - /commondir/1.0.1: - dev: true - resolution: - integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= - /compressible/2.0.18: - dependencies: - mime-db: 1.45.0 - dev: false - engines: - node: '>= 0.6' - resolution: - integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - /compression/1.7.4: - dependencies: - accepts: 1.3.7 - bytes: 3.0.0 - compressible: 2.0.18 - debug: 2.6.9 - on-headers: 1.0.2 - safe-buffer: 5.1.2 - vary: 1.1.2 - dev: false - engines: - node: '>= 0.8.0' - resolution: - integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + /concat-map/0.0.1: + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} dev: true - resolution: - integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - /concat-stream/1.6.2: - dependencies: - buffer-from: 1.1.1 - inherits: 2.0.4 - readable-stream: 2.3.7 - typedarray: 0.0.6 - dev: true - engines: - '0': node >= 0.8 - resolution: - integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - /console-control-strings/1.1.0: - dev: true - resolution: - integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= - /convert-source-map/1.7.0: - dependencies: - safe-buffer: 5.1.2 - dev: true - resolution: - integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== - /core-js-compat/3.8.2: - dependencies: - browserslist: 4.16.1 - semver: 7.0.0 - dev: true - resolution: - integrity: sha512-LO8uL9lOIyRRrQmZxHZFl1RV+ZbcsAkFWTktn5SmH40WgLtSNYN4m4W2v9ONT147PxBY/XrRhrWq8TlvObyUjQ== - /core-util-is/1.0.2: - dev: true - resolution: - integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - /cosmiconfig/7.0.0: - dependencies: - '@types/parse-json': 4.0.0 - import-fresh: 3.3.0 - parse-json: 5.1.0 - path-type: 4.0.0 - yaml: 1.10.0 - dev: true - engines: - node: '>=10' - resolution: - integrity: sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== + /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 - engines: - node: '>= 8' - resolution: - integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - /css-blank-pseudo/0.1.4: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - hasBin: true - resolution: - integrity: sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w== - /css-has-pseudo/0.10.0: - dependencies: - postcss: 7.0.35 - postcss-selector-parser: 5.0.0 - dev: true - engines: - node: '>=6.0.0' - hasBin: true - resolution: - integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ== - /css-prefers-color-scheme/3.1.1: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - hasBin: true - resolution: - integrity: sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg== - /cssdb/4.4.0: - dev: true - resolution: - integrity: sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ== - /cssesc/2.0.0: - dev: true - engines: - node: '>=4' - hasBin: true - resolution: - integrity: sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== - /cssesc/3.0.0: - dev: true - engines: - node: '>=4' - hasBin: true - resolution: - integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - /currently-unhandled/0.4.1: - dependencies: - array-find-index: 1.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-mI3zP+qxke95mmE2nddsF635V+o= - /dashdash/1.14.1: - dependencies: - assert-plus: 1.0.0 - dev: true - engines: - node: '>=0.10' - resolution: - integrity: sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= - /debug/2.6.9: - dependencies: - ms: 2.0.0 - dev: false - resolution: - integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - /debug/4.3.1: - dependencies: - ms: 2.1.2 - dev: true - engines: - node: '>=6.0' + + /debug/4.3.2: + resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==} + engines: {node: '>=6.0'} peerDependencies: supports-color: '*' peerDependenciesMeta: supports-color: optional: true - resolution: - integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== - /decamelize/1.2.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - /deep-is/0.1.3: - dev: true - resolution: - integrity: sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= - /deepmerge/4.2.2: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - /define-properties/1.1.3: dependencies: - object-keys: 1.1.1 + ms: 2.1.2 dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - /delayed-stream/1.0.0: + + /deep-is/0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true - engines: - node: '>=0.4.0' - resolution: - integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk= - /delegates/1.0.0: + + /detect-indent/6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} dev: true - resolution: - integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= - /detect-indent/6.0.0: - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== - /dotenv/8.2.0: - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== - /duplexify/3.7.1: + + /dir-glob/3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} dependencies: - end-of-stream: 1.4.4 - inherits: 2.0.4 - readable-stream: 2.3.7 - stream-shift: 1.0.1 + path-type: 4.0.0 dev: true - resolution: - integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== - /ecc-jsbn/0.1.2: + + /doctrine/3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} dependencies: - jsbn: 0.1.1 - safer-buffer: 2.1.2 - dev: true - resolution: - integrity: sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= - /electron-to-chromium/1.3.635: - dev: true - resolution: - integrity: sha512-RRriZOLs9CpW6KTLmgBqyUdnY0QNqqWs0HOtuQGGEMizOTNNn1P7sGRBxARnUeLejOsgwjDyRqT3E/CSst02ZQ== - /emoji-regex/7.0.3: - dev: true - resolution: - integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - /end-of-stream/1.4.4: - dependencies: - once: 1.4.0 - dev: true - resolution: - integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - /env-paths/2.2.0: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA== - /error-ex/1.3.2: - dependencies: - is-arrayish: 0.2.1 - dev: true - resolution: - integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - /escalade/3.1.1: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - /escape-string-regexp/1.0.5: - dev: true - engines: - node: '>=0.8.0' - resolution: - integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - /escodegen/1.14.3: - dependencies: - esprima: 4.0.1 - estraverse: 4.3.0 esutils: 2.0.3 - optionator: 0.8.3 dev: true - engines: - node: '>=4.0' + + /emoji-regex/8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /enquirer/2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.1 + dev: true + + /es6-promise/3.3.1: + resolution: {integrity: sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM=} + dev: true + + /esbuild/0.12.27: + resolution: {integrity: sha512-G42siADcTdRU1qRBxhiIiVLG4gcEMyWV4CWfLBdSii+olCueZJHFRHc7EqQRnRvNkSQq88i0k1Oufw/YVueUWQ==} hasBin: true - optionalDependencies: - source-map: 0.6.1 - resolution: - integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== - /esprima/4.0.1: + requiresBuild: true dev: true - engines: - node: '>=4' + + /escape-string-regexp/1.0.5: + resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp/4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /eslint-plugin-svelte3/3.2.1_eslint@7.32.0+svelte@3.42.5: + resolution: {integrity: sha512-YoBR9mLoKCjGghJ/gvpnFZKaMEu/VRcuxpSRS8KuozuEo7CdBH7bmBHa6FmMm0i4kJnOyx+PVsaptz96K6H/4Q==} + engines: {node: '>=10'} + peerDependencies: + eslint: '>=6.0.0' + svelte: ^3.2.0 + dependencies: + eslint: 7.32.0 + svelte: 3.42.5 + dev: true + + /eslint-scope/5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-utils/2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils/3.0.0_eslint@7.32.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 7.32.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys/1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + dev: true + + /eslint-visitor-keys/2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + dev: true + + /eslint/7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} hasBin: true - resolution: - integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - /estraverse/4.3.0: + dependencies: + '@babel/code-frame': 7.12.11 + '@eslint/eslintrc': 0.4.3 + '@humanwhocodes/config-array': 0.5.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.2 + doctrine: 3.0.0 + enquirer: 2.3.6 + escape-string-regexp: 4.0.0 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + eslint-visitor-keys: 2.1.0 + espree: 7.3.1 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 5.1.2 + globals: 13.11.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.1 + js-yaml: 3.14.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.0.4 + natural-compare: 1.4.0 + optionator: 0.9.1 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.3.5 + strip-ansi: 6.0.0 + strip-json-comments: 3.1.1 + table: 6.7.1 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color dev: true - engines: - node: '>=4.0' - resolution: - integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - /estree-walker/0.6.1: - dev: true - resolution: - integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== - /estree-walker/1.0.1: - dev: true - resolution: - integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== - /estree-walker/2.0.2: - dev: true - resolution: - integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== - /esutils/2.0.3: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - /ev-emitter/1.1.1: - dev: false - resolution: - integrity: sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q== - /events/3.2.0: - dev: true - engines: - node: '>=0.8.x' - resolution: - integrity: sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg== - /extend/3.0.2: - dev: true - resolution: - integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - /extsprintf/1.3.0: - dev: true - engines: - '0': node >=0.6.0 - resolution: - integrity: sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= - /falafel/2.2.4: + + /espree/7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: acorn: 7.4.1 - foreach: 2.0.5 - isarray: 2.0.5 - object-keys: 1.1.1 + acorn-jsx: 5.3.2_acorn@7.4.1 + eslint-visitor-keys: 1.3.0 dev: true - engines: - node: '>=0.4.0' - resolution: - integrity: sha512-0HXjo8XASWRmsS0X1EkhwEMZaD3Qvp7FfURwjLKjG1ghfRm/MGZl2r4cWUTv41KdNghTw4OUMmVtdGQp3+H+uQ== + + /esprima/4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /esquery/1.4.0: + resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.2.0 + dev: true + + /esrecurse/4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.2.0 + dev: true + + /estraverse/4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse/5.2.0: + resolution: {integrity: sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==} + engines: {node: '>=4.0'} + dev: true + + /estree-walker/2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + dev: true + + /esutils/2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + /fast-deep-equal/3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true - resolution: - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + + /fast-glob/3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.4 + dev: true + /fast-json-stable-stringify/2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true - resolution: - integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + /fast-levenshtein/2.0.6: + resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} dev: true - resolution: - integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - /find-up/1.1.2: + + /fastq/1.13.0: + resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} dependencies: - path-exists: 2.1.0 - pinkie-promise: 2.0.1 + reusify: 1.0.4 dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= - /find-up/3.0.0: + + /file-entry-cache/6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: - locate-path: 3.0.0 + flat-cache: 3.0.4 dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - /flatten/1.0.3: - dev: true - resolution: - integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== - /foreach/2.0.5: - dev: true - resolution: - integrity: sha1-C+4AUBiusmDQo6865ljdATbsG5k= - /forever-agent/0.6.1: - dev: true - resolution: - integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= - /form-data/2.3.3: + + /fill-range/7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.28 + to-regex-range: 5.0.1 dev: true - engines: - node: '>= 0.12' - resolution: - integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - /fraction.js/4.0.13: - dev: true - resolution: - integrity: sha512-E1fz2Xs9ltlUp+qbiyx9wmt2n9dRzPsS11Jtdb8D2o+cC7wr9xkkKsVKJuBX0ST+LVS+LhLO+SbLJNtfWcJvXA== - /from2/2.3.0: + + /flat-cache/3.0.4: + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: - inherits: 2.0.4 - readable-stream: 2.3.7 + flatted: 3.2.2 + rimraf: 3.0.2 dev: true - resolution: - integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= - /fs-minipass/2.1.0: - dependencies: - minipass: 3.1.3 + + /flatted/3.2.2: + resolution: {integrity: sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==} dev: true - engines: - node: '>= 8' - resolution: - integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + + /focus-visible/5.2.0: + resolution: {integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==} + dev: false + /fs.realpath/1.0.0: + resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} dev: true - resolution: - integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - /fsevents/2.1.3: - deprecated: '"Please update to latest v2.3 or v2.2"' + + /fsevents/2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true dev: true - engines: - node: ^8.16.0 || ^10.6.0 || >=11.0.0 optional: true - os: - - darwin - resolution: - integrity: sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== + /function-bind/1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: true - resolution: - integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - /gauge/2.7.4: + + /functional-red-black-tree/1.0.1: + resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} + dev: true + + /glob-parent/5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} dependencies: - aproba: 1.2.0 - console-control-strings: 1.1.0 - has-unicode: 2.0.1 - object-assign: 4.1.1 - signal-exit: 3.0.3 - string-width: 1.0.2 - strip-ansi: 3.0.1 - wide-align: 1.1.3 + is-glob: 4.0.1 dev: true - resolution: - integrity: sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= - /gaze/1.1.3: - dependencies: - globule: 1.3.2 - dev: true - engines: - node: '>= 4.0.0' - resolution: - integrity: sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== - /gensync/1.0.0-beta.2: - dev: true - engines: - node: '>=6.9.0' - resolution: - integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - /get-caller-file/2.0.5: - dev: true - engines: - node: 6.* || 8.* || >= 10.* - resolution: - integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - /get-intrinsic/1.0.2: - dependencies: - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.1 - dev: true - resolution: - integrity: sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg== - /get-stdin/4.0.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= - /getpass/0.1.7: - dependencies: - assert-plus: 1.0.0 - dev: true - resolution: - integrity: sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= - /glob/7.1.6: + + /glob/7.1.7: + resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -1909,1912 +787,572 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 dev: true - resolution: - integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - /globals/11.12.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - /globule/1.3.2: + + /globals/13.11.0: + resolution: {integrity: sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==} + engines: {node: '>=8'} dependencies: - glob: 7.1.6 - lodash: 4.17.20 - minimatch: 3.0.4 + type-fest: 0.20.2 dev: true - engines: - node: '>= 0.10' - resolution: - integrity: sha512-7IDTQTIu2xzXkT+6mlluidnWo+BypnbSoEVVQCGfzqnl5Ik8d3e1d4wycb8Rj9tWW+Z39uPWsdlquqiqPCd/pA== - /glsl-inject-defines/1.0.3: + + /globalyzer/0.1.0: + resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + dev: true + + /globby/11.0.4: + resolution: {integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==} + engines: {node: '>=10'} dependencies: - glsl-token-inject-block: 1.1.0 - glsl-token-string: 1.0.1 - glsl-tokenizer: 2.1.5 + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.7 + ignore: 5.1.8 + merge2: 1.4.1 + slash: 3.0.0 dev: true - resolution: - integrity: sha1-3RqswsF/yyvT/DJBHGYz0Ne2D9Q= - /glsl-resolve/0.0.1: - dependencies: - resolve: 0.6.3 - xtend: 2.2.0 + + /globrex/0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} dev: true - resolution: - integrity: sha1-iUvvc5ENeSyBtRQxgANdCnivdtM= - /glsl-token-assignments/2.0.2: + + /graceful-fs/4.2.8: + resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==} dev: true - resolution: - integrity: sha1-pdgqt4SZwuimuDy2lJXm5mXOAZ8= - /glsl-token-defines/1.0.0: - dependencies: - glsl-tokenizer: 2.1.5 - dev: true - resolution: - integrity: sha1-y4kqqVmTYjFyhHDU90AySJaX+p0= - /glsl-token-depth/1.1.2: - dev: true - resolution: - integrity: sha1-I8XjDuK9JViEtKKLyFC495HpXYQ= - /glsl-token-descope/1.0.2: - dependencies: - glsl-token-assignments: 2.0.2 - glsl-token-depth: 1.1.2 - glsl-token-properties: 1.0.1 - glsl-token-scope: 1.1.2 - dev: true - resolution: - integrity: sha1-D8kKsyYYa4L1l7LnfcniHvzTIHY= - /glsl-token-inject-block/1.1.0: - dev: true - resolution: - integrity: sha1-4QFfWYDBCRgkraomJfHf3ovQADQ= - /glsl-token-properties/1.0.1: - dev: true - resolution: - integrity: sha1-SD3D2Dnw1LXGFx0VkfJJvlPCip4= - /glsl-token-scope/1.1.2: - dev: true - resolution: - integrity: sha1-oXKOeN8kRE+cuT/RjvD3VQOmQ7E= - /glsl-token-string/1.0.1: - dev: true - resolution: - integrity: sha1-WUQdL4V958NEnJRWZgIezjWOSOw= - /glsl-token-whitespace-trim/1.0.0: - dev: true - resolution: - integrity: sha1-RtHf6Yx1vX1QTAXX0RsbPpzJOxA= - /glsl-tokenizer/2.1.5: - dependencies: - through2: 0.6.5 - dev: true - resolution: - integrity: sha512-XSZEJ/i4dmz3Pmbnpsy3cKh7cotvFlBiZnDOwnj/05EwNp2XrhQ4XKJxT7/pDt4kp4YcpRSKz8eTV7S+mwV6MA== - /glslify-bundle/5.1.1: - dependencies: - glsl-inject-defines: 1.0.3 - glsl-token-defines: 1.0.0 - glsl-token-depth: 1.1.2 - glsl-token-descope: 1.0.2 - glsl-token-scope: 1.1.2 - glsl-token-string: 1.0.1 - glsl-token-whitespace-trim: 1.0.0 - glsl-tokenizer: 2.1.5 - murmurhash-js: 1.0.0 - shallow-copy: 0.0.1 - dev: true - resolution: - integrity: sha512-plaAOQPv62M1r3OsWf2UbjN0hUYAB7Aph5bfH58VxJZJhloRNbxOL9tl/7H71K7OLJoSJ2ZqWOKk3ttQ6wy24A== - /glslify-deps/1.3.2: - dependencies: - '@choojs/findup': 0.2.1 - events: 3.2.0 - glsl-resolve: 0.0.1 - glsl-tokenizer: 2.1.5 - graceful-fs: 4.2.4 - inherits: 2.0.4 - map-limit: 0.0.1 - resolve: 1.19.0 - dev: true - resolution: - integrity: sha512-7S7IkHWygJRjcawveXQjRXLO2FTjijPDYC7QfZyAQanY+yGLCFHYnPtsGT9bdyHiwPTw/5a1m1M9hamT2aBpag== - /glslify/7.1.1: - dependencies: - bl: 2.2.1 - concat-stream: 1.6.2 - duplexify: 3.7.1 - falafel: 2.2.4 - from2: 2.3.0 - glsl-resolve: 0.0.1 - glsl-token-whitespace-trim: 1.0.0 - glslify-bundle: 5.1.1 - glslify-deps: 1.3.2 - minimist: 1.2.5 - resolve: 1.19.0 - stack-trace: 0.0.9 - static-eval: 2.1.0 - through2: 2.0.5 - xtend: 4.0.2 - dev: true - hasBin: true - resolution: - integrity: sha512-bud98CJ6kGZcP9Yxcsi7Iz647wuDz3oN+IZsjCRi5X1PI7t/xPKeL0mOwXJjo+CRZMqvq0CkSJiywCcY7kVYog== - /graceful-fs/4.2.4: - dev: true - resolution: - integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== - /har-schema/2.0.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= - /har-validator/5.1.5: - dependencies: - ajv: 6.12.6 - har-schema: 2.0.0 - deprecated: this library is no longer supported - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== - /has-ansi/2.0.0: - dependencies: - ansi-regex: 2.1.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + /has-flag/3.0.0: + resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} + engines: {node: '>=4'} dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + /has-flag/4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - /has-symbols/1.0.1: - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== - /has-unicode/2.0.1: - dev: true - resolution: - integrity: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + /has/1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 dev: true - engines: - node: '>= 0.4.0' - resolution: - integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - /he/1.2.0: + + /ignore/4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} dev: true - hasBin: true - resolution: - integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - /hosted-git-info/2.8.8: + + /ignore/5.1.8: + resolution: {integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==} + engines: {node: '>= 4'} dev: true - resolution: - integrity: sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== - /html-minifier/4.0.0: - dependencies: - camel-case: 3.0.0 - clean-css: 4.2.3 - commander: 2.20.3 - he: 1.2.0 - param-case: 2.1.1 - relateurl: 0.2.7 - uglify-js: 3.12.4 - dev: true - engines: - node: '>=6' - hasBin: true - resolution: - integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig== - /http-link-header/1.0.3: - dev: true - engines: - node: '>=4.0.0' - resolution: - integrity: sha512-nARK1wSKoBBrtcoESlHBx36c1Ln/gnbNQi1eB6MeTUefJIT3NvUOsV15bClga0k38f0q/kN5xxrGSDS3EFnm9w== - /http-signature/1.2.0: - dependencies: - assert-plus: 1.0.0 - jsprim: 1.4.1 - sshpk: 1.16.1 - dev: true - engines: - node: '>=0.8' - npm: '>=1.3.7' - resolution: - integrity: sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= - /imagesloaded/4.1.4: - dependencies: - ev-emitter: 1.1.1 - dev: false - resolution: - integrity: sha512-ltiBVcYpc/TYTF5nolkMNsnREHW+ICvfQ3Yla2Sgr71YFwQ86bDwV9hgpFhFtrGPuwEx5+LqOHIrdXBdoWwwsA== - /import-cwd/3.0.0: - dependencies: - import-from: 3.0.0 - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== + /import-fresh/3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - /import-from/3.0.0: - dependencies: - resolve-from: 5.0.0 + + /imurmurhash/0.1.4: + resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} + engines: {node: '>=0.8.19'} dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== - /indent-string/2.1.0: - dependencies: - repeating: 2.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= - /indexes-of/1.0.1: - dev: true - resolution: - integrity: sha1-8w9xbI4r00bHtn0985FVZqfAVgc= + /inflight/1.0.6: + resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} dependencies: once: 1.4.0 wrappy: 1.0.2 dev: true - resolution: - integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + /inherits/2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: true - resolution: - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - /is-arrayish/0.2.1: + + /is-binary-path/2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 dev: true - resolution: - integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= - /is-core-module/2.2.0: + + /is-core-module/2.6.0: + resolution: {integrity: sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==} dependencies: has: 1.0.3 dev: true - resolution: - integrity: sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== - /is-finite/1.1.0: + + /is-extglob/2.1.1: + resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} + engines: {node: '>=0.10.0'} dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== - /is-fullwidth-code-point/1.0.0: + + /is-fullwidth-code-point/3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-glob/4.0.1: + resolution: {integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==} + engines: {node: '>=0.10.0'} dependencies: - number-is-nan: 1.0.1 + is-extglob: 2.1.1 dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs= - /is-fullwidth-code-point/2.0.0: + + /is-number/7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - /is-module/1.0.0: - dev: true - resolution: - integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= - /is-reference/1.2.1: - dependencies: - '@types/estree': 0.0.45 - dev: true - resolution: - integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== - /is-typedarray/1.0.0: - dev: true - resolution: - integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= - /is-utf8/0.2.1: - dev: true - resolution: - integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= - /isarray/0.0.1: - dev: true - resolution: - integrity: sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= - /isarray/1.0.0: - dev: true - resolution: - integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - /isarray/2.0.5: - dev: true - resolution: - integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + /isexe/2.0.0: + resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} dev: true - resolution: - integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - /isstream/0.1.2: - dev: true - resolution: - integrity: sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= - /jest-worker/26.6.2: - dependencies: - '@types/node': 14.14.20 - merge-stream: 2.0.0 - supports-color: 7.2.0 - dev: true - engines: - node: '>= 10.13.0' - resolution: - integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== - /js-base64/2.6.4: - dev: true - resolution: - integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== + /js-tokens/4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true - resolution: - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - /jsbn/0.1.1: - dev: true - resolution: - integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM= - /jsesc/0.5.0: - dev: true + + /js-yaml/3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true - resolution: - integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= - /jsesc/2.5.2: + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 dev: true - engines: - node: '>=4' - hasBin: true - resolution: - integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - /json-parse-even-better-errors/2.3.1: - dev: true - resolution: - integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + /json-schema-traverse/0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} dev: true - resolution: - integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - /json-schema/0.2.3: + + /json-schema-traverse/1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} dev: true - resolution: - integrity: sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= - /json-stringify-safe/5.0.1: + + /json-stable-stringify-without-jsonify/1.0.1: + resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} dev: true - resolution: - integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= - /json5/2.1.3: + + /kleur/4.1.4: + resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==} + engines: {node: '>=6'} + dev: true + + /levn/0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} dependencies: - minimist: 1.2.5 + prelude-ls: 1.2.1 + type-check: 0.4.0 dev: true - engines: - node: '>=6' - hasBin: true - resolution: - integrity: sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== - /jsprim/1.4.1: - dependencies: - assert-plus: 1.0.0 - extsprintf: 1.3.0 - json-schema: 0.2.3 - verror: 1.10.0 + + /lodash.clonedeep/4.5.0: + resolution: {integrity: sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=} dev: true - engines: - '0': node >=0.6.0 - resolution: - integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= - /lazysizes/5.3.0: - dev: false - resolution: - integrity: sha512-h5i4WPc2FdeTOUHBcU7eyNnOULPCC90wVho+SQTZRh9Q8lev6P0yFwKq8rvfMdBvsKsCyDQBdqoBng9FYbcR/g== - /levn/0.3.0: - dependencies: - prelude-ls: 1.1.2 - type-check: 0.3.2 + + /lodash.merge/4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} dev: true - engines: - node: '>= 0.8.0' - resolution: - integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= - /lines-and-columns/1.1.6: + + /lodash.truncate/4.4.2: + resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=} dev: true - resolution: - integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - /load-json-file/1.1.0: - dependencies: - graceful-fs: 4.2.4 - parse-json: 2.2.0 - pify: 2.3.0 - pinkie-promise: 2.0.1 - strip-bom: 2.0.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= - /locate-path/3.0.0: - dependencies: - p-locate: 3.0.0 - path-exists: 3.0.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - /lodash._reinterpolate/3.0.0: - dev: true - resolution: - integrity: sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= - /lodash.template/4.5.0: - dependencies: - lodash._reinterpolate: 3.0.0 - lodash.templatesettings: 4.2.0 - dev: true - resolution: - integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== - /lodash.templatesettings/4.2.0: - dependencies: - lodash._reinterpolate: 3.0.0 - dev: true - resolution: - integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== - /lodash/4.17.20: - dev: true - resolution: - integrity: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== - /loud-rejection/1.6.0: - dependencies: - currently-unhandled: 0.4.1 - signal-exit: 3.0.3 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= - /lower-case/1.1.4: - dev: true - resolution: - integrity: sha1-miyr0bno4K6ZOkv31YdcOcQujqw= + /lru-cache/6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} dependencies: yallist: 4.0.0 dev: true - engines: - node: '>=10' - resolution: - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + /magic-string/0.25.7: + resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==} dependencies: sourcemap-codec: 1.4.8 dev: true - resolution: - integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== - /map-limit/0.0.1: + + /merge2/1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /micromatch/4.0.4: + resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==} + engines: {node: '>=8.6'} dependencies: - once: 1.3.3 + braces: 3.0.2 + picomatch: 2.3.0 dev: true - resolution: - integrity: sha1-63lhAxwPDo0AG/LVb6toXViCLzg= - /map-obj/1.0.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= - /meow/3.7.0: - dependencies: - camelcase-keys: 2.1.0 - decamelize: 1.2.0 - loud-rejection: 1.6.0 - map-obj: 1.0.1 - minimist: 1.2.5 - normalize-package-data: 2.5.0 - object-assign: 4.1.1 - read-pkg-up: 1.0.1 - redent: 1.0.0 - trim-newlines: 1.0.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= - /merge-stream/2.0.0: - dev: true - resolution: - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - /mime-db/1.45.0: - engines: - node: '>= 0.6' - resolution: - integrity: sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== - /mime-types/2.1.28: - dependencies: - mime-db: 1.45.0 - engines: - node: '>= 0.6' - resolution: - integrity: sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ== - /mime/2.4.7: - dev: false - engines: - node: '>=4.0.0' - hasBin: true - resolution: - integrity: sha512-dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA== + /min-indent/1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + /minimatch/3.0.4: + resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} dependencies: brace-expansion: 1.1.11 dev: true - resolution: - integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + /minimist/1.2.5: + resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} dev: true - resolution: - integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - /minipass/3.1.3: - dependencies: - yallist: 4.0.0 - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg== - /minizlib/2.1.2: - dependencies: - minipass: 3.1.3 - yallist: 4.0.0 - dev: true - engines: - node: '>= 8' - resolution: - integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + /mkdirp/0.5.5: + resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==} + hasBin: true dependencies: minimist: 1.2.5 dev: true - hasBin: true - resolution: - integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== - /mkdirp/1.0.4: + + /mri/1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} dev: true - engines: - node: '>=10' - hasBin: true - resolution: - integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - /ms/2.0.0: - dev: false - resolution: - integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + /ms/2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: true - resolution: - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - /murmurhash-js/1.0.0: - dev: true - resolution: - integrity: sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E= - /nan/2.14.2: - dev: true - resolution: - integrity: sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== - /nanoid/3.1.20: - dev: true - engines: - node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 + + /nanoid/3.1.25: + resolution: {integrity: sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - resolution: - integrity: sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== - /negotiator/0.6.2: - dev: false - engines: - node: '>= 0.6' - resolution: - integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== - /no-case/2.3.2: - dependencies: - lower-case: 1.1.4 dev: true - resolution: - integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== - /node-fetch/2.6.1: - dev: false - engines: - node: 4.x || >=6.0.0 - resolution: - integrity: sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== - /node-gyp/7.1.2: - dependencies: - env-paths: 2.2.0 - glob: 7.1.6 - graceful-fs: 4.2.4 - nopt: 5.0.0 - npmlog: 4.1.2 - request: 2.88.2 - rimraf: 3.0.2 - semver: 7.3.4 - tar: 6.1.0 - which: 2.0.2 + + /natural-compare/1.4.0: + resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} dev: true - engines: - node: '>= 10.12.0' - hasBin: true - resolution: - integrity: sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ== - /node-releases/1.1.69: + + /normalize-path/3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} dev: true - resolution: - integrity: sha512-DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA== - /node-sass/5.0.0: - dependencies: - async-foreach: 0.1.3 - chalk: 1.1.3 - cross-spawn: 7.0.3 - gaze: 1.1.3 - get-stdin: 4.0.1 - glob: 7.1.6 - lodash: 4.17.20 - meow: 3.7.0 - mkdirp: 0.5.5 - nan: 2.14.2 - node-gyp: 7.1.2 - npmlog: 4.1.2 - request: 2.88.2 - sass-graph: 2.2.5 - stdout-stream: 1.4.1 - true-case-path: 1.0.3 - dev: true - engines: - node: '>=10' - hasBin: true - requiresBuild: true - resolution: - integrity: sha512-opNgmlu83ZCF792U281Ry7tak9IbVC+AKnXGovcQ8LG8wFaJv6cLnRlc6DIHlmNxWEexB5bZxi9SZ9JyUuOYjw== - /nopt/5.0.0: - dependencies: - abbrev: 1.1.1 - dev: true - engines: - node: '>=6' - hasBin: true - resolution: - integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== - /normalize-package-data/2.5.0: - dependencies: - hosted-git-info: 2.8.8 - resolve: 1.19.0 - semver: 5.7.1 - validate-npm-package-license: 3.0.4 - dev: true - resolution: - integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - /normalize-range/0.1.2: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= - /normalize.css/8.0.1: - dev: false - resolution: - integrity: sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg== - /npmlog/4.1.2: - dependencies: - are-we-there-yet: 1.1.5 - console-control-strings: 1.1.0 - gauge: 2.7.4 - set-blocking: 2.0.0 - dev: true - resolution: - integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - /num2fraction/1.2.2: - dev: true - resolution: - integrity: sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= - /number-is-nan/1.0.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - /oauth-sign/0.9.0: - dev: true - resolution: - integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - /object-assign/4.1.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - /object-keys/1.1.1: - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - /object.assign/4.1.2: - dependencies: - call-bind: 1.0.1 - define-properties: 1.1.3 - has-symbols: 1.0.1 - object-keys: 1.1.1 - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== - /on-headers/1.0.2: - dev: false - engines: - node: '>= 0.8' - resolution: - integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - /once/1.3.3: - dependencies: - wrappy: 1.0.2 - dev: true - resolution: - integrity: sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA= + /once/1.4.0: + resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} dependencies: wrappy: 1.0.2 dev: true - resolution: - integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - /optionator/0.8.3: + + /optionator/0.9.1: + resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + engines: {node: '>= 0.8.0'} dependencies: - deep-is: 0.1.3 + deep-is: 0.1.4 fast-levenshtein: 2.0.6 - levn: 0.3.0 - prelude-ls: 1.1.2 - type-check: 0.3.2 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 word-wrap: 1.2.3 dev: true - engines: - node: '>= 0.8.0' - resolution: - integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - /p-limit/2.3.0: - dependencies: - p-try: 2.2.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - /p-locate/3.0.0: - dependencies: - p-limit: 2.3.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - /p-try/2.2.0: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - /param-case/2.1.1: - dependencies: - no-case: 2.3.2 - dev: true - resolution: - integrity: sha1-35T9jPZTHs915r75oIWPvHK+Ikc= + /parent-module/1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - /parse-json/2.2.0: - dependencies: - error-ex: 1.3.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= - /parse-json/5.1.0: - dependencies: - '@babel/code-frame': 7.12.11 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.1.6 - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== - /path-exists/2.1.0: - dependencies: - pinkie-promise: 2.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= - /path-exists/3.0.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + /path-is-absolute/1.0.1: + resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} + engines: {node: '>=0.10.0'} dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + /path-key/3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - /path-parse/1.0.6: + + /path-parse/1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} dev: true - resolution: - integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - /path-type/1.1.0: - dependencies: - graceful-fs: 4.2.4 - pify: 2.3.0 - pinkie-promise: 2.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= + /path-type/4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - /performance-now/2.1.0: + + /picomatch/2.3.0: + resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==} + engines: {node: '>=8.6'} dev: true - resolution: - integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= - /picomatch/2.2.2: - dev: true - engines: - node: '>=8.6' - resolution: - integrity: sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== - /pify/2.3.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw= - /pinkie-promise/2.0.1: + + /postcss/8.3.6: + resolution: {integrity: sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==} + engines: {node: ^10 || ^12 || >=14} dependencies: - pinkie: 2.0.4 + colorette: 1.4.0 + nanoid: 3.1.25 + source-map-js: 0.6.2 dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o= - /pinkie/2.0.4: + + /prelude-ls/1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA= - /polka/1.0.0-next.11: - dependencies: - '@polka/url': 1.0.0-next.11 - trouter: 3.1.0 - dev: false - engines: - node: '>=6' - resolution: - integrity: sha512-M/HBkS6ILksrDq7uvktCTev81OzuLwNtpxMyYdUhxLKQlMWdsu789XMotQU+p8JY8CM8vx8ML0HudyWjRus/lg== - /postcss-attribute-case-insensitive/4.0.2: - dependencies: - postcss: 7.0.35 - postcss-selector-parser: 6.0.4 + + /progress/2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} dev: true - resolution: - integrity: sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA== - /postcss-color-functional-notation/2.0.1: - dependencies: - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g== - /postcss-color-gray/5.0.0: - dependencies: - '@csstools/convert-colors': 1.4.0 - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw== - /postcss-color-hex-alpha/5.0.3: - dependencies: - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw== - /postcss-color-mod-function/3.0.3: - dependencies: - '@csstools/convert-colors': 1.4.0 - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ== - /postcss-color-rebeccapurple/4.0.1: - dependencies: - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g== - /postcss-custom-media/7.0.8: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg== - /postcss-custom-properties/8.0.11: - dependencies: - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA== - /postcss-custom-selectors/5.1.2: - dependencies: - postcss: 7.0.35 - postcss-selector-parser: 5.0.0 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w== - /postcss-dir-pseudo-class/5.0.0: - dependencies: - postcss: 7.0.35 - postcss-selector-parser: 5.0.0 - dev: true - engines: - node: '>=4.0.0' - resolution: - integrity: sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw== - /postcss-double-position-gradients/1.0.0: - dependencies: - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA== - /postcss-env-function/2.0.2: - dependencies: - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw== - /postcss-focus-visible/4.0.0: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g== - /postcss-focus-within/3.0.0: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w== - /postcss-font-variant/4.0.1: - dependencies: - postcss: 7.0.35 - dev: true - resolution: - integrity: sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA== - /postcss-gap-properties/2.0.0: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg== - /postcss-image-set-function/3.0.1: - dependencies: - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw== - /postcss-initial/3.0.2: - dependencies: - lodash.template: 4.5.0 - postcss: 7.0.35 - dev: true - resolution: - integrity: sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA== - /postcss-lab-function/2.0.1: - dependencies: - '@csstools/convert-colors': 1.4.0 - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg== - /postcss-load-config/3.0.0: - dependencies: - cosmiconfig: 7.0.0 - import-cwd: 3.0.0 - dev: true - engines: - node: '>= 10' - resolution: - integrity: sha512-lErrN8imuEF1cSiHBV8MiR7HeuzlDpCGNtaMyYHlOBuJHHOGw6S4xOMZp8BbXPr7AGQp14L6PZDlIOpfFJ6f7w== - /postcss-logical/3.0.0: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA== - /postcss-media-minmax/4.0.0: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw== - /postcss-nesting/7.0.1: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg== - /postcss-overflow-shorthand/2.0.0: - dependencies: - postcss: 7.0.35 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g== - /postcss-page-break/2.0.0: - dependencies: - postcss: 7.0.35 - dev: true - resolution: - integrity: sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ== - /postcss-place/4.0.1: - dependencies: - postcss: 7.0.35 - postcss-values-parser: 2.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg== - /postcss-preset-env/6.7.0: - dependencies: - autoprefixer: 9.8.6 - browserslist: 4.16.1 - caniuse-lite: 1.0.30001173 - css-blank-pseudo: 0.1.4 - css-has-pseudo: 0.10.0 - css-prefers-color-scheme: 3.1.1 - cssdb: 4.4.0 - postcss: 7.0.35 - postcss-attribute-case-insensitive: 4.0.2 - postcss-color-functional-notation: 2.0.1 - postcss-color-gray: 5.0.0 - postcss-color-hex-alpha: 5.0.3 - postcss-color-mod-function: 3.0.3 - postcss-color-rebeccapurple: 4.0.1 - postcss-custom-media: 7.0.8 - postcss-custom-properties: 8.0.11 - postcss-custom-selectors: 5.1.2 - postcss-dir-pseudo-class: 5.0.0 - postcss-double-position-gradients: 1.0.0 - postcss-env-function: 2.0.2 - postcss-focus-visible: 4.0.0 - postcss-focus-within: 3.0.0 - postcss-font-variant: 4.0.1 - postcss-gap-properties: 2.0.0 - postcss-image-set-function: 3.0.1 - postcss-initial: 3.0.2 - postcss-lab-function: 2.0.1 - postcss-logical: 3.0.0 - postcss-media-minmax: 4.0.0 - postcss-nesting: 7.0.1 - postcss-overflow-shorthand: 2.0.0 - postcss-page-break: 2.0.0 - postcss-place: 4.0.1 - postcss-pseudo-class-any-link: 6.0.0 - postcss-replace-overflow-wrap: 3.0.0 - postcss-selector-matches: 4.0.0 - postcss-selector-not: 4.0.1 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg== - /postcss-pseudo-class-any-link/6.0.0: - dependencies: - postcss: 7.0.35 - postcss-selector-parser: 5.0.0 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew== - /postcss-replace-overflow-wrap/3.0.0: - dependencies: - postcss: 7.0.35 - dev: true - resolution: - integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw== - /postcss-selector-matches/4.0.0: - dependencies: - balanced-match: 1.0.0 - postcss: 7.0.35 - dev: true - resolution: - integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww== - /postcss-selector-not/4.0.1: - dependencies: - balanced-match: 1.0.0 - postcss: 7.0.35 - dev: true - resolution: - integrity: sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ== - /postcss-selector-parser/5.0.0: - dependencies: - cssesc: 2.0.0 - indexes-of: 1.0.1 - uniq: 1.0.1 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== - /postcss-selector-parser/6.0.4: - dependencies: - cssesc: 3.0.0 - indexes-of: 1.0.1 - uniq: 1.0.1 - util-deprecate: 1.0.2 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== - /postcss-value-parser/4.1.0: - dev: true - resolution: - integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== - /postcss-values-parser/2.0.1: - dependencies: - flatten: 1.0.3 - indexes-of: 1.0.1 - uniq: 1.0.1 - dev: true - engines: - node: '>=6.14.4' - resolution: - integrity: sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg== - /postcss/7.0.35: - dependencies: - chalk: 2.4.2 - source-map: 0.6.1 - supports-color: 6.1.0 - dev: true - engines: - node: '>=6.0.0' - resolution: - integrity: sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== - /postcss/8.2.4: - dependencies: - colorette: 1.2.1 - nanoid: 3.1.20 - source-map: 0.6.1 - dev: true - engines: - node: ^10 || ^12 || >=14 - resolution: - integrity: sha512-kRFftRoExRVXZlwUuay9iC824qmXPcQQVzAjbCCgjpXnkdMCJYBu2gTwAaFBzv8ewND6O8xFb3aELmEkh9zTzg== - /prelude-ls/1.1.2: - dev: true - engines: - node: '>= 0.8.0' - resolution: - integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - /process-nextick-args/2.0.1: - dev: true - resolution: - integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - /psl/1.8.0: - dev: true - resolution: - integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== + /punycode/2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + engines: {node: '>=6'} dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - /qs/6.5.2: + + /queue-microtask/1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true - engines: - node: '>=0.6' - resolution: - integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== - /randombytes/2.1.0: + + /readdirp/3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} dependencies: - safe-buffer: 5.2.1 + picomatch: 2.3.0 dev: true - resolution: - integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - /read-pkg-up/1.0.1: - dependencies: - find-up: 1.1.2 - read-pkg: 1.1.0 + + /regexpp/3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= - /read-pkg/1.1.0: - dependencies: - load-json-file: 1.1.0 - normalize-package-data: 2.5.0 - path-type: 1.1.0 + + /require-from-string/2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= - /readable-stream/1.0.34: - dependencies: - core-util-is: 1.0.2 - inherits: 2.0.4 - isarray: 0.0.1 - string_decoder: 0.10.31 - dev: true - resolution: - integrity: sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= - /readable-stream/2.3.7: - dependencies: - core-util-is: 1.0.2 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 2.0.1 - safe-buffer: 5.1.2 - string_decoder: 1.1.1 - util-deprecate: 1.0.2 - dev: true - resolution: - integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - /redent/1.0.0: - dependencies: - indent-string: 2.1.0 - strip-indent: 1.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= - /regenerate-unicode-properties/8.2.0: - dependencies: - regenerate: 1.4.2 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== - /regenerate/1.4.2: - dev: true - resolution: - integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - /regenerator-runtime/0.13.7: - dev: true - resolution: - integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== - /regenerator-transform/0.14.5: - dependencies: - '@babel/runtime': 7.12.5 - dev: true - resolution: - integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== - /regexparam/1.3.0: - dev: false - engines: - node: '>=6' - resolution: - integrity: sha512-6IQpFBv6e5vz1QAqI+V4k8P2e/3gRrqfCJ9FI+O1FLQTO+Uz6RXZEZOPmTJ6hlGj7gkERzY5BRCv09whKP96/g== - /regexpu-core/4.7.1: - dependencies: - regenerate: 1.4.2 - regenerate-unicode-properties: 8.2.0 - regjsgen: 0.5.2 - regjsparser: 0.6.6 - unicode-match-property-ecmascript: 1.0.4 - unicode-match-property-value-ecmascript: 1.2.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== - /regjsgen/0.5.2: - dev: true - resolution: - integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== - /regjsparser/0.6.6: - dependencies: - jsesc: 0.5.0 - dev: true - hasBin: true - resolution: - integrity: sha512-jjyuCp+IEMIm3N1H1LLTJW1EISEJV9+5oHdEyrt43Pg9cDSb6rrLZei2cVWpl0xTjmmlpec/lEQGYgM7xfpGCQ== - /relateurl/0.2.7: - dev: true - engines: - node: '>= 0.10' - resolution: - integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= - /rellax/1.12.1: - dev: false - resolution: - integrity: sha512-XBIi0CDpW5FLTujYjYBn1CIbK2CJL6TsAg/w409KghP2LucjjzBjsujXDAjyBLWgsfupfUcL5WzdnIPcGfK7XA== - /repeating/2.0.1: - dependencies: - is-finite: 1.1.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= - /request/2.88.2: - dependencies: - aws-sign2: 0.7.0 - aws4: 1.11.0 - caseless: 0.12.0 - combined-stream: 1.0.8 - extend: 3.0.2 - forever-agent: 0.6.1 - form-data: 2.3.3 - har-validator: 5.1.5 - http-signature: 1.2.0 - is-typedarray: 1.0.0 - isstream: 0.1.2 - json-stringify-safe: 5.0.1 - mime-types: 2.1.28 - oauth-sign: 0.9.0 - performance-now: 2.1.0 - qs: 6.5.2 - safe-buffer: 5.2.1 - tough-cookie: 2.5.0 - tunnel-agent: 0.6.0 - uuid: 3.4.0 - deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 - dev: true - engines: - node: '>= 6' - resolution: - integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - /require-directory/2.1.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - /require-main-filename/2.0.0: - dev: true - resolution: - integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + /require-relative/0.8.7: + resolution: {integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=} dev: true - resolution: - integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= + /resolve-from/4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - /resolve-from/5.0.0: - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - /resolve/0.6.3: - dev: true - resolution: - integrity: sha1-3ZV5gufnNt699TtYpN2RdUV13UY= - /resolve/1.19.0: + + /resolve/1.20.0: + resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==} dependencies: - is-core-module: 2.2.0 - path-parse: 1.0.6 + is-core-module: 2.6.0 + path-parse: 1.0.7 dev: true - resolution: - integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== - /rimraf/3.0.2: - dependencies: - glob: 7.1.6 + + /reusify/1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} dev: true + + /rimraf/2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true - resolution: - integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - /rollup-plugin-glslify/1.2.0: dependencies: - glslify: 7.1.1 - rollup-pluginutils: 2.8.2 + glob: 7.1.7 dev: true - resolution: - integrity: sha512-EqUFINMICD9U3MJ4jsxBcCRhzWNZJBWyAK2ol+2ClWIPaIWOuz0OY/Ml8rdT81F4aufwxJN5I9N7QvCth0OrUQ== - /rollup-plugin-svelte/7.0.0_rollup@2.36.2+svelte@3.31.2: + + /rimraf/3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true dependencies: - require-relative: 0.8.7 - rollup: 2.36.2 - rollup-pluginutils: 2.8.2 - svelte: 3.31.2 + glob: 7.1.7 dev: true - engines: - node: '>=10' - peerDependencies: - rollup: '>=2.0.0' - svelte: '>=3.5.0' - resolution: - integrity: sha512-cw4yv/5v1NQV3nPbpOJtikgkB+9mfSJaqKUdq7x5fVQJnwLtcdc2JOszBs5pBY+SemTs5pmJbdEMseEavbUtjQ== - /rollup-plugin-terser/7.0.2_rollup@2.36.2: - dependencies: - '@babel/code-frame': 7.12.11 - jest-worker: 26.6.2 - rollup: 2.36.2 - serialize-javascript: 4.0.0 - terser: 5.5.1 - dev: true - peerDependencies: - rollup: ^2.0.0 - resolution: - integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== - /rollup-pluginutils/2.8.2: - dependencies: - estree-walker: 0.6.1 - dev: true - resolution: - integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== - /rollup/2.36.2: - dev: true - engines: - node: '>=10.0.0' + + /rollup/2.56.3: + resolution: {integrity: sha512-Au92NuznFklgQCUcV96iXlxUbHuB1vQMaH76DHl5M11TotjOHwqk9CwcrT78+Tnv4FN9uTBxq6p4EJoYkpyekg==} + engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: - fsevents: 2.1.3 - resolution: - integrity: sha512-qjjiuJKb+/8n0EZyQYVW+gFU4bNRBcZaXVzUgSVrGw0HlQBlK2aWyaOMMs1Ufic1jV69b9kW3u3i9B+hISDm3A== - /safe-buffer/5.1.2: - resolution: - integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - /safe-buffer/5.2.1: + fsevents: 2.3.2 dev: true - resolution: - integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - /safer-buffer/2.1.2: - dev: true - resolution: - integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - /sapper/0.28.10_svelte@3.31.2: + + /run-parallel/1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: - html-minifier: 4.0.0 - http-link-header: 1.0.3 - shimport: 2.0.5 - source-map: 0.6.1 - sourcemap-codec: 1.4.8 - string-hash: 1.1.3 - svelte: 3.31.2 + queue-microtask: 1.2.3 dev: true - hasBin: true - peerDependencies: - svelte: ^3.17.3 - resolution: - integrity: sha512-Z6OpuDOHxiRHKd7JCjHaDe8uOM2fFZxpTLsj/0Ib4sM034xstEvNNUtdY7Pg/a85kP3cFCnkNiM1v7W37vzDGg== - /sass-graph/2.2.5: + + /sade/1.7.4: + resolution: {integrity: sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA==} + engines: {node: '>= 6'} dependencies: - glob: 7.1.6 - lodash: 4.17.20 - scss-tokenizer: 0.2.3 - yargs: 13.3.2 + mri: 1.2.0 dev: true - hasBin: true - resolution: - integrity: sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag== - /scroll-out/2.2.12: + + /sander/0.5.1: + resolution: {integrity: sha1-dB4kXiMfB8r7b98PEzrfohalAq0=} + dependencies: + es6-promise: 3.3.1 + graceful-fs: 4.2.8 + mkdirp: 0.5.5 + rimraf: 2.7.1 + dev: true + + /sanitize.css/12.0.1: + resolution: {integrity: sha512-QbusSBnWHaRBZeTxsJyknwI0q+q6m1NtLBmB76JfW/rdVN7Ws6Zz70w65+430/ouVcdNVT3qwrDgrM6PaYyRtw==} dev: false - resolution: - integrity: sha512-BPWQJat8mmcjQCq+l4DsibBopkmQQb5ngPJ6T9XRxRl86/LJo7V+0d3Sjd9fxzIJkZmkjoGxEAam+Urvem8VRw== - /scss-tokenizer/0.2.3: + + /sass/1.40.1: + resolution: {integrity: sha512-M6WskYLzTfdZdb09W9SftIScjudL8jNkhdh9z96U+olQaKIcw2Knb6QLL9bUhnuSm4VD+1yJVaO2/ENDPMTtAQ==} + engines: {node: '>=8.9.0'} + hasBin: true dependencies: - js-base64: 2.6.4 - source-map: 0.4.4 - dev: true - resolution: - integrity: sha1-jrBtualyMzOCTT9VMGQRSYR85dE= - /semver/5.7.1: + chokidar: 3.5.2 dev: true + + /semver/7.3.5: + resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} + engines: {node: '>=10'} hasBin: true - resolution: - integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - /semver/7.0.0: - dev: true - hasBin: true - resolution: - integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== - /semver/7.3.4: dependencies: lru-cache: 6.0.0 dev: true - engines: - node: '>=10' - hasBin: true - resolution: - integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== - /serialize-javascript/4.0.0: - dependencies: - randombytes: 2.1.0 - dev: true - resolution: - integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== - /set-blocking/2.0.0: - dev: true - resolution: - integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - /shallow-copy/0.0.1: - dev: true - resolution: - integrity: sha1-QV9CcC1z2BAzApLMXuhurhoRoXA= + /shebang-command/2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + /shebang-regex/3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - /shimport/2.0.5: - dev: true - resolution: - integrity: sha512-H2FeQyImK4CFhGG1wVhHEB1hASWz+WQK6t2gMP5lk+b0PW30XSrsryDONDBwF1n6hBKsmbr0REfTinaNdEkcPQ== - /signal-exit/3.0.3: - dev: true - resolution: - integrity: sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== - /sirv/1.0.10: - dependencies: - '@polka/url': 1.0.0-next.11 - mime: 2.4.7 - totalist: 1.1.0 - dev: false - engines: - node: '>= 10' - resolution: - integrity: sha512-H5EZCoZaggEUQy8ocKsF7WAToGuZhjJlLvM3XOef46CbdIgbNeQ1p32N1PCuCjkVYwrAVOSMacN6CXXgIzuspg== + /slash/3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - /source-map-support/0.5.19: + + /slice-ansi/4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} dependencies: - buffer-from: 1.1.1 - source-map: 0.6.1 + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 dev: true - resolution: - integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== - /source-map/0.4.4: + + /sorcery/0.10.0: + resolution: {integrity: sha1-iukK19fLBfxZ8asMY3hF1cFaUrc=} + hasBin: true dependencies: - amdefine: 1.0.1 + buffer-crc32: 0.2.13 + minimist: 1.2.5 + sander: 0.5.1 + sourcemap-codec: 1.4.8 dev: true - engines: - node: '>=0.8.0' - resolution: - integrity: sha1-66T12pwNyZneaAMti092FzZSA2s= - /source-map/0.5.7: + + /source-map-js/0.6.2: + resolution: {integrity: sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==} + engines: {node: '>=0.10.0'} dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - /source-map/0.6.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + /source-map/0.7.3: + resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} + engines: {node: '>= 8'} dev: true - engines: - node: '>= 8' - resolution: - integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== + /sourcemap-codec/1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} dev: true - resolution: - integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== - /spdx-correct/3.1.1: + + /sprintf-js/1.0.3: + resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} + dev: true + + /string-width/4.2.2: + resolution: {integrity: sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==} + engines: {node: '>=8'} dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.7 + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.0 dev: true - resolution: - integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== - /spdx-exceptions/2.3.0: - dev: true - resolution: - integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - /spdx-expression-parse/3.0.1: + + /strip-ansi/6.0.0: + resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==} + engines: {node: '>=8'} dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.7 + ansi-regex: 5.0.0 dev: true - resolution: - integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - /spdx-license-ids/3.0.7: - dev: true - resolution: - integrity: sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== - /sshpk/1.16.1: - dependencies: - asn1: 0.2.4 - assert-plus: 1.0.0 - bcrypt-pbkdf: 1.0.2 - dashdash: 1.14.1 - ecc-jsbn: 0.1.2 - getpass: 0.1.7 - jsbn: 0.1.1 - safer-buffer: 2.1.2 - tweetnacl: 0.14.5 - dev: true - engines: - node: '>=0.10.0' - hasBin: true - resolution: - integrity: sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== - /stack-trace/0.0.9: - dev: true - resolution: - integrity: sha1-qPbq7KkGdMMz58Q5U/J1tFFRBpU= - /static-eval/2.1.0: - dependencies: - escodegen: 1.14.3 - dev: true - resolution: - integrity: sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw== - /stdout-stream/1.4.1: - dependencies: - readable-stream: 2.3.7 - dev: true - resolution: - integrity: sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== - /stream-shift/1.0.1: - dev: true - resolution: - integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== - /string-hash/1.1.3: - dev: true - resolution: - integrity: sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= - /string-width/1.0.2: - dependencies: - code-point-at: 1.1.0 - is-fullwidth-code-point: 1.0.0 - strip-ansi: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - /string-width/3.1.0: - dependencies: - emoji-regex: 7.0.3 - is-fullwidth-code-point: 2.0.0 - strip-ansi: 5.2.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - /string_decoder/0.10.31: - dev: true - resolution: - integrity: sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= - /string_decoder/1.1.1: - dependencies: - safe-buffer: 5.1.2 - dev: true - resolution: - integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - /strip-ansi/3.0.1: - dependencies: - ansi-regex: 2.1.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - /strip-ansi/5.2.0: - dependencies: - ansi-regex: 4.1.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - /strip-bom/2.0.0: - dependencies: - is-utf8: 0.2.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= - /strip-indent/1.0.1: - dependencies: - get-stdin: 4.0.1 - dev: true - engines: - node: '>=0.10.0' - hasBin: true - resolution: - integrity: sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= + /strip-indent/3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} dependencies: min-indent: 1.0.1 dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - /supports-color/2.0.0: + + /strip-json-comments/3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} dev: true - engines: - node: '>=0.8.0' - resolution: - integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + /supports-color/5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} dependencies: has-flag: 3.0.0 dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - /supports-color/6.1.0: - dependencies: - has-flag: 3.0.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + /supports-color/7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - /svelte-lazy/1.0.8_svelte@3.31.2: - dependencies: - svelte: 3.31.2 - dev: false + + /svelte-check/2.2.6_sass@1.40.1+svelte@3.42.5: + resolution: {integrity: sha512-oJux/afbmcZO+N+ADXB88h6XANLie8Y2rh2qBlhgfkpr2c3t/q/T0w2JWrHqagaDL8zeNwO8a8RVFBkrRox8gg==} + hasBin: true peerDependencies: - svelte: 3.x - resolution: - integrity: sha512-wWuDQo/6rWpkAQANI966+jy0mTmtXQsvtS97JL0EjK0EEbsw7NMa7/xpTOf3CpY8bgiQMvTTOqAh4vMG5j47lA== - /svelte-preprocess/4.6.1_f1d5d739eab137f4683f3cf6104542ab: + svelte: ^3.24.0 dependencies: - '@babel/core': 7.12.10 - '@types/pug': 2.0.4 - '@types/sass': 1.16.0 - detect-indent: 6.0.0 - node-sass: 5.0.0 - postcss: 8.2.4 - postcss-load-config: 3.0.0 - strip-indent: 3.0.0 - svelte: 3.31.2 + chalk: 4.1.2 + chokidar: 3.5.2 + fast-glob: 3.2.7 + import-fresh: 3.3.0 + minimist: 1.2.5 + sade: 1.7.4 + source-map: 0.7.3 + svelte: 3.42.5 + svelte-preprocess: 4.9.4_880c3b2362d6b02a01dcd3cbdf5b476b + typescript: 4.4.3 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - node-sass + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss dev: true - engines: - node: '>= 9.11.2' + + /svelte-hmr/0.14.7_svelte@3.42.5: + resolution: {integrity: sha512-pDrzgcWSoMaK6AJkBWkmgIsecW0GChxYZSZieIYfCP0v2oPyx2CYU/zm7TBIcjLVUPP714WxmViE9Thht4etog==} + peerDependencies: + svelte: '>=3.19.0' + dependencies: + svelte: 3.42.5 + dev: true + + /svelte-preprocess/4.9.4_880c3b2362d6b02a01dcd3cbdf5b476b: + resolution: {integrity: sha512-Z0mUQBGtE+ZZSv/HerRSHe7ukJokxjiPeHe7iPOIXseEoRw51H3K/Vh6OMIMstetzZ11vWO9rCsXSD/uUUArmA==} + engines: {node: '>= 9.11.2'} + requiresBuild: true peerDependencies: '@babel/core': ^7.10.2 coffeescript: ^2.5.1 less: ^3.11.3 node-sass: '*' postcss: ^7 || ^8 - postcss-load-config: ^2.1.0 + postcss-load-config: ^2.1.0 || ^3.0.0 pug: ^3.0.0 sass: ^1.26.8 stylus: ^0.54.7 @@ -3844,320 +1382,129 @@ packages: optional: true typescript: optional: true - requiresBuild: true - resolution: - integrity: sha512-s7KdhR2pOsffyOzZIMEb315f6pfgeDnOWN47m6YKFeSEx3NMf/79Znc3vuG/Ai79SL/vsi86WDrjFPLGRfDesg== - /svelte/3.31.2: - dev: true - engines: - node: '>= 8' - resolution: - integrity: sha512-TxZGrXzX2ggFH3BIKY5fmbeMdJuZrMIMDYPMX6R9255bueuYIuVaBQSLUeY2oD7W4IdeqRZiAVGCjDw2POKBRA== - /swipe-listener/1.3.0: - dev: false - resolution: - integrity: sha512-8cOZEHn8I2aVjKiAiu4tprZAS6e0nTy4RjuN/cAALKU/8212u+dqT1cytWGIoWjVzVxVggIduUtuckrHGu6/8Q== - /tar/6.1.0: dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 3.1.3 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 + '@types/pug': 2.0.5 + '@types/sass': 1.16.1 + detect-indent: 6.1.0 + magic-string: 0.25.7 + sass: 1.40.1 + sorcery: 0.10.0 + strip-indent: 3.0.0 + svelte: 3.42.5 + typescript: 4.4.3 dev: true - engines: - node: '>= 10' - resolution: - integrity: sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA== - /terser/5.5.1: + + /svelte/3.42.5: + resolution: {integrity: sha512-+y9ivcwMojAb0e87W7vR/UP7go44zc/3gtEciIMb8CUoIkUx6UJmPloBvVuO9MDXoGkUZM5SHr5PbLze9fJQVw==} + engines: {node: '>= 8'} + dev: true + + /table/6.7.1: + resolution: {integrity: sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==} + engines: {node: '>=10.0.0'} dependencies: - commander: 2.20.3 - source-map: 0.7.3 - source-map-support: 0.5.19 + ajv: 8.6.3 + lodash.clonedeep: 4.5.0 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.2 + strip-ansi: 6.0.0 dev: true - engines: - node: '>=10' + + /text-table/0.2.0: + resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} + dev: true + + /tiny-glob/0.2.9: + resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + dependencies: + globalyzer: 0.1.0 + globrex: 0.1.2 + dev: true + + /to-regex-range/5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /tslib/1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + + /tslib/2.3.1: + resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} + dev: true + + /tsutils/3.21.0_typescript@4.4.3: + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 4.4.3 + dev: true + + /type-check/0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-fest/0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /typescript/4.4.3: + resolution: {integrity: sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==} + engines: {node: '>=4.2.0'} hasBin: true - resolution: - integrity: sha512-6VGWZNVP2KTUcltUQJ25TtNjx/XgdDsBDKGt8nN0MpydU36LmbPPcMBd2kmtZNNGVVDLg44k7GKeHHj+4zPIBQ== - /through2/0.6.5: - dependencies: - readable-stream: 1.0.34 - xtend: 4.0.2 dev: true - resolution: - integrity: sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg= - /through2/2.0.5: - dependencies: - readable-stream: 2.3.7 - xtend: 4.0.2 - dev: true - resolution: - integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - /to-fast-properties/2.0.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= - /totalist/1.1.0: - dev: false - engines: - node: '>=6' - resolution: - integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== - /tough-cookie/2.5.0: - dependencies: - psl: 1.8.0 - punycode: 2.1.1 - dev: true - engines: - node: '>=0.8' - resolution: - integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - /trim-newlines/1.0.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-WIeWa7WCpFA6QetST301ARgVphM= - /trouter/3.1.0: - dependencies: - regexparam: 1.3.0 - dev: false - engines: - node: '>=6' - resolution: - integrity: sha512-3Swwu638QQWOefHLss9cdyLi5/9BKYmXZEXpH0KOFfB9YZwUAwHbDAcoYxaHfqAeFvbi/LqAK7rGkhCr1v1BJA== - /true-case-path/1.0.3: - dependencies: - glob: 7.1.6 - dev: true - resolution: - integrity: sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== - /tunnel-agent/0.6.0: - dependencies: - safe-buffer: 5.2.1 - dev: true - resolution: - integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= - /tweetnacl/0.14.5: - dev: true - resolution: - integrity: sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= - /type-check/0.3.2: - dependencies: - prelude-ls: 1.1.2 - dev: true - engines: - node: '>= 0.8.0' - resolution: - integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - /typedarray/0.0.6: - dev: true - resolution: - integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= - /uglify-js/3.12.4: - dev: true - engines: - node: '>=0.8.0' - hasBin: true - resolution: - integrity: sha512-L5i5jg/SHkEqzN18gQMTWsZk3KelRsfD1wUVNqtq0kzqWQqcJjyL8yc1o8hJgRrWqrAl2mUFbhfznEIoi7zi2A== - /unicode-canonical-property-names-ecmascript/1.0.4: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== - /unicode-match-property-ecmascript/1.0.4: - dependencies: - unicode-canonical-property-names-ecmascript: 1.0.4 - unicode-property-aliases-ecmascript: 1.1.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== - /unicode-match-property-value-ecmascript/1.2.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== - /unicode-property-aliases-ecmascript/1.1.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== - /uniq/1.0.1: - dev: true - resolution: - integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= - /upper-case/1.1.3: - dev: true - resolution: - integrity: sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= + /uri-js/4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.1.1 dev: true - resolution: - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - /util-deprecate/1.0.2: - dev: true - resolution: - integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - /uuid/3.4.0: + + /v8-compile-cache/2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} dev: true + + /vite/2.5.7: + resolution: {integrity: sha512-hyUoWmRPhjN1aI+ZSBqDINKdIq7aokHE2ZXiztOg4YlmtpeQtMwMeyxv6X9YxHZmvGzg/js/eATM9Z1nwyakxg==} + engines: {node: '>=12.2.0'} hasBin: true - resolution: - integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - /validate-npm-package-license/3.0.4: dependencies: - spdx-correct: 3.1.1 - spdx-expression-parse: 3.0.1 + esbuild: 0.12.27 + postcss: 8.3.6 + resolve: 1.20.0 + rollup: 2.56.3 + optionalDependencies: + fsevents: 2.3.2 dev: true - resolution: - integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - /vary/1.1.2: - dev: false - engines: - node: '>= 0.8' - resolution: - integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= - /verror/1.10.0: - dependencies: - assert-plus: 1.0.0 - core-util-is: 1.0.2 - extsprintf: 1.3.0 - dev: true - engines: - '0': node >=0.6.0 - resolution: - integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= - /which-module/2.0.0: - dev: true - resolution: - integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + /which/2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true dependencies: isexe: 2.0.0 dev: true - engines: - node: '>= 8' - hasBin: true - resolution: - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - /wide-align/1.1.3: - dependencies: - string-width: 1.0.2 - dev: true - resolution: - integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + /word-wrap/1.2.3: + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + engines: {node: '>=0.10.0'} dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - /wrap-ansi/5.1.0: - dependencies: - ansi-styles: 3.2.1 - string-width: 3.1.0 - strip-ansi: 5.2.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + /wrappy/1.0.2: + resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} dev: true - resolution: - integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - /xtend/2.2.0: - dev: true - engines: - node: '>=0.4' - resolution: - integrity: sha1-7vax8ZjByN6vrYsXZaBNrUoBxak= - /xtend/4.0.2: - dev: true - engines: - node: '>=0.4' - resolution: - integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - /y18n/4.0.1: - dev: true - resolution: - integrity: sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== + /yallist/4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true - resolution: - integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - /yaml/1.10.0: - dev: true - engines: - node: '>= 6' - resolution: - integrity: sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== - /yargs-parser/13.1.2: - dependencies: - camelcase: 5.3.1 - decamelize: 1.2.0 - dev: true - resolution: - integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== - /yargs/13.3.2: - dependencies: - cliui: 5.0.0 - find-up: 3.0.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - require-main-filename: 2.0.0 - set-blocking: 2.0.0 - string-width: 3.1.0 - which-module: 2.0.0 - y18n: 4.0.1 - yargs-parser: 13.1.2 - dev: true - resolution: - integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== -specifiers: - '@babel/core': ^7.12.10 - '@babel/plugin-syntax-dynamic-import': ^7.8.3 - '@babel/plugin-transform-runtime': ^7.12.10 - '@babel/preset-env': ^7.12.11 - '@babel/runtime': ^7.12.5 - '@rollup/plugin-alias': ^3.1.1 - '@rollup/plugin-babel': ^5.2.2 - '@rollup/plugin-commonjs': 17.0.0 - '@rollup/plugin-node-resolve': ^11.1.0 - '@rollup/plugin-replace': ^2.3.4 - animejs: ^3.2.1 - autoprefixer: ^10.2.1 - compression: ^1.7.4 - dotenv: ^8.2.0 - imagesloaded: ^4.1.4 - lazysizes: ^5.3.0 - node-fetch: ^2.6.1 - node-sass: ^5.0.0 - normalize.css: ^8.0.1 - polka: ^1.0.0-next.11 - postcss: ^8.2.4 - postcss-load-config: ^3.0.0 - postcss-preset-env: ^6.7.0 - rellax: ^1.12.1 - rollup: ^2.36.2 - rollup-plugin-glslify: ^1.2.0 - rollup-plugin-svelte: ^7.0.0 - rollup-plugin-terser: ^7.0.2 - sapper: ^0.28.10 - scroll-out: ^2.2.12 - sirv: ^1.0.10 - svelte: ^3.31.2 - svelte-lazy: ^1.0.8 - svelte-preprocess: ^4.6.1 - swipe-listener: ^1.3.0 diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 5533436..0000000 --- a/postcss.config.js +++ /dev/null @@ -1,30 +0,0 @@ -const pkg = require('./package.json') -const dev = process.env.NODE_ENV === 'development' - -module.exports = () => ({ - plugins: [ - // Preset Env - require('postcss-preset-env')({}), - - // Autoprefixer - require('autoprefixer')({}), - - // Extract media queries - // require('postcss-combine-media-query')({}), - - // CSS Nano - !dev && require('cssnano')({ - preset: ['default', { - autoprefixer: true, - discardComments: { removeAll: true }, - calc: { precision: 2 }, - safe: true - }] - }), - - // Banner - !dev && require('postcss-banner')({ - banner: `${pkg.name} v${pkg.version} \nBy ${pkg.author.name} \n${pkg.author.url}` - }) - ] -}) \ No newline at end of file diff --git a/rollup.config.js b/rollup.config.js deleted file mode 100644 index d8ddec6..0000000 --- a/rollup.config.js +++ /dev/null @@ -1,152 +0,0 @@ -import path from 'path' -import resolve from '@rollup/plugin-node-resolve' -import alias from '@rollup/plugin-alias' -import replace from '@rollup/plugin-replace' -import commonjs from '@rollup/plugin-commonjs' -import babel from '@rollup/plugin-babel' -import svelte from 'rollup-plugin-svelte' -import autoPreprocess from 'svelte-preprocess' -import { terser } from 'rollup-plugin-terser' -import glslify from 'rollup-plugin-glslify' -import config from 'sapper/config/rollup' -import { config as dotenv } from 'dotenv' -import pkg from './package.json' - -// Define environment and things -const mode = process.env.NODE_ENV -const dev = mode === 'development' -const legacy = !!process.env.SAPPER_LEGACY_BUILD -const replaceOptions = { - 'process.env.NODE_ENV': JSON.stringify(mode), - 'process.env.CONFIG': JSON.stringify(dotenv().parsed) -} - -// Svelte -const onwarn = (warning, onwarn) => (warning.code === 'MISSING_EXPORT' && /'preload'/.test(warning.message)) || (warning.code === 'CIRCULAR_DEPENDENCY' && /[/\\]@sapper[/\\]/.test(warning.message)) || onwarn(warning) - -// Preprocessors -const preprocess = autoPreprocess({ - scss: { - includePaths: ['src', 'node_modules'], - renderSync: true - }, - postcss: true -}) - -// Resolve and Alias -const resolveExtensions = ['.mjs', '.js', '.svelte', '.scss', '.json', '.html'] -const aliases = alias({ - resolve: resolveExtensions, - entries: [ - { find: 'utils', replacement: path.resolve(__dirname, 'src/utils') }, - { find: 'animations', replacement: path.resolve(__dirname, 'src/animations') }, - { find: 'atoms', replacement: path.resolve(__dirname, 'src/atoms') }, - { find: 'molecules', replacement: path.resolve(__dirname, 'src/molecules') }, - { find: 'organisms', replacement: path.resolve(__dirname, 'src/organisms') }, - { find: 'globe', replacement: path.resolve(__dirname, 'src/globe') }, - ] -}) - - -export default { - /* - ** Client - */ - client: { - input: config.client.input(), - output: config.client.output(), - plugins: [ - // Javascript - replace({ - 'process.browser': true, - ...replaceOptions - }), - svelte({ - preprocess, - emitCss: true, - compilerOptions: { - dev, - hydratable: true, - } - }), - aliases, - glslify(), - resolve({ - browser: true, - extensions: resolveExtensions, - dedupe: ['svelte'] - }), - commonjs(), - legacy && babel({ - extensions: resolveExtensions, - babelHelpers: 'runtime', - exclude: ['node_modules/@babel/**'] - }), - - // Compress Javascript - !dev && terser({ - module: true - }), - ], - preserveEntrySignatures: false, - onwarn, - }, - - - /* - ** Server - */ - server: { - input: config.server.input(), - output: config.server.output(), - plugins: [ - replace({ - 'process.browser': false, - ...replaceOptions - }), - svelte({ - preprocess, - emitCss: false, - compilerOptions: { - generate: 'ssr', - hydratable: true, - dev, - } - }), - aliases, - glslify(), - resolve({ - extensions: resolveExtensions, - dedupe: ['svelte'] - }), - commonjs() - ], - external: Object.keys(pkg.dependencies).concat(require('module').builtinModules), - preserveEntrySignatures: 'strict', - onwarn, - }, - - - /* - ** Service worker - */ - // ...(!dev && { - // serviceworker: { - // input: config.serviceworker.input(), - // output: config.serviceworker.output(), - // plugins: [ - // resolve(), - // replace({ - // 'process.browser': false, - // ...replaceOptions - // }), - // aliases, - // glslify(), - // commonjs(), - // !dev && terser() - // ], - // preserveEntrySignatures: false, - // onwarn, - // } - // }) -} diff --git a/src/animations/Carousel.js b/src/animations/Carousel.js deleted file mode 100644 index f0c018c..0000000 --- a/src/animations/Carousel.js +++ /dev/null @@ -1,76 +0,0 @@ -import anime from 'animejs' -import ScrollOut from 'scroll-out' -import { animDuration, animDelay } from 'utils/store' - - -/* -** Transition In -*/ -export const animateIn = scope => { - const tl = anime.timeline({ - easing: 'easeOutQuart', - duration: animDuration, - autoplay: false - }) - - // Carousel - tl.add({ - targets: scope, - translateY: [window.innerWidth <= 768 ? 16 : 32, 0], - translateZ: [0, 0], - opacity: [0, 1], - complete: event => event.animatables[0].target.removeAttribute('style') - }) - - // Photo: Active - tl.add({ - targets: scope.querySelector('.is-active picture'), - translateY: [8, 0], - translateZ: [0, 0], - complete: event => event.animatables[0].target.removeAttribute('style') - }, 100) - - // Photo: Prev - tl.add({ - targets: scope.querySelector('.is-prev picture'), - translateY: [8, 0], - translateX: [64, 0], - translateZ: [0, 0], - rotate: window.innerWidth >= 768 ? [-2, 0] : [0, 0], - complete: event => event.animatables[0].target.removeAttribute('style') - }, 100) - - // Photo: Next - tl.add({ - targets: scope.querySelector('.is-next picture'), - translateY: [8, 0], - translateX: [-48, 0], - translateZ: [0, 0], - rotate: window.innerWidth >= 768 ? [2, 0] : [0, 0], - complete: event => event.animatables[0].target.removeAttribute('style') - }, 100) - - // Reveal on scroll - let visible = false - setTimeout(() => { - const carouselReveal = ScrollOut({ - once: true, - targets: scope, - onChange: (el, ctx) => { - if (ctx.visible === 0) { - visible = true - } - }, - onShown: (el, ctx) => { - // If revealed on scroll, no delay - if (visible) { - setTimeout(() => tl.restart(), 10) - } - // If revealed on load, add a delay - else { - setTimeout(() => tl.restart(), animDelay * 2) - } - } - }) - }, 10) -} \ No newline at end of file diff --git a/src/animations/Locations.js b/src/animations/Locations.js deleted file mode 100644 index ebbbd2b..0000000 --- a/src/animations/Locations.js +++ /dev/null @@ -1,58 +0,0 @@ -import anime from 'animejs' -import ScrollOut from 'scroll-out' -import { animDurationLong } from 'utils/store' - - -/* -** Transition In -*/ -export const animateIn = scope => { - let delay = 0 - - // Each location (reveal on scroll) - scope.querySelectorAll('.location').forEach(location => { - const tl = anime.timeline({ - easing: 'easeOutQuart', - duration: 600, - autoplay: false, - delay, - complete: () => { - // Reset delay - delay = 0 - } - }) - - // Image - tl.add({ - targets: location.querySelector('img'), - scale: [1.3, 1], - opacity: [0, 1], - translateZ: [0, 0], - duration: 1800 - }, 100) - - // Name - tl.add({ - targets: location.querySelector('h3'), - translateY: ['100%', 0], - translateZ: [0, 0], - }, 150) - - // Country - tl.add({ - targets: location.querySelector('p'), - translateY: ['100%', 0], - translateZ: [0, 0] - }, 200) - - // Increase delay between locations - delay += 65 - - // Scroll reveal - ScrollOut({ - once: true, - targets: location, - onShown: () => tl.restart() - }) - }) -} diff --git a/src/animations/Photo.js b/src/animations/Photo.js deleted file mode 100644 index 0e39fdb..0000000 --- a/src/animations/Photo.js +++ /dev/null @@ -1,95 +0,0 @@ -import anime from 'animejs' -import ScrollOut from 'scroll-out' -import imagesLoaded from 'imagesloaded' -import { throttle, parallaxAnime } from 'utils/functions' -import { animDuration } from 'utils/store' - - -/* -** Transition In -*/ -export const animateIn = scope => { - const tlLocation = anime.timeline({ - easing: 'easeOutQuart', - duration: 1000, - autoplay: false - }) - // Title - tlLocation.add({ - targets: scope.querySelectorAll('.photo__location .line span'), - translateY: ['120%', 0], - translateZ: [0, 0], - delay: anime.stagger(120) - }, 200) - // Description - tlLocation.add({ - targets: scope.querySelectorAll('.photo__location p'), - opacity: [0, 1], - duration: animDuration - }, 400) - - // Reveal on scroll - const locationScroll = ScrollOut({ - once: true, - targets: scope, - onShown: () => tlLocation.restart() - }) - - - // Image (reveal on scroll) - const photoImage = scope.querySelector('.photo__image') - const photoReveal = anime.timeline({ - easing: 'easeOutQuart', - duration: 2000, - autoplay: false - }) - photoReveal.add({ - targets: scope.querySelector('.photo__picture'), - opacity: [0, 1] - }, 50) - photoReveal.add({ - targets: scope.querySelector('.photo__picture img'), - scale: [1.12, 1], - translateZ: [0, 0] - }, 50) - - // Show photo when image is loaded - imagesLoaded(photoImage, instance => { - const photoScroll = ScrollOut({ - once: true, - targets: photoImage, - onShown: () => photoReveal.restart() - }) - }) - - - // Number parallax on scroll - const media768 = window.matchMedia('(min-width: 768px)') - const number = scope.querySelector('.photo__number') - const numberPallax = anime({ - targets: number.querySelector('span'), - translateY: (window.innerWidth <= 768) ? ['0%', '20%'] : ['-20%', '20%'], - easing: 'linear', - duration: 2000, - autoplay: false - }) - const numberPallaxAnime = () => parallaxAnime(number, numberPallax) - const numberPallaxScroll = matchMedia => { - if (matchMedia.matches) { - const scroll = ScrollOut({ - targets: scope, - onShown: () => { - window.addEventListener('scroll', throttle(numberPallaxAnime, 50)) - requestAnimationFrame(numberPallaxAnime) - }, - onHidden: () => { - if (parallaxAnime) window.removeEventListener('scroll', parallaxAnime) - } - }) - } - } - - // Listen on screen size to run the function - media768.addListener(numberPallaxAnime) - numberPallaxScroll(media768) -} diff --git a/src/animations/TitleSite.js b/src/animations/TitleSite.js deleted file mode 100644 index 98cafec..0000000 --- a/src/animations/TitleSite.js +++ /dev/null @@ -1,31 +0,0 @@ -import anime from 'animejs' -import ScrollOut from 'scroll-out' -import { firstLoad, animDurationLong, animDelay } from 'utils/store' - -let firstLoadValue -firstLoad.subscribe(store => firstLoadValue = store) - -/* -** Transition In -*/ -export const animateIn = (scope, init) => { - // Stagger each letters and words - const letters = anime({ - targets: scope.querySelectorAll('span, em span'), - translateY: ['100%', 0], - translateZ: [0, 0], - easing: 'easeOutQuart', - duration: 1000, - delay: anime.stagger(40, { start: init ? 0 : (firstLoadValue) ? animDurationLong : animDelay }), - autoplay: false - }) - - // On scroll animation - requestAnimationFrame(() => { - const title = ScrollOut({ - once: true, - targets: scope, - onShown: () => requestAnimationFrame(() => letters.restart()) - }) - }) -} diff --git a/src/animations/Transition.js b/src/animations/Transition.js deleted file mode 100644 index 9a330ec..0000000 --- a/src/animations/Transition.js +++ /dev/null @@ -1,16 +0,0 @@ -import { quartInOut } from 'svelte/easing' - - -/* -** Animation Out: Background -*/ -export const panelBackgroundOut = (node, params) => { - return { - delay: params.delay || 0, - duration: params.duration || 400, - easing: params.easing || quartInOut, - css: (t, u) => ` - transform: scaleY(${t}) - ` - } -} diff --git a/src/animations/crossfade.js b/src/animations/crossfade.js deleted file mode 100644 index f5e165f..0000000 --- a/src/animations/crossfade.js +++ /dev/null @@ -1,25 +0,0 @@ -import { crossfade } from 'svelte/transition' -import { quartOut } from 'svelte/easing' - -// Crossfade transition -export const [send, receive] = crossfade({ - duration: d => Math.sqrt(d * 200), - fallback: (node, params) => { - const { - duration = 600, - easing = quartOut, - start = 0.85 - } = params - const style = getComputedStyle(node) - const transform = style.transform === 'none' ? '' : style.transform - const sd = 1 - start - return { - duration, - easing, - css: (t, u) => ` - transform: ${transform} scale(${1 - (sd * u)}); - opacity: ${t} - ` - } - } -}) diff --git a/src/animations/index.js b/src/animations/index.js deleted file mode 100644 index ccbd1fe..0000000 --- a/src/animations/index.js +++ /dev/null @@ -1,93 +0,0 @@ -import anime from 'animejs' -import ScrollOut from 'scroll-out' -import { animDuration, animDelay } from 'utils/store' -import { throttle, parallaxAnime } from 'utils/functions' - - -/* -** Transition In -*/ -export const animateIn = () => { - // Title: Houses - const titleHouses = anime({ - targets: document.querySelectorAll('#title-houses span'), - translateY: ['-70%', 0], - translateZ: [0, 0], - easing: 'easeOutQuart', - delay: anime.stagger(80, { start: animDelay }), - duration: animDuration - }) - - // Title: Parallax on scroll - const translate = anime({ - targets: '#title-houses', - translateX: window.innerWidth <= 1920 ? ['25%', '-15%'] : ['7%', '-7%'], - translateZ: [0, 0], - easing: 'linear', - duration: animDuration, - autoplay: false - }) - window.addEventListener('scroll', throttle(() => parallaxAnime(document.getElementById('title-houses'), translate), 5)) - requestAnimationFrame(() => parallaxAnime(document.getElementById('title-houses'), translate)) - - // Intro: Description - const introDescription = anime({ - targets: document.getElementById('intro-description').querySelectorAll('p, a'), - opacity: [0, 1], - translateY: [8, 0], - translateZ: [0, 0], - easing: 'easeOutQuart', - duration: animDuration, - delay: anime.stagger(200, { start: animDelay + 200 }) - }) - - // Title: Of (reveal on scroll) - const titleOf = document.getElementById('title-of') - const titleOfReveal = anime({ - targets: titleOf.querySelectorAll('span'), - translateY: ['100%', 0], - translateZ: [0, 0], - easing: 'easeOutQuart', - delay: anime.stagger(70), - duration: animDuration, - autoplay: false - }) - const titleOfScroll = ScrollOut({ - once: true, - targets: titleOf, - onShown: () => titleOfReveal.restart() - }) - - // Title: World (reveal on scroll) - const titleWorld = document.getElementById('title-world') - const titleWorldReveal = anime({ - targets: titleWorld.querySelectorAll('span'), - translateY: ['100%', 0], - translateZ: [0, 0], - easing: 'easeOutQuart', - delay: anime.stagger(70), - duration: animDuration, - autoplay: false - }) - const titleWorldParallax = anime({ - targets: titleWorld, - translateX: ['5%', '-3%'], - translateZ: [0, 0], - easing: 'linear', - duration: animDuration, - autoplay: false - }) - const titleWorldAnime = () => parallaxAnime(titleWorld, titleWorldParallax) - const titleWorldScroll = ScrollOut({ - once: true, - targets: titleWorld, - onShown: () => { - titleWorldReveal.restart() - window.addEventListener('scroll', throttle(titleWorldAnime, 10)) - requestAnimationFrame(titleWorldAnime) - }, - onHidden: () => { - if (parallaxAnime) window.removeEventListener('scroll', parallaxAnime) - } - }) -} diff --git a/src/animations/page.js b/src/animations/page.js deleted file mode 100644 index 5a72e78..0000000 --- a/src/animations/page.js +++ /dev/null @@ -1,22 +0,0 @@ -import anime from 'animejs' -import { animDuration, animDelay } from 'utils/store' - - -/* -** Transition In -*/ -export const animateIn = () => { - const tl = anime.timeline({ - easing: 'easeOutQuart', - duration: animDuration - }) - - // Simple slide and fade on each part of the page - tl.add({ - targets: document.querySelectorAll('.page__part, .globe'), - opacity: [0, 1], - translateY: [8, 0], - translateZ: [0, 0], - delay: anime.stagger(200, { start: animDelay }) - }) -} diff --git a/src/animations/place.js b/src/animations/place.js deleted file mode 100644 index 3d012ca..0000000 --- a/src/animations/place.js +++ /dev/null @@ -1,62 +0,0 @@ -import anime from 'animejs' -import Rellax from 'rellax' -import { animDuration, animDelay } from 'utils/store' - - -/* -** Transition In -*/ -export const animateIn = () => { - const tl = anime.timeline({ - duration: animDuration, - delay: animDelay, // Delay in AnimeJS waits to run but sets the starting style as opposed to a setTimeout - easing: 'easeOutQuart' - }) - - // Title: Houses - tl.add({ - targets: '.place__title_houses', - translateY: ['150%', 0], - translateZ: [0, 0] - }) - // Title: Of - tl.add({ - targets: '.place__title_of', - opacity: [0, 1] - }, 600) - // Title: Place name - tl.add({ - targets: '.place__title_name', - translateY: ['150%', 0], - translateZ: [0, 0] - }, 150) - - // Switcher link - tl.add({ - targets: '.place__title .button-control', - scale: [0.95, 1], - opacity: [0, 1] - }, 500) - - // Illustration - tl.add({ - targets: '.place__illustration', - scale: [1.05, 1], - translateZ: [0, 0], - opacity: [0, 1] - }, 0) - - // Description - tl.add({ - targets: '.place__description', - opacity: [0, 1], - translateY: [24, 0], - translateZ: [0, 0] - }, 450) - - - /* - ** Parallax - */ - const rellax = new Rellax('[data-rellax-speed]') -} \ No newline at end of file diff --git a/src/animations/viewer.js b/src/animations/viewer.js deleted file mode 100644 index dd9b7dc..0000000 --- a/src/animations/viewer.js +++ /dev/null @@ -1,40 +0,0 @@ -import anime from 'animejs' -import { animDuration, animDelay } from 'utils/store' - - -/* -** Transition In -*/ -export const animateIn = () => { - const viewer = document.querySelector('.viewer') - - const tl = anime.timeline({ - easing: 'easeOutQuart', - duration: animDuration, - delay: 1400 - }) - - // Carousel: Number - tl.add({ - targets: viewer.querySelector('.counter'), - opacity: [0, 1], - translateY: [window.innerWidth >= 768 ? -24 : 24, 0] - }, 0) - - // Dots - tl.add({ - targets: viewer.querySelectorAll('.carousel__dots'), - translateY: [16, 0], - translateZ: [0, 0], - opacity: [0, 1] - }, 150) - - // Buttons - tl.add({ - targets: viewer.querySelectorAll('.tip, .viewer__buttons a'), - translateY: [-32, 0], - translateZ: [0, 0], - opacity: [0, 1], - delay: anime.stagger(120), - }, 400) -} diff --git a/src/template.html b/src/app.html similarity index 53% rename from src/template.html rename to src/app.html index 932ebba..456e4c4 100644 --- a/src/template.html +++ b/src/app.html @@ -1,23 +1,19 @@ - + - + - - - - %sapper.base% - %sapper.head% - %sapper.scripts% - %sapper.styles% + + + %svelte.head% - %sapper.html% +
%svelte.body%
\ No newline at end of file diff --git a/src/atoms/Badge.svelte b/src/atoms/Badge.svelte deleted file mode 100644 index 8855fb5..0000000 --- a/src/atoms/Badge.svelte +++ /dev/null @@ -1,9 +0,0 @@ - - -
- {text} -
\ No newline at end of file diff --git a/src/atoms/Button.svelte b/src/atoms/Button.svelte deleted file mode 100644 index 9fbf465..0000000 --- a/src/atoms/Button.svelte +++ /dev/null @@ -1,23 +0,0 @@ - - -{#if type === 'button'} - - -{:else} - - -
- {text} -
-
-{/if} diff --git a/src/atoms/Counter.svelte b/src/atoms/Counter.svelte deleted file mode 100644 index ce47846..0000000 --- a/src/atoms/Counter.svelte +++ /dev/null @@ -1,47 +0,0 @@ - - - - -
- {#each digits as digit} -
- {#each numbers as number} - {number} - {/each} -
- {/each} -
diff --git a/src/atoms/IconArrow.svelte b/src/atoms/IconArrow.svelte deleted file mode 100644 index abecc94..0000000 --- a/src/atoms/IconArrow.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - - - {#if direction === 'left'} - - {:else if direction === 'right'} - - {/if} - diff --git a/src/atoms/IconCross.svelte b/src/atoms/IconCross.svelte deleted file mode 100644 index 4e9aa9b..0000000 --- a/src/atoms/IconCross.svelte +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/src/atoms/IconGlobe.svelte b/src/atoms/IconGlobe.svelte deleted file mode 100644 index 28dd020..0000000 --- a/src/atoms/IconGlobe.svelte +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/atoms/IconGlobeSmall.svelte b/src/atoms/IconGlobeSmall.svelte deleted file mode 100644 index 878053b..0000000 --- a/src/atoms/IconGlobeSmall.svelte +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/atoms/IconZoomOut.svelte b/src/atoms/IconZoomOut.svelte deleted file mode 100644 index 6c67312..0000000 --- a/src/atoms/IconZoomOut.svelte +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/src/atoms/LinkChange.svelte b/src/atoms/LinkChange.svelte deleted file mode 100644 index 16ba895..0000000 --- a/src/atoms/LinkChange.svelte +++ /dev/null @@ -1,12 +0,0 @@ - - - - {text} - - - - diff --git a/src/atoms/LinkTranslate.svelte b/src/atoms/LinkTranslate.svelte deleted file mode 100644 index 82d2548..0000000 --- a/src/atoms/LinkTranslate.svelte +++ /dev/null @@ -1,15 +0,0 @@ - - - - -
- {text} -
-
\ No newline at end of file diff --git a/src/atoms/TitleSite.svelte b/src/atoms/TitleSite.svelte deleted file mode 100644 index 27965cd..0000000 --- a/src/atoms/TitleSite.svelte +++ /dev/null @@ -1,42 +0,0 @@ - - -
-
-
- {@html charsToSpan('Houses')} -
-
- - - of - the - - -
-
- {@html charsToSpan('World')} -
-
-
diff --git a/src/atoms/ToggleLayout.svelte b/src/atoms/ToggleLayout.svelte deleted file mode 100644 index 6d5b3ac..0000000 --- a/src/atoms/ToggleLayout.svelte +++ /dev/null @@ -1,89 +0,0 @@ - - -
- - - - - -
diff --git a/src/client.js b/src/client.js deleted file mode 100644 index 5c251df..0000000 --- a/src/client.js +++ /dev/null @@ -1,6 +0,0 @@ -import * as sapper from '@sapper/app' - -// Start Sapper -sapper.start({ - target: document.body -}) diff --git a/src/components/Metas.svelte b/src/components/Metas.svelte new file mode 100644 index 0000000..4cbe6f8 --- /dev/null +++ b/src/components/Metas.svelte @@ -0,0 +1,25 @@ + + + + {title} + + + + + + + {#if url} + + {/if} + + + + \ No newline at end of file diff --git a/src/components/molecules/Location.svelte b/src/components/molecules/Location.svelte new file mode 100644 index 0000000..b8c4994 --- /dev/null +++ b/src/components/molecules/Location.svelte @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/src/components/organisms/Locations.svelte b/src/components/organisms/Locations.svelte new file mode 100644 index 0000000..16fbd9d --- /dev/null +++ b/src/components/organisms/Locations.svelte @@ -0,0 +1,27 @@ + + +
+
+

Browse all the cities and countries

+
+ +
    +
  • +
  • +
+ +
+ {#each locations as location (location.id)} + + {/each} +
+
\ No newline at end of file diff --git a/src/global.d.ts b/src/global.d.ts new file mode 100644 index 0000000..63908c6 --- /dev/null +++ b/src/global.d.ts @@ -0,0 +1 @@ +/// diff --git a/src/molecules/InteractiveGlobe.svelte b/src/molecules/InteractiveGlobe.svelte deleted file mode 100644 index 6d793c5..0000000 --- a/src/molecules/InteractiveGlobe.svelte +++ /dev/null @@ -1,112 +0,0 @@ - - - - -{#if type === 'part'} -
-
-
-{:else} -
-{/if} \ No newline at end of file diff --git a/src/molecules/Location.svelte b/src/molecules/Location.svelte deleted file mode 100644 index c2b295d..0000000 --- a/src/molecules/Location.svelte +++ /dev/null @@ -1,30 +0,0 @@ - - - diff --git a/src/molecules/NewsletterForm.svelte b/src/molecules/NewsletterForm.svelte deleted file mode 100644 index 849e75d..0000000 --- a/src/molecules/NewsletterForm.svelte +++ /dev/null @@ -1,41 +0,0 @@ - - -
- {#if title} -

- -

- {/if} - - - - - - - - -
\ No newline at end of file diff --git a/src/molecules/PaginationDots.svelte b/src/molecules/PaginationDots.svelte deleted file mode 100644 index bc47ce4..0000000 --- a/src/molecules/PaginationDots.svelte +++ /dev/null @@ -1,22 +0,0 @@ - - -
    - {#each photos as dot, index} -
  1. currentIndex + 2} - class:hidden={index < currentIndex - 3 || index > currentIndex + 3} - on:click={() => dispatch('goToIndex', index)} - > - -
  2. - {/each} -
diff --git a/src/molecules/Photo.svelte b/src/molecules/Photo.svelte deleted file mode 100644 index b014625..0000000 --- a/src/molecules/Photo.svelte +++ /dev/null @@ -1,75 +0,0 @@ - - -
-
-
-

- {#each nameSplit as _, i} - - - {nameSplit[i]}{#if i < nameSplit.length - 1},{/if} - - - {/each} -

-

{city ? city : location.region}, {location.country.name}

-
-
- -
-
- - - - - - - {imgAlt} - - - -
- {photoIndex} -
-
-
-
diff --git a/src/molecules/Switcher.svelte b/src/molecules/Switcher.svelte deleted file mode 100644 index 7d7beaa..0000000 --- a/src/molecules/Switcher.svelte +++ /dev/null @@ -1,48 +0,0 @@ - - - diff --git a/src/organisms/Carousel.svelte b/src/organisms/Carousel.svelte deleted file mode 100644 index 5e76fb7..0000000 --- a/src/organisms/Carousel.svelte +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - -{#if viewer} - currentIndex = event.detail} -/> -{/if} diff --git a/src/organisms/Footer.svelte b/src/organisms/Footer.svelte deleted file mode 100644 index 65a8658..0000000 --- a/src/organisms/Footer.svelte +++ /dev/null @@ -1,47 +0,0 @@ - - -
-
- - - -
-
diff --git a/src/organisms/Fullscreen.svelte b/src/organisms/Fullscreen.svelte deleted file mode 100644 index 8a06037..0000000 --- a/src/organisms/Fullscreen.svelte +++ /dev/null @@ -1,80 +0,0 @@ - - -
-
- -
- -
- -
- -
-
diff --git a/src/organisms/Locations.svelte b/src/organisms/Locations.svelte deleted file mode 100644 index fada5d6..0000000 --- a/src/organisms/Locations.svelte +++ /dev/null @@ -1,72 +0,0 @@ - - -
-
-

Browse all the cities and countries

-
- -
    - {#if continentsToDisplay.length > 1} -
  • toggleContinents(e)}> -
  • - {/if} - {#each continentsToDisplay as continent} -
  • toggleContinents(e, continent)}> -
  • - {/each} -
- -
- {#each filteredLocations as location (location.id)} -
- -
- {/each} -
-
- - \ No newline at end of file diff --git a/src/organisms/Newsletter.svelte b/src/organisms/Newsletter.svelte deleted file mode 100644 index bf25df1..0000000 --- a/src/organisms/Newsletter.svelte +++ /dev/null @@ -1,22 +0,0 @@ - - - \ No newline at end of file diff --git a/src/organisms/Pagination.svelte b/src/organisms/Pagination.svelte deleted file mode 100644 index 7667bcf..0000000 --- a/src/organisms/Pagination.svelte +++ /dev/null @@ -1,67 +0,0 @@ - - -
- {#if photos.length && currentIndex < photos.length} -
pageTranslate = pageTranslate - (100 / pagesTotal) * 0.666} - on:mouseleave={() => pageTranslate = pageTranslate + (100 / pagesTotal) * 0.666} - rel="next" - > -
page
-
-
- {#each pagesArray as page} - {page} - {/each} -
-
- /{pagesTotal} -
-

See more photos

- - {:else if $currentLocation} -
- -
- {/if} -
diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte new file mode 100644 index 0000000..59af724 --- /dev/null +++ b/src/routes/__layout.svelte @@ -0,0 +1,57 @@ + + + + + \ No newline at end of file diff --git a/src/routes/_error.svelte b/src/routes/_error.svelte deleted file mode 100644 index 64bcbf4..0000000 --- a/src/routes/_error.svelte +++ /dev/null @@ -1,49 +0,0 @@ - - - - Houses Of - {error.message} - - -{#if process.env.NODE_ENV === 'development' && error.stack} -
-
{error.stack}
-
-{/if} - -
-
-
- - -
-

Oh no… Looks like something wrong just happened. Like a nasty error {status}.

-
-
- -
-
-
\ No newline at end of file diff --git a/src/routes/_layout.svelte b/src/routes/_layout.svelte deleted file mode 100644 index 9c95d45..0000000 --- a/src/routes/_layout.svelte +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - {#each preconnect as host} - - - {/each} - {#each preload.fonts as font} - - {/each} - - - - - - - \ No newline at end of file diff --git a/src/routes/choose.svelte b/src/routes/choose.svelte deleted file mode 100644 index d36147d..0000000 --- a/src/routes/choose.svelte +++ /dev/null @@ -1,81 +0,0 @@ - - - - {pageTitle} - - - - -
-
-
-
- - - - - -
- -
-

{$site.explore_globe}

-
-
- - {#if process.browser} - - - - {/if} - - -
- -
-
\ No newline at end of file diff --git a/src/routes/credits.svelte b/src/routes/credits.svelte deleted file mode 100644 index d12f805..0000000 --- a/src/routes/credits.svelte +++ /dev/null @@ -1,90 +0,0 @@ - - - - {pageTitle} - - - - -
-
-
-
- - - - - -
- -
-

{$site.credits_text}

-
- - {#if $site.credits_list} -
- {#each $site.credits_list as { title, credits }} -
-

{title}

- {#each credits as { name, role, website }, i} -
-
- {#if website} - - {:else} - {name} - {/if} -
-
{role}
-
- {/each} -
- {/each} -
- {/if} -
- - {#if process.browser} - - - - {/if} - -
-
-
\ No newline at end of file diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 91fe5dc..29140fa 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -1,137 +1,21 @@ - - - - - {$site.seo_name} - {$site.seo_title_default} across the globe - - - + - +

Houses Of

-
-
-
-
-

- {@html charsToSpan('Houses')} -

-
-
- -
-
-

{$site.description}

- - -
-
- - -
- -
-
-
- {@html charsToSpan('of')} -
-
- -
-

{$site.explore_globe}

-
- - {#if process.browser} - - - - {/if} - -
-

- {@html charsToSpan('World')} -

-
- - -
- -
-
\ No newline at end of file + \ No newline at end of file diff --git a/src/routes/location/[country]/[place].svelte b/src/routes/location/[country]/[place].svelte deleted file mode 100644 index d4a9b78..0000000 --- a/src/routes/location/[country]/[place].svelte +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - {$site.seo_name} – {$site.seo_title_default} of {location.name}, {country.name} - - - - - - -
-
-
-

- - Houses - of - - - {location.name} - -

- - -
- -
-
-
-

{$site.description}

- - {#if description} -

- Houses Of - - - - {description} -

- {/if} - - {#if photos.length} -

- Updated - -

- - - {/if} -
-
-
- - {#if illu_desktop || illu_desktop_2x || illu_mobile} -
-
-
-
-
- {/if} -
- -
-
- -
- - {#if photos} -
- {#each paginatedPhotos as photo} - - {/each} -
- - - - {:else} -
-

No photo for {location.name}

-
- {/if} -
- -
-
\ No newline at end of file diff --git a/src/routes/sitemap.xml.js b/src/routes/sitemap.xml.js deleted file mode 100644 index c7d968a..0000000 --- a/src/routes/sitemap.xml.js +++ /dev/null @@ -1,79 +0,0 @@ -const fs = require('fs') -const fetch = require('node-fetch') -import { apiEndpoints } from 'utils/store' -import { formatDate } from 'utils/functions' - - -// Variables -let baseURL -const pages = [''] - -// Get routes and push it to array -const routesExclude = ['sitemap', 'index', 'location', 'viewer'] -fs.readdirSync('./src/routes').forEach(file => { - const filename = file.split('.')[0] - if (!file.startsWith('.') && !filename.startsWith('_') && routesExclude.indexOf(filename) === -1) { - pages.push(filename) - } -}) - - -// Render function -const render = (pages, locations) => { - return ` - - ${pages.map(page => ` - - ${baseURL}/${page} - 0.75 - `).join('\n')} - - ${locations.map(loc => ` - - ${baseURL}/location/${loc.country.slug}/${loc.slug} - 1 - ${formatDate(loc.updated, 'DATETIME')} - weekly - `).join('\n') - } -` -} - -// Get function -export async function get (req, res, next) { - let locations - - // Define base url from request - baseURL = `https://${req.headers.host}` - - // Get locations - await fetch(`${apiEndpoints.rest}/items/locations?fields=slug,country.slug,modified_on&status=published&sort=created_on`) - .then(res => res.json()) - .then(res => { - locations = res.data - }) - - // Add last modified date to each location from its last photo - const updatedLocations = locations.map(async (location, i) => { - await fetch(`${apiEndpoints.rest}/items/photos?fields=created_on&limit=1&sort=-created_on&status=published&filter[location.slug][rlike]=%${location.slug}`) - .then(res => res.json()) - .then(res => { - const latestPhoto = res.data[0] - location.updated = latestPhoto ? latestPhoto.created_on : location.modified_on - }) - return location - }) - await Promise.all(updatedLocations) - - // Set headers - res.setHeader('Cache-Control', 'max-age=0, s-max-age=600') // 10 minutes - res.setHeader('Content-Type', 'application/rss+xml') - - // Render sitemap - const sitemap = render(pages, locations) - res.end(sitemap) -} \ No newline at end of file diff --git a/src/routes/subscribe.svelte b/src/routes/subscribe.svelte deleted file mode 100644 index deec625..0000000 --- a/src/routes/subscribe.svelte +++ /dev/null @@ -1,75 +0,0 @@ - - - - {pageTitle} - - - - -
-
-
-
- - - - - -
- - -
- - {#if process.browser} - - - - {/if} - -
-
-
\ No newline at end of file diff --git a/src/routes/viewer/[country]/[place]/[photo].svelte b/src/routes/viewer/[country]/[place]/[photo].svelte deleted file mode 100644 index 4317757..0000000 --- a/src/routes/viewer/[country]/[place]/[photo].svelte +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - {#if $currentLocation} - {$site.seo_name} – {$site.seo_title_default} of {$currentLocation.name}, {$currentLocation.country.name} - - - {/if} - - - - -
-
-
-

Tap for fullscreen

- -
- - = 768 ? 22 : 18} /> - - - - - {#if $currentLocation} - - - - {/if} -
- - -
- - - - -
-
\ No newline at end of file diff --git a/src/server.js b/src/server.js deleted file mode 100644 index b181b5e..0000000 --- a/src/server.js +++ /dev/null @@ -1,19 +0,0 @@ -import sirv from 'sirv' -import polka from 'polka' -import compression from 'compression' -import * as sapper from '@sapper/server' - -// Define environment -const { PORT, NODE_ENV } = process.env -const dev = NODE_ENV === 'development' - -// Setup server -polka() - .use( - compression({ threshold: 0 }), - sirv('static', { dev }), - sapper.middleware() - ) - .listen(PORT, err => { - if (err) console.log('error', err) - }) diff --git a/src/service-worker.js b/src/service-worker.js deleted file mode 100644 index 3ace7da..0000000 --- a/src/service-worker.js +++ /dev/null @@ -1,85 +0,0 @@ -import { timestamp, files, shell, routes } from '@sapper/service-worker' - -const ASSETS = `cache${timestamp}` - -// `shell` is an array of all the files generated by the bundler, -// `files` is an array of everything in the `static` directory -const to_cache = shell.concat(files) -const cached = new Set(to_cache) - -// Install -self.addEventListener('install', event => { - event.waitUntil( - caches - .open(ASSETS) - .then(cache => cache.addAll(to_cache)) - .then(() => { - self.skipWaiting() - }) - ) -}) - -// Activate -self.addEventListener('activate', event => { - event.waitUntil( - caches.keys().then(async keys => { - // delete old caches - for (const key of keys) { - if (key !== ASSETS) await caches.delete(key) - } - - self.clients.claim() - }) - ) -}) - -// Fetch -self.addEventListener('fetch', event => { - if (event.request.method !== 'GET' || event.request.headers.has('range')) return - - const url = new URL(event.request.url) - - // don't try to handle e.g. data: URIs - if (!url.protocol.startsWith('http')) return - - // ignore dev server requests - if (url.hostname === self.location.hostname && url.port !== self.location.port) return - - // always serve static files and bundler-generated assets from cache - if (url.host === self.location.host && cached.has(url.pathname)) { - event.respondWith(caches.match(event.request)) - return - } - - // for pages, you might want to serve a shell `service-worker-index.html` file, - // which Sapper has generated for you. It's not right for every - // app, but if it's right for yours then uncomment this section - /* - if (url.origin === self.origin && routes.find(route => route.pattern.test(url.pathname))) { - event.respondWith(caches.match('/service-worker-index.html')) - return - } - */ - - if (event.request.cache === 'only-if-cached') return - - // for everything else, try the network first, falling back to - // cache if the user is offline. (If the pages never change, you - // might prefer a cache-first approach to a network-first one.) - event.respondWith( - caches - .open(`offline${timestamp}`) - .then(async cache => { - try { - const response = await fetch(event.request) - cache.put(event.request, response.clone()) - return response - } catch(err) { - const response = await cache.match(event.request) - if (response) return response - - throw err - } - }) - ) -}) diff --git a/src/style/_base.scss b/src/style/_base.scss index e2750ef..d34ad38 100644 --- a/src/style/_base.scss +++ b/src/style/_base.scss @@ -1,38 +1,52 @@ html { - font: #{$base-font-size} $font-sans; - color: $color-text; + font: #{$base-font-size}/1.2 $font-sans; + color: #fff; min-width: 320px; - overflow-x: hidden; + word-break: normal; } body { @include font-smooth; background: $color-primary; color: #fff; cursor: default; + overflow-x: hidden; + overscroll-behavior-y: none; } *, *:before, *:after { - box-sizing: border-box; + text-rendering: optimizeLegibility; + -moz-osx-font-smoothing: grayscale; } strong { - font-weight: normal; + font-weight: 700; } em { font-style: normal; } -figure, p, dl, dt, dd, ul, ol, li { +figure, p, dl, dt, dd, ul, li { margin: 0; padding: 0; } -figure img { +figure, picture { display: block; } +nav li:before { + display: none; +} button { background: none; border: none; - outline: none; cursor: pointer; } +// Accessibility outline +// Remove default focus styles for mouse users if :focus-visible is supported +[data-js-focus-visible] :focus:not([data-focus-visible-added]) { + outline: none; +} +[data-focus-visible-added], *:focus-visible { + outline: 1px dashed $color-tertiary; +} + // Selection ::selection { color: #fff; background: $color-secondary; } ::-moz-selection { color: #fff; background: $color-secondary; } @@ -50,215 +64,19 @@ button { font-style: normal; } -// Title: Massive -.title-massive { - font-family: $font-serif-extra; - font-size: pxVW(800); - line-height: 1; - color: $color-secondary; - letter-spacing: -2vw; - text-align: center; - pointer-events: none; - user-select: none; - @include breakpoint (lg) { - font-size: pxVW(700); - } - @include breakpoint (1920px) { - font-size: rem(900px); - letter-spacing: -40px; - } - - &, span { - will-change: transform, opacity; - } -} - - -// Title: Category -.title-category { - font-family: $font-serif; - font-size: rem(28px); - line-height: 1; - color: $color-secondary; -} - -// Title: Locations -.title-location { - font-family: $font-serif; - font-size: rem(48px); - line-height: 1; - color: $color-secondary; - text-align: center; - - @include breakpoint (sm) { - font-size: rem(64px); - } - @include breakpoint (lg) { - font-size: rem(72px); - } - @include breakpoint (xl) { - font-size: rem(96px); - } - - em { - display: block; - font-size: rem(18px); - color: $color-lightpurple; - text-transform: uppercase; - letter-spacing: 1px; - - @include breakpoint (sm) { - display: inline-block; - font-size: rem(32px); - margin-right: -8px; - } - } - span, em { - will-change: transform; - } - - // Bigger version - &--big { - font-size: pxVW(180); - - @include breakpoint (sm) { - font-size: pxVW(130); - } - @include breakpoint (md) { - font-size: pxVW(160); - } - @include breakpoint (lg) { - font-size: rem(160px); - } - - em { - display: inline-block; - font-size: 0.35em; - - @include breakpoint (md) { - margin-left: -8px; - } - } - } - - // Inline version - &--inline { - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - - @include breakpoint (sm) { - flex-direction: row; - align-items: baseline; - } - - em { - margin: 8px 0 4px; - - @include breakpoint (sm) { - margin: 2px 16px 0 24px; - } - - span { - position: relative; - display: inline-block; - } - } - } -} - - - -/* Text Styles +/* Global elements ========================================================================== */ -// Location -.style-location { - font-family: $font-serif; - font-size: 6vw; - color: #fff; - line-height: 1.15; - text-align: center; - - @include breakpoint (mob) { - font-size: rem(24px); - } - @include breakpoint (sm) { - font-size: rem(28px); - } - - a { - color: #fff; - text-decoration: none; - - &:hover { - color: $color-secondary; - } - } - - .street { - margin-bottom: 8px; - } +// Split text elements +.word, .char { + display: inline-block; + transform-style: preserve-3d; + will-change: transform; } +.words-3d { + perspective: 800px; -// Information (capitalized text) -.style-caps { - font-family: $font-sans; - font-size: rem(12px); - color: $color-tertiary; - text-transform: uppercase; - letter-spacing: 1px; - - // Transparent variant - &--transparent { - color: rgba($color-tertiary, 0.5); - } - - @include breakpoint (sm) { - font-size: rem(14px); - } -} - -// Short text (description) -.style-description { - color: $color-tertiary; - font-family: $font-sans-light; - font-size: rem(18px); - line-height: 1.55; - text-align: center; - - @include breakpoint (sm) { - max-width: 572px; - margin: 0 auto; - font-size: rem(28px); - line-height: 1.64; - } - - // Dark text - &--dark { - color: $color-text; - } - - // Small text variant - &--small { - font-size: rem(16px); - line-height: 1.4; - - @include breakpoint (sm) { - font-size: rem(20px); - line-height: 1.5; - } - } -} - -// Notice -.style-notice { - color: rgba($color-tertiary, 0.5); - font-family: $font-sans-light; - font-size: rem(14px); - - @include breakpoint (sm) { - font-size: rem(16px); + span { + transform-origin: 0 85%; } } \ No newline at end of file diff --git a/src/style/_fonts.scss b/src/style/_fonts.scss index 48e5048..f5b4f8a 100644 --- a/src/style/_fonts.scss +++ b/src/style/_fonts.scss @@ -1,12 +1,7 @@ /* Fonts list ========================================================================== */ -$fonts: ( - "G-Light", - "G-Regular", - "G-Semibold", - "M-Extralight", - "M-Light" -); -@each $font in $fonts { - @include font-face($font); -} +@include font-face("Garnett", "G-Light", 300); +@include font-face("Garnett", "G-Regular", 400); +@include font-face("Garnett", "G-Semibold", 500); +@include font-face("Magnolia", "M-Extralight", 200); +@include font-face("Magnolia", "M-Light", 300); \ No newline at end of file diff --git a/src/style/_typography.scss b/src/style/_typography.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/style/_variables.scss b/src/style/_variables.scss index 95cbfb6..7e095e4 100644 --- a/src/style/_variables.scss +++ b/src/style/_variables.scss @@ -12,36 +12,42 @@ $color-gray: #666; $color-lightgray: #999; // CSS Variables -// :root { -// } +:root { + // Sizes + --container-width: 1680px; + + // Animation + --ease-quart: cubic-bezier(.165, .84, .44, 1); + --ease-cubic: cubic-bezier(.785, .135, .15, .86); + --ease-inout-quart: cubic-bezier(.76, 0, .24, 1); +} /* Fonts ========================================================================== */ -$base-font-size: 28px; +$base-font-size: 28px !default; // Families $replacement-sans: "Helvetica, Arial, sans-serif"; $replacement-serif: "Georgia, serif"; -$font-sans: "G-Regular", #{$replacement-sans}; -$font-sans-sb: "G-Semibold", #{$replacement-sans}; -$font-sans-light: "G-Light", #{$replacement-sans}; -$font-serif: "M-Light", #{$replacement-serif}; -$font-serif-extra: "M-Extralight", #{$replacement-serif}; +$font-sans: "Garnett", #{$replacement-sans}; +$font-serif: "Magnolia", #{$replacement-serif}; /* Sizes, margins and spacing ====================================================================== */ -$base-width: 1600; +$base-width: 1600 !default; -// Blocks +// Grid +$cols-m: 12 !default; +$cols-d: 32 !default; /* Directories ========================================================================== */ -$dir-img: "/img"; -$dir-fonts: "/fonts"; +$dir-img: "/images" !default; +$dir-fonts: "/fonts" !default; /* Animation @@ -54,10 +60,14 @@ $ease-inout: ease-in-out; /* Responsive breakpoints ========================================================================== */ -$screen-mob: 450px; -$screen-xs: 767px; -$screen-sm: 768px; -$screen-md: 992px; -$screen-lg: 1200px; -$screen-xl: 1440px; -$screen-xxl: 1600px; +$breakpoints: ( + mob: 450px, + mob-lg: 550px, + xs: 767px, + sm: 768px, + md: 992px, + sd: 1200px, + lg: 1440px, + xl: 1600px, + fhd: 1920px, +) !default; \ No newline at end of file diff --git a/src/style/atoms/_badge.scss b/src/style/atoms/_badge.scss deleted file mode 100644 index 6afe933..0000000 --- a/src/style/atoms/_badge.scss +++ /dev/null @@ -1,23 +0,0 @@ -/* -** Badge -*/ -.badge { - display: inline-flex; - justify-content: center; - text-align: center; - color: $color-primary-darker; - font-family: $font-sans-sb; - text-transform: uppercase; - letter-spacing: 1px; - background-color: $color-secondary-light; - box-shadow: 0 0 0 4px rgba($color-tertiary, 0.15); - border-radius: 50vh; - - // Small size - &--small { - height: 14px; - padding: 0 4px; - font-size: rem(7px); - line-height: 15px; - } -} \ No newline at end of file diff --git a/src/style/atoms/_button-control.scss b/src/style/atoms/_button-control.scss deleted file mode 100644 index c2531ad..0000000 --- a/src/style/atoms/_button-control.scss +++ /dev/null @@ -1,283 +0,0 @@ -// Button: Control -.button-control { - position: relative; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - width: 40px; - height: 40px; - overflow: hidden; - padding-top: 2px; - pointer-events: auto; - border-radius: 50%; - border: none; - cursor: pointer; - outline: none; - transition: background-color 350ms $ease-quart; - will-change: transform, opacity; - - @include breakpoint (sm) { - width: 56px; - height: 56px; - } - - // Icon - .icon { - position: relative; - overflow: hidden; - display: block; - height: auto; - transition: transform 500ms $ease-quart, opacity 150ms $ease-inout; - will-change: transform; - - &:not([data-width]) { - width: 13px; - } - - @include breakpoint (sm) { - &:not([data-width]) { - width: 20px; - } - } - } - .icon[aria-hidden] { - opacity: 0; - position: absolute; - top: 50%; - left: 50%; - } - - - /* - ** Variants - */ - &--white { - background-color: #fff; - - &:hover, &.hover { - background-color: $color-secondary; - } - } - &--lightpink { - background-color: rgba($color-secondary, 0.4); - - &:hover, &.hover { - background-color: rgba($color-secondary, 0.85); - } - } - &--pink { - background-color: rgba($color-secondary, 0.85); - - &:hover, &.hover { - background-color: $color-secondary; - } - } - &--gray { - background-color: $color-gray; - - &:hover, &.hover { - background-color: $color-text; - } - } - - - /* - ** Effects - */ - &--shadow { - box-shadow: 0 0 10px rgba(#000, 0.4); - } - - - - /* - ** Directions - */ - // To left - &.dir-left { - .icon[aria-hidden] { - transform: translate(100%, -50%); - } - - &:hover, &.hover { - .icon:not([aria-hidden]) { - opacity: 0; - transform: translate(-100%, 0); - } - .icon[aria-hidden] { - opacity: 1; - transform: translate(-50%, -50%); - } - } - } - // To right - &.dir-right { - .icon[aria-hidden] { - transform: translate(-150%, -50%); - } - - &:hover, &.hover { - .icon:not([aria-hidden]) { - opacity: 0; - transform: translate(100%, 0); - } - .icon[aria-hidden] { - opacity: 1; - transform: translate(-50%, -50%); - } - } - } - // From top - &.dir-top { - .icon[aria-hidden] { - left: auto; - transform: translate(0, -150%); - } - - &:hover, &.hover { - .icon:not([aria-hidden]) { - opacity: 0; - transform: translate(0, 100%); - } - .icon[aria-hidden] { - opacity: 1; - transform: translate(0, -50%); - } - } - } - // From bottom - &.dir-bottom { - .icon[aria-hidden] { - left: auto; - transform: translate(0, 150%); - } - - &:hover, &.hover { - .icon:not([aria-hidden]) { - opacity: 0; - transform: translate(0, -100%); - } - .icon[aria-hidden] { - opacity: 1; - transform: translate(0, -50%); - } - } - } - - - /* - ** Dashed style - */ - &--dashed { - position: relative; - overflow: visible; - background-color: rgba($color-lightpurple, 0.5); - transition: background-color 150ms $ease-inout; - will-change: transform, opacity; - - // Icon - svg[fill] { - height: auto; - } - - // Dashed circle - svg:not([fill]) { - position: absolute; - top: 50%; - left: 50%; - width: 130%; - height: 130%; - transform: translate(-50%, -50%); - } - circle { - display: block; - stroke-width: 1.75; - stroke-dasharray: 7, 3; - stroke: rgba($color-lightpurple, 0.35); - fill: none; - transform-origin: 50% 50%; - animation: rotateDashes 5s linear infinite; - animation-play-state: paused; - animation-delay: 50ms; - transition: stroke 150ms $ease-inout; - will-change: stroke; - } - - // Hover - &:hover, &:focus { - background-color: rgba($color-lightpurple, 0.65); - - * { - animation-play-state: running; - } - } - } - - - /* - ** Big version - */ - &--big { - width: 88px; - height: 88px; - text-decoration: none; - - @include breakpoint (sm) { - width: 120px; - height: 120px; - } - @include breakpoint (lg) { - width: 152px; - height: 152px; - } - - .center { - display: flex; - flex-direction: column; - align-items: center; - - span { - display: block; - margin-top: 8px; - color: rgba(#fff, 0.3); - text-transform: uppercase; - font-family: $font-sans-sb; - font-size: rem(8px); - letter-spacing: 1px; - line-height: 1; - - @include breakpoint (sm) { - margin-top: 10px; - font-size: rem(10px); - } - } - } - - img { - display: block; - width: 24px; - - @include breakpoint (sm) { - width: 40px; - } - } - - // Big Dashed - &.button-control--dashed { - // Icon - svg[fill] { - @include breakpoint (xs) { - width: 28px; - } - } - // Circle - circle { - @include breakpoint (sm) { - stroke-width: 4.5; - stroke-dasharray: 20, 8; - } - } - } - } -} \ No newline at end of file diff --git a/src/style/atoms/_button-outline.scss b/src/style/atoms/_button-outline.scss deleted file mode 100644 index a7766f5..0000000 --- a/src/style/atoms/_button-outline.scss +++ /dev/null @@ -1,71 +0,0 @@ -// Button: Outline -.button-outline { - overflow: hidden; - position: relative; - display: inline-flex; - align-items: center; - height: 32px; - padding: 1px 16px 0; - background: none; - font-family: $font-sans-sb; - font-size: rem(14px); - color: #fff; - border: 2px solid #fff; - border-radius: 50vh; - text-decoration: none; - cursor: pointer; - outline: none; - transition: all 275ms $ease-cubic; - will-change: border, color; - - @include breakpoint (sm) { - height: 40px; - font-size: rem(18px); - } - - - // Second text - .text { - span { - display: block; - } - - &:after { - opacity: 0; - content: attr(data-text); - position: absolute; - display: block; - text-align: center; - top: 50%; - left: 0; - right: 0; - transform: translateY(100%); - } - - span, &:after { - transition: transform 275ms $ease-cubic, opacity 275ms $ease-cubic; - will-change: transform, opacity; - } - } - - // Disabled - &.disabled { - color: $color-lightpurple; - border-color: $color-lightpurple; - } - - // Hover - &:hover { - color: $color-tertiary; - border-color: $color-tertiary; - - span { - opacity: 0; - transform: translateY(-75%); - } - .text:after { - opacity: 1; - transform: translateY(-50%); - } - } -} diff --git a/src/style/atoms/_button.scss b/src/style/atoms/_button.scss deleted file mode 100644 index a186b53..0000000 --- a/src/style/atoms/_button.scss +++ /dev/null @@ -1,97 +0,0 @@ -// Default button -.button { - position: relative; - display: inline-flex; - align-items: center; - height: 40px; - overflow: hidden; - padding: 0 16px; - background: #fff; - font-family: $font-sans-sb; - font-size: rem(14px); - color: $color-gray; - border-radius: 50vh; - text-decoration: none; - border: none; - outline: none; - cursor: pointer; - transition: background-color 250ms $ease-cubic, color 350ms $ease-cubic; - will-change: background-color, color; - - @include breakpoint (sm) { - height: 48px; - padding: 1px 24px 0; - font-size: rem(18px); - } - - // Icon if existing - img, svg { - position: relative; - z-index: 2; - display: block; - width: 18px; - height: auto; - margin-right: 8px; - - @include breakpoint (sm) { - width: 22px; - height: auto; - margin-right: 16px; - } - } - svg { - transition: all 350ms $ease-cubic; - - .anim { - animation-delay: 100ms; - } - } - - // Text - .text { - position: relative; - overflow: hidden; - - &:after { - content: attr(data-text); - opacity: 0; - display: block; - position: absolute; - top: 50%; - left: 0; - width: 100%; - transform: translateY(100%); - } - } - - span { - display: block; - } - span, .text:after { - transition: transform 275ms $ease-cubic, opacity 275ms $ease-cubic; - will-change: transform, opacity; - } - - // Hover - &:hover { - color: #fff; - background-color: $color-secondary; - - svg { - fill: #fff; - } - .anim { - animation-play-state: running; - } - .text { - span { - opacity: 0; - transform: translateY(-75%); - } - &:after { - opacity: 1; - transform: translateY(-50%); - } - } - } -} diff --git a/src/style/atoms/_counter.scss b/src/style/atoms/_counter.scss deleted file mode 100644 index 37a510d..0000000 --- a/src/style/atoms/_counter.scss +++ /dev/null @@ -1,27 +0,0 @@ -// Counter -.counter { - display: inline-flex; - justify-content: center; - font-family: $font-serif-extra; - font-size: pxVW(672); - color: rgba($color-tertiary, 0.4); - text-align: center; - pointer-events: none; - user-select: none; - - // Column - &__column { - display: flex; - flex-direction: column; - line-height: 0.85; - text-align: right; - margin: 0 0px; - transition: transform 0.6s $ease-quart; - will-change: transform; - - // Last column - &:last-child { - text-align: left; - } - } -} diff --git a/src/style/atoms/_icon-globe.scss b/src/style/atoms/_icon-globe.scss deleted file mode 100644 index d3d2d7e..0000000 --- a/src/style/atoms/_icon-globe.scss +++ /dev/null @@ -1,27 +0,0 @@ -// SVG Globe icon -.icon-svg { - height: 100%; - overflow: hidden; - - &:after { - content: ""; - display: block; - padding-bottom: 133.93%; /* 1.33 ratio */ - } - - // Small size - &--small { - &:after { - content: ""; - display: block; - padding-bottom: 100%; /* 1:1 ratio */ - } - } - - // Animate by default - &.is-animated { - .anim { - animation-play-state: running; - } - } -} diff --git a/src/style/atoms/_inputs.scss b/src/style/atoms/_inputs.scss deleted file mode 100644 index 24e3adb..0000000 --- a/src/style/atoms/_inputs.scss +++ /dev/null @@ -1,40 +0,0 @@ -// Text input -.input__text { - position: relative; - display: block; - width: 100%; - height: 48px; - padding: 0 24px; - color: #fff; - font-size: rem(16px); - font-family: $font-sans-light; - border: 2px solid rgba($color-secondary, 0.6); - border-radius: 50vh; - transition: border 300ms $ease-quart; - background: none; - outline: none; - - @include breakpoint (sm) { - font-size: rem(18px); - height: 64px; - padding: 0 32px; - } - - // States - &::placeholder { - color: #fff; - opacity: 0.75; - transition: all 300ms $ease-quart; - } - &:focus { - @extend %input__text--active; - } -} - -%input__text--active { - border-color: $color-secondary; - - &::placeholder { - opacity: 1; - } -} \ No newline at end of file diff --git a/src/style/atoms/_link.scss b/src/style/atoms/_link.scss deleted file mode 100644 index ce8be36..0000000 --- a/src/style/atoms/_link.scss +++ /dev/null @@ -1,116 +0,0 @@ -/* -** Link: Change location -*/ -.link-change { - position: relative; - display: inline-block; - margin: 0 6px; - padding: 0 4px; - color: $color-secondary; - text-decoration: none; - transition: color 200ms $ease-cubic; - - @include breakpoint (sm) { - padding: 0 8px; - } - - // Line - &:after { - content: ""; - position: absolute; - z-index: -1; - background-color: rgba($color-secondary, 0.22); - width: 100%; - height: 8px; - bottom: 3px; - left: 0; - border-radius: 50vh; - transition: all 200ms $ease-cubic; - transition-delay: 50ms; - - @include breakpoint (sm) { - height: 14px; - bottom: 5px; - } - } - - // Icon - .icon { - position: relative; - z-index: 3; - top: -3px; - display: inline-flex; - justify-content: center; - align-items: center; - width: 22px; - height: 22px; - margin-left: 6px; - background-color: #fff; - border-radius: 50%; - - svg { - height: auto; - } - } - - // Hover - &:hover { - color: $color-text; - - &:after { - background-color: rgba($color-secondary, 0.4); - } - svg * { - animation-play-state: running; - } - } -} - - -/* -** Link: Translation effect -*/ -.link-translate { - display: inline-block; - - .text { - position: relative; - overflow: hidden; - - &:after { - content: attr(data-text); - position: absolute; - top: 50%; - left: 0; - width: 100%; - text-align: center; - transform: translateY(-50%); - opacity: 1; - transition: all 275ms $ease-cubic; - will-change: transform, opacity; - } - - span { - display: inline-block; - transform: translateY(100%); - opacity: 0; - transition: all 275ms $ease-cubic; - will-change: transform, opacity; - } - } - - // States - &:hover { - .text { - &:after { - transform: translateY(-75%); - opacity: 0; - } - - span { - transform: translateY(0); - opacity: 1; - } - } - } -} diff --git a/src/style/atoms/_switcher.scss b/src/style/atoms/_switcher.scss deleted file mode 100644 index 472d6bc..0000000 --- a/src/style/atoms/_switcher.scss +++ /dev/null @@ -1,92 +0,0 @@ -// Switcher -.switcher { - display: flex; - align-items: center; - - a { - color: #C78FEC; - text-decoration: none; - } - - // Text - &__text { - position: relative; - z-index: 2; - display: block; - font-family: $font-serif; - font-size: rem(30px); - line-height: 1; - text-align: right; - - em { - margin-left: -2px; - margin-right: 16px; - font-size: rem(14px); - text-transform: uppercase; - color: $color-lightpurple; - letter-spacing: 1px; - - &.same-line { - margin-right: 0; - } - } - - .bottom { - display: block; - color: $color-secondary; - text-align: center; - } - - &.empty { - text-align: left; - } - } - - // Icon - &__icon { - width: 52px; - height: 52px; - margin-top: 4px; - margin-left: -8px; - - a { - display: flex; - align-items: center; - justify-content: center; - } - } - - - /* - ** Side version (smaller) - */ - &--side { - .switcher { - &__text { - font-size: rem(22px); - } - &__icon { - width: 40px; - height: 40px; - background-color: #F4EDFB; - - circle { - stroke: #F4EDFB; - } - img, svg[fill] { - transform: rotate(90deg); - } - &:hover { - background-color: darken(#F4EDFB, 7); - - circle { - stroke: darken(#F4EDFB, 7); - } - } - } - } - .top { - color: $color-primary; - } - } -} diff --git a/src/style/atoms/_toggle.scss b/src/style/atoms/_toggle.scss deleted file mode 100644 index a21ab71..0000000 --- a/src/style/atoms/_toggle.scss +++ /dev/null @@ -1,93 +0,0 @@ -// Toggle Button -.toggle { - position: relative; - margin-top: 58px; - background-color: rgba($color-secondary, 0.25); - display: inline-flex; - border-radius: 50vh; - - button, .pill { - position: relative; - z-index: 2; - color: $color-secondary; - border-radius: 50vh; - padding: 12px 24px; - font-family: $font-sans-sb; - font-size: rem(18px); - line-height: 0; - display: flex; - align-items: center; - justify-content: center; - outline: none; - transition: color 100ms; - will-change: color; - } - button { - span { - margin-left: 16px; - } - svg { - fill: $color-secondary; - * { - transition: fill 100ms; - transition-delay: 0ms; - will-change: fill; - } - } - - // Active button - &.active { - color: #fff; - - svg * { - fill: #C78FEC; - } - } - - // Hover - &:hover:not(.active) { - color: $color-secondary-bright; - - svg { - fill: $color-secondary-bright; - } - } - // List icon - &[data-layout="list"]:hover { - rect:nth-of-type(even) { - animation: layoutListEven 600ms $ease-cubic infinite alternate forwards; - } - rect:nth-of-type(odd) { - animation: layoutListOdd 600ms $ease-cubic infinite alternate forwards; - } - } - // Grid icon - &[data-layout="grid"]:hover { - rect:nth-of-type(even) { - animation: layoutGridEven 600ms $ease-cubic infinite alternate forwards; - } - rect:nth-of-type(odd) { - animation: layoutGridOdd 600ms $ease-cubic infinite alternate forwards; - } - } - } - - // Pill (active) - .pill { - position: absolute; - z-index: 1; - top: 0; - left: 0; - width: auto; - height: 100%; - background-color: $color-primary; - transition: all 500ms $ease-quart; - will-change: width, left; - - span { - content: attr(data-text); - display: block; - margin: 0; - } - } -} diff --git a/src/style/layout/_grid.scss b/src/style/layout/_grid.scss new file mode 100644 index 0000000..c09bdce --- /dev/null +++ b/src/style/layout/_grid.scss @@ -0,0 +1,14 @@ +/* +** Grid +*/ +.grid { + --columns: #{$cols-m}; + display: grid; + grid-template-columns: repeat(var(--columns), 1fr); + grid-column: 1 / span var(--columns); + align-items: start; + + @include bp (sm) { + --columns: #{$cols-d}; + } +} \ No newline at end of file diff --git a/src/style/layouts/_explore.scss b/src/style/layouts/_explore.scss deleted file mode 100644 index 3d1a33b..0000000 --- a/src/style/layouts/_explore.scss +++ /dev/null @@ -1,25 +0,0 @@ -.explore { - // Description - &__description { - position: relative; - z-index: 3; - max-width: 312px; - margin: 0 auto 72px; - - @include breakpoint (sm) { - max-width: 472px; - margin-bottom: 120px; - } - } - - // Globe - // .globe { - // } - - // Browse - .browse { - position: relative; - z-index: 3; - margin-top: 72px; - } -} diff --git a/src/style/layouts/_main.scss b/src/style/layouts/_main.scss deleted file mode 100644 index 6c0f161..0000000 --- a/src/style/layouts/_main.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Main page -.housesof { - position: absolute; - top: 0; - left: 0; - width: 100%; - transition: opacity 0.3s $ease-quart; - will-change: opacity; - - &.is-transitioning { - opacity: 0; - } -} diff --git a/src/style/molecules/_form.scss b/src/style/molecules/_form.scss deleted file mode 100644 index 0d3bd60..0000000 --- a/src/style/molecules/_form.scss +++ /dev/null @@ -1,50 +0,0 @@ -// Form -.form { - label { - cursor: pointer; - } - - // Group item - // &__group { - // } - - // Input group - &__inputgroup { - position: relative; - - button { - position: absolute; - top: 50%; - right: 10px; - transform: translateY(-50%); - width: 32px; - height: 32px; - padding: 0; - - @include breakpoint (sm) { - right: 20px; - } - } - - // Hover - &:hover { - .input__text { - @extend %input__text--active; - } - } - } - - - /* - ** Variants - */ - // Light version - &--light { - // Text input - .input__text { - &, &::placeholder { - color: $color-text; - } - } - } -} \ No newline at end of file diff --git a/src/style/molecules/_globe.scss b/src/style/molecules/_globe.scss deleted file mode 100644 index 96efb68..0000000 --- a/src/style/molecules/_globe.scss +++ /dev/null @@ -1,191 +0,0 @@ -// Globe -.globe { - position: relative; - z-index: 2; - width: 100vw; - height: 180vw; - min-height: 700px; - max-height: 1472px; - overflow: hidden; - cursor: grab; - user-select: none; - - @include breakpoint (sm) { - height: 130vw; - } - @include breakpoint (md) { - height: 112vw; - } - @include breakpoint (xl) { - height: 100vw; - } - - // DEBUG // - // background: rgba(red, 0.2); - // &:after { - // content: ""; - // display: block; - // position: absolute; - // top: 50%; - // left: 0; - // background: blue; - // width: 100%; - // height: 2px; - // margin-top: -1px; - // } - // END DEBUG // - - /* - ** Partial globe - */ - &--part { - overflow: hidden; - height: 30vw; - min-height: 300px; - max-height: 500px; - } - - /* - ** Markers - */ - &__markers { - z-index: 210; - - // When dragging - &.is-grabbing { - cursor: grabbing; - } - - // Marker - .marker { - position: absolute; - z-index: 2; - cursor: pointer; - display: block; - top: -4px; - left: -4px; - padding: 4px; - opacity: 1; - will-change: transform; - - // Dot - &:before { - content: ""; - display: block; - position: absolute; - top: 0; - left: 0; - width: 8px; - height: 8px; - background: $color-secondary; - border-radius: 100%; - } - - span { - transition: color 0.4s $ease-quart, opacity 0.3s $ease-inout; - } - - // Hover glow effect - &.hover { - &:before { - animation: globeMarkerPulse 1s; - } - } - - // Label - &__label { - position: absolute; - bottom: -16px; - left: 16px; - color: transparent; - } - // Location city - &__city { - font-family: $font-serif; - font-size: rem(18px); - line-height: 1; - - @include breakpoint (sm) { - font-size: rem(24px); - } - } - // Location country - &__country { - display: block; - opacity: 0.8; - font-family: $font-sans; - font-size: rem(8px); - line-height: 1; - text-transform: uppercase; - letter-spacing: 1px; - - @include breakpoint (sm) { - font-size: rem(10px); - } - } - - // Active - &.is-active { - &, span { - opacity: 1; - } - .marker { - &__city { - color: $color-secondary; - } - &__country { - color: $color-text; - } - } - } - - // Is light - &.is-light { - &.is-active { - .marker { - &__city { - color: #fff; - } - &__country { - color: #d2b7e4; - } - } - } - } - - // Left positioned - &.is-left { - .marker { - &__label { - left: auto; - right: 32px; - } - &__country { - text-align: right; - } - } - } - - // Marker is close to another one - // Show the marker infos only on hover - &.is-close { - // Dot - &:before { - width: 7px; - height: 7px; - } - // Label - .marker__label { - opacity: 0; - } - - // Show labels on hover - &:hover { - .marker__label { - opacity: 1; - } - } - } - } - } -} \ No newline at end of file diff --git a/src/style/molecules/_location.scss b/src/style/molecules/_location.scss deleted file mode 100644 index a903753..0000000 --- a/src/style/molecules/_location.scss +++ /dev/null @@ -1,98 +0,0 @@ -// Location -.location { - position: relative; - margin-bottom: 48px; - - &, a * { - will-change: transform, opacity; - } - - a { - position: relative; - z-index: 2; - display: flex; - flex-flow: column; - align-items: center; - text-decoration: none; - } - - // Flag image - img { - display: block; - width: 32px; - height: auto; - margin: 0 auto; - border-radius: 50%; - } - - // City - &__city { - font-family: $font-serif; - font-size: rem(32px); - color: $color-secondary; - - @include breakpoint (md) { - font-size: rem(48px); - } - } - - // Masks - .mask-city { - height: 40px; - margin: 16px 0 12px; - - @include breakpoint (md) { - height: 64px; - margin-top: 24px; - } - } - .mask-country { - height: 16px; - } - - // Badge - .badge { - margin-top: 16px; - - @include breakpoint (sm) { - margin-top: 24px; - } - } - - // Hover - &:hover { - .location__city { - color: $color-tertiary; - } - - &:after { - opacity: 1; - transform: scale(1) translate(-50%, -50%); - } - } - - // Shape on hover - &:after { - content: ""; - pointer-events: none; - opacity: 0; - position: absolute; - z-index: 1; - top: 50%; - left: 50%; - transform: scale(0.85) translate(-50%, -50%) translateZ(0); - transform-origin: 0 0; - display: block; - width: 184px; - height: 184px; - background: rgba($color-lightpurple, 0.3); - border-radius: 50%; - transition: transform 0.3s $ease-quart, opacity 0.3s $ease-quart; - will-change: transform; - - @include breakpoint (sm) { - width: 216px; - height: 216px; - } - } -} diff --git a/src/style/molecules/_newsletter.scss b/src/style/molecules/_newsletter.scss deleted file mode 100644 index 4d43ec3..0000000 --- a/src/style/molecules/_newsletter.scss +++ /dev/null @@ -1,113 +0,0 @@ -// Newsletter -.newsletter { - background-color: $color-primary-dark; - padding: 56px 0; - - @include breakpoint (sm) { - padding: 96px 0; - } - - .wrapper { - @include breakpoint (md) { - display: flex; - justify-content: space-between; - } - } - - h2 { - color: $color-secondary; - } - - // Text - &__text { - max-width: 400px; - margin: 0 auto 32px; - - @include breakpoint (sm) { - margin-bottom: 40px; - } - @include breakpoint (md) { - margin-left: 0; - margin-right: 48px; - margin-bottom: 0; - text-align: left; - } - - h2 { - margin-bottom: 16px; - - @include breakpoint (md) { - text-align: left; - } - } - } - - // Form - .form { - min-width: 270px; - max-width: 320px; - margin: 0 auto; - - @include breakpoint (md) { - min-width: 320px; - max-width: 440px; - margin: 48px 0 0; - } - - // Title (if existing) - h2 { - margin-bottom: 24px; - - @include breakpoint (sm) { - margin-bottom: 40px; - } - } - } - - // Notice - &__notice { - margin-top: 16px; - text-align: center; - } - - - /* - ** Variants - */ - // Centered column mode - &--column { - max-width: 360px; - margin: 0 auto; - padding: 0; - background: none; - - @include breakpoint (sm) { - max-width: 444px; - } - - // Text - .newsletter__text { - max-width: 440px; - margin: 0 0 48px; - text-align: center; - - @include breakpoint (sm) { - margin-bottom: 72px; - } - @include breakpoint (md) { - margin-bottom: 96px; - } - } - } - - // Light version - &--light { - background: none; - - .newsletter__notice { - p { - color: rgba($color-text, 0.5); - } - } - } -} \ No newline at end of file diff --git a/src/style/molecules/_photo.scss b/src/style/molecules/_photo.scss deleted file mode 100644 index 44c4fe8..0000000 --- a/src/style/molecules/_photo.scss +++ /dev/null @@ -1,188 +0,0 @@ -.photo { - /* - ** Location - */ - &__location { - margin-bottom: 32px; - - @media (max-width: $screen-md) { - padding: 0; - } - @include breakpoint (sm) { - margin-bottom: 56px; - } - - // Street name - h2 { - text-align: left; - - @include breakpoint (xs) { - font-size: rem(40px); - } - } - .line { - overflow: hidden; - margin: -12px 0 -16px; - padding: 12px 0; - display: block; - - span { - position: relative; - display: block; - will-change: transform; - } - } - p { - color: $color-lightgray; - margin-top: 16px; - will-change: opacity; - } - } - - - /* - ** Image - */ - &__image { - position: relative; - display: flex; - justify-content: flex-start; - - @include breakpoint (xs) { - padding: 0; - } - - // Alignment (left or right for list view) - .align { - position: relative; - width: 100%; - max-width: 1180px; - margin: 0; - padding: 0; - - @media (min-aspect-ratio: 16/8) { - max-width: 976px; - } - @media (min-aspect-ratio: 16/10) { - max-width: 1024px; - } - } - } - - // Image itself - &__picture { - overflow: hidden; - position: relative; - z-index: 2; - display: block; - width: 100%; - border-radius: 0; - background-color: #fff; - box-shadow: 0 8px 18px rgba(#715E4E, 0.2); - user-select: none; - - @include breakpoint (sm) { - border-radius: 8px; - } - - a { - display: block; - width: 100%; - text-decoration: none; - } - - img { - display: block; - width: 100%; - height: auto; - will-change: transform, opacity; - } - - // Overlay - &:after { - opacity: 0; - content: ""; - position: absolute; - z-index: 3; - display: block; - top: 0; - left: 0; - bottom: 0; - right: 0; - background-color: $color-primary; - pointer-events: none; - transition: opacity 150ms $ease-inout; - } - - // Hover - &:hover { - cursor: zoom-in; - - &:after { - opacity: 0.6; - } - } - } - - // Date (on the side) - &__date { - display: block; - margin-top: 16px; - padding: 0 pxVW(128); - font-size: rem(14px); - color: $color-lightgray; - - @include breakpoint (sm) { - position: absolute; - z-index: 3; - left: calc(100% + 30px); - bottom: 0; - transform: rotate(270deg); - transform-origin: 0 0; - white-space: nowrap; - line-height: 0; - padding: 0; - } - } - - // Photo number - &__number { - position: absolute; - bottom: -80px; - right: 24px; - font-family: $font-serif-extra; - color: rgba($color-tertiary, 0.5); - font-size: rem(124px); - pointer-events: none; - user-select: none; - - span { - position: relative; - display: block; - will-change: transform; - } - - @include breakpoint (sm) { - z-index: 1; - top: 0; - right: 8%; - transform: translate(0, -25%); - font-size: pxVW(300); - } - @include breakpoint (md) { - top: 50%; - right: 0; - bottom: auto; - transform: translate(26.5vw, -50%); - width: 50%; - text-align: center; - } - @include breakpoint (lg) { - transform: translate(28vw, -50%); - } - @include breakpoint (xxl) { - font-size: rem(300px); - transform: translate(70%, -50%); - } - } -} diff --git a/src/style/organisms/_carousel.scss b/src/style/organisms/_carousel.scss deleted file mode 100644 index f9ccd3b..0000000 --- a/src/style/organisms/_carousel.scss +++ /dev/null @@ -1,352 +0,0 @@ -// Carousel -.carousel { - background-color: $color-primary; - will-change: transform, opacity; - - @include breakpoint (sm) { - overflow: visible; - } - - .wrap { - max-width: 1280px; - padding: 0; - - @include breakpoint (sm) { - max-width: 80%; - } - @include breakpoint (1680px) { - max-width: 1424px; - } - @media (min-aspect-ratio: 16/10) { - max-width: 70%; - } - } - - - /* - ** Gallery - */ - .gallery { - position: relative; - z-index: 2; - margin: 0 auto; - cursor: grab; - - &:active { - cursor: grabbing; - } - - @include breakpoint (xl) { - max-width: 100%; - } - - // Variables - $scale: 0.9; - $angle: 1deg; - $angleHover: 1.25deg; - $distance: 9%; - $distanceHover: 10%; - $radius: 8px; - - // Images - &__images { - position: relative; - height: 0; - padding-bottom: calc(100% / 1.5); // Ratio 3.2 - user-select: none; - } - - // Photo - &__photo { - $duration: 1s; - opacity: 0; - position: absolute; - z-index: -1; - top: 0; - left: 0; - width: 100%; - height: 100%; - transform: scale($scale) translateZ(0); - transition: transform $duration $ease-quart, opacity ($duration / 2) $ease-quart; - pointer-events: none; - @extend %willchange; - - // Visible photos - &.is-active, &.is-prev, &.is-next { - opacity: 1; - pointer-events: auto; - - picture { - opacity: 1; - } - } - - // Active photo - &.is-active { - z-index: 10; - transform: scale(1) translateZ(0); - } - - // Previous & next photo - &.is-prev, &.is-next { - picture:before { - @include breakpoint (sm) { - opacity: 0.4; - } - } - } - - // Previous photo - &.is-prev { - z-index: 9; - transform: translate(-40%, 0) scale(0.85) translateZ(0); - - @include breakpoint (sm) { - z-index: 8; - transform: translate(-$distance, -1%) rotate(-$angle) scale($scale) translateZ(0); - } - - // Hover - &.hover { - transform: translate(-$distanceHover, -1%) rotate(-$angleHover) scale($scale) translateZ(0); - } - } - - // Next photo - &.is-next { - z-index: 8; - transform: translate(40%, 0) scale(0.85) translateZ(0); - - @include breakpoint (sm) { - z-index: 9; - transform: translate($distance, -1%) rotate($angle) scale($scale) translateZ(0); - } - - // Hover - &.hover { - transform: translate($distanceHover, -1%) rotate($angleHover) scale($scale) translateZ(0); - } - } - } - - // Picture - &__picture { - opacity: 0; - position: relative; - display: block; - overflow: hidden; - width: 100%; - height: 100%; - box-shadow: 0 pxVW(15) pxVW(60) rgba(#000, 0.3); - transition: opacity 1s $ease-quart; - will-change: opacity; - @extend %willchange; - - @include breakpoint (sm) { - border-radius: $radius; - } - - // Overlay - &:before { - opacity: 0; - content: ""; - display: block; - position: absolute; - z-index: 2; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: $color-primary; - } - - img { - position: relative; - z-index: 1; - display: block; - width: 100%; - height: auto; - } - } - - // Performance - %willchange { - will-change: transform, opacity; - } - } - - - /* - ** Controls (arrows) - */ - &__controls { - display: none; - - @include breakpoint (sm) { - position: absolute; - z-index: 11; - top: 0; - left: 0; - right: 0; - bottom: 0; - display: flex; - justify-content: space-between; - } - - button { - box-shadow: 0 2px 20px rgba(#000, 0.15); - } - } - - // Hover and clicking area - &__area { - display: flex; - align-items: center; - justify-content: center; - width: 12%; - height: 100%; - cursor: pointer; - - &--prev { - margin-left: -6%; - } - &--next { - margin-right: -6%; - } - } - - - /* - ** Informations - */ - &__infos { - position: relative; - z-index: 2; - } - - // Locations - &__locations { - position: relative; - min-height: 80px; - - @include breakpoint (sm) { - min-height: 128px; - } - } - - // Location - &__location { - $distance: 40%; - position: absolute; - top: 0; - left: 0; - width: 100%; - opacity: 0; - margin-top: 32px; - padding-bottom: 4px; - text-align: center; - pointer-events: none; - transition: transform 0.9s $ease-quart, opacity 0.9s $ease-quart; - will-change: transform, opacity; - - @include breakpoint (sm) { - margin-top: pxVW(80); - } - @include breakpoint (xl) { - margin-top: 72px; - } - - a { - color: rgba($color-tertiary, 0.5); - text-decoration: none; - transition: color 150ms $ease-inout; - - &:hover { - color: rgba($color-tertiary, 0.8); - } - } - - // State - .state { - margin-top: 6px; - } - - // States - &.is-prev { - transform: translateY(-$distance) translateZ(0); - } - &.is-active { - transform: translateY(0) translateZ(0); - opacity: 1; - pointer-events: auto; - } - &.is-next { - transform: translateY($distance) translateZ(0); - } - } - - - /* - ** Dots for slider (mobile) - */ - &__dots { - display: none; - position: relative; - z-index: 3; - - @include breakpoint (xs) { - display: flex; - justify-content: center; - margin-top: 32px; - - li { - display: flex; - align-items: center; - padding: 4px; - cursor: pointer; - - &, button { - transition: all 0.6s $ease-quart; - will-change: transform, width, height, padding; - } - - // Active - &.active button { - background-color: $color-secondary; - transform: scale(1.25) translateZ(0); - } - - // Small dot - &.small button { - transform: scale(0.6) translateZ(0); - opacity: 0.5; - } - // Hidden - &.hidden { - padding: 0; - transform: scale(0) translateZ(0); - opacity: 0; - width: 0; - height: 0; - } - - // Hover - &:hover:not(.active) { - button { - background-color: lighten($color-lightpurple, 10); - } - } - } - - button { - display: block; - width: 8px; - height: 8px; - padding: 0; - background-color: $color-lightpurple; - border-radius: 50%; - text-decoration: none; - } - } - } -} diff --git a/src/style/organisms/_footer.scss b/src/style/organisms/_footer.scss deleted file mode 100644 index da8c78d..0000000 --- a/src/style/organisms/_footer.scss +++ /dev/null @@ -1,132 +0,0 @@ -/* ========================================================================== - FOOTER -========================================================================== */ -.footer { - background-color: $color-primary-darker; - - .wrap { - display: block; - padding-top: 48px; - padding-bottom: 32px; - - @include breakpoint (sm) { - display: flex; - justify-content: space-between; - align-items: center; - height: 120px; - padding-top: 0; - padding-bottom: 0; - } - } - - // Left part - &__left { - display: flex; - justify-content: center; - margin-bottom: 40px; - - @include breakpoint (sm) { - margin: 0; - } - } - - // Right part - &__right { - font-size: 14px; - text-align: center; - - & > ul { - @include breakpoint (sm) { - display: flex; - align-items: center; - padding-top: 6px; - } - } - - li { - display: block; - text-align: center; - height: 100%; - - & > ul { - display: flex; - justify-content: center; - margin-bottom: 32px; - margin-top: 3px; - - @include breakpoint (sm) { - margin-bottom: 0; - margin-right: 24px; - } - - li { - margin-right: 20px; - - &:last-child { - margin-right: 0; - } - } - a { - display: block; - } - } - } - - a { - position: relative; - color: #fff; - text-decoration: none; - transition: color 85ms $ease-inout; - - img, svg { - margin-right: 8px; - - @include breakpoint (sm) { - margin-right: 16px; - } - } - - // Hover - &:hover, &.is-active { - color: $color-secondary; - } - } - - // Instagram - .instagram { - a { - display: inline-flex; - align-items: center; - justify-content: center; - } - svg { - display: block; - transition: fill 275ms $ease-cubic; - } - - // Hover - a:hover svg { - fill: $color-secondary; - } - } - - // Made by - .by { - text-align: center; - - img { - display: block; - height: 22px; - width: auto; - margin: 0 auto; - transition: transform 400ms $ease-quart; - will-change: transform; - } - - // Hover - a:hover img { - transform: scale(1.05); - } - } - } -} diff --git a/src/style/organisms/_fullscreen.scss b/src/style/organisms/_fullscreen.scss deleted file mode 100644 index b1edb7a..0000000 --- a/src/style/organisms/_fullscreen.scss +++ /dev/null @@ -1,87 +0,0 @@ -.fullscreen { - position: fixed; - z-index: 200; - top: 0; - left: 0; - width: 100%; - height: 100%; - overflow: hidden; - pointer-events: none; - user-select: none; - - &, * { - will-change: transform, opacity; - } - - // Photo - &__image { - width: 100%; - height: 100%; - overflow-x: auto; - opacity: 0; - transform: scale(1.1); - background: $color-primary; - transition: transform 0.8s $ease-quart, opacity 0.8s $ease-quart; - - img { - position: relative; - z-index: 200; - display: block; - height: 100%; - width: auto; - margin: 0 auto; - } - - // Open - &.is-open { - opacity: 1; - transform: scale(1); - pointer-events: auto; - } - } - - // Controls - &__close { - position: fixed; - z-index: 201; - bottom: 24px; - left: 0; - width: 100%; - display: flex; - justify-content: center; - opacity: 0; - transform: scale(1.1) translateY(24px) translateZ(0); - transition: transform 0.8s $ease-quart, opacity 0.8s $ease-quart; - - // Visible state - &.is-visible { - opacity: 1; - transform: scale(1) translateY(0) translateZ(0); - } - } - - // Loading - &__loading { - position: absolute; - z-index: 202; - top: 50%; - left: 50%; - opacity: 1; - transform: translate(-50%, -50%) translateZ(0); - transform-origin: 50% 50%; - display: flex; - align-items: center; - justify-content: center; - width: 80px; - height: 80px; - background-color: $color-primary; - border-radius: 50%; - transition: transform 0.8s $ease-quart, opacity 0.8s $ease-quart; - - // Hidden state - &.is-hidden { - transform: scale(1.05) translate(-50%, -50%) translateZ(0); - opacity: 0; - } - } -} \ No newline at end of file diff --git a/src/style/organisms/_locations.scss b/src/style/organisms/_locations.scss deleted file mode 100644 index 65ca353..0000000 --- a/src/style/organisms/_locations.scss +++ /dev/null @@ -1,73 +0,0 @@ -.browse { - width: 100%; - overflow: hidden; - margin-bottom: 56px; - - @include breakpoint (sm) { - margin-top: 120px; - } - - // Description - &__description { - margin-left: auto; - margin-right: auto; - margin-bottom: 32px; - - @include breakpoint (sm) { - margin-bottom: 40px; - } - } - - // Continents - &__continents { - display: flex; - flex-flow: row wrap; - justify-content: center; - margin-bottom: 8px; - - li { - display: block; - margin: 0 4px; - - @include breakpoint (sm) { - margin: 0 8px; - } - } - } - - // Locations - &__locations { - min-height: 120px; - margin-top: 72px; - - @include breakpoint (600px) { - display: grid; - grid-template-columns: repeat(2, 1fr); - } - @include breakpoint (sm) { - grid-template-columns: repeat(3, 1fr); - grid-column-gap: pxVW(96); - grid-row-gap: pxVW(96); - min-height: 200px; - margin-top: 112px; - margin-bottom: pxVW(72); - } - @include breakpoint (xl) { - grid-column-gap: 96px; - grid-row-gap: 96px; - // max-width: 1024px; - margin-left: auto; - margin-right: auto; - margin-bottom: 72px; - - // To apply when having 4 locations: - grid-template-columns: repeat(4, 1fr); - max-width: 1200px; - // grid-column-gap: 120px; - // grid-row-gap: 120px; - // Works well but fucks with the FLIP animations - // grid-auto-flow: column; - // grid-template-columns: repeat(auto-fit, minmax(min-content, 1fr)); - } - } -} diff --git a/src/style/organisms/_pagination.scss b/src/style/organisms/_pagination.scss deleted file mode 100644 index 3abd7ed..0000000 --- a/src/style/organisms/_pagination.scss +++ /dev/null @@ -1,121 +0,0 @@ -// Pagination -.pagination { - position: relative; - padding: 64px 0 72px; - background-color: $color-tertiary; - text-align: center; - - @include breakpoint (sm) { - padding-top: pxVW(120); - padding-bottom: pxVW(120); - } - @include breakpoint (xl) { - padding-top: 120px; - padding-bottom: 120px; - } - - // Pages - &__page { - position: relative; - display: inline-flex; - justify-content: center; - align-items: center; - margin: 0 auto; - font-family: $font-serif-extra; - font-size: rem(72px); - color: rgba($color-text, 0.15); - line-height: 1; - cursor: pointer; - transition: color 250ms $ease-cubic; - - @include breakpoint (sm) { - font-size: rem(120px); - } - @include breakpoint (md) { - font-size: rem(160px); - } - - // Hover - &:hover { - color: rgba($color-text, 0.25); - } - } - - // Numbers - &__numbers { - overflow: hidden; - height: 62px; - margin-right: 4px; - - @include breakpoint (sm) { - height: 102px; - } - @include breakpoint (md) { - height: 136px; - } - - .scroll { - display: flex; - flex-direction: column; - transform: translate(0, 0) translateZ(0); - text-align: right; - line-height: 0.85; - transition: transform 325ms $ease-cubic; - will-change: transform; - } - } - - // Info - &__info { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -72%) translateZ(0); - font-family: $font-serif; - font-size: rem(18px); - color: $color-secondary-bright; - - @include breakpoint (sm) { - font-size: rem(32px); - } - @include breakpoint (md) { - font-size: rem(40px); - } - } - - // Caption - &__caption { - max-width: 420px; - margin: 0 auto; - font-size: 10px; - color: $color-lightgray; - letter-spacing: 2px; - line-height: 1.6; - - @include breakpoint (sm) { - font-size: 14px; - } - } - - // Message - &__message { - // Newsletter - .newsletter { - margin: 0; - padding: 0; - - @include breakpoint (sm) { - padding: 24px 0 0; - } - - // Title - h2 { - font-size: rem(32px); - - @include breakpoint (md) { - font-size: rem(40px); - } - } - } - } -} \ No newline at end of file diff --git a/src/style/organisms/_photos.scss b/src/style/organisms/_photos.scss deleted file mode 100644 index 4465465..0000000 --- a/src/style/organisms/_photos.scss +++ /dev/null @@ -1,248 +0,0 @@ -.photos { - position: relative; - margin-top: -22px; - background-color: #fff; - - @include breakpoint (sm) { - margin-top: -128px; - padding-top: 88px; - } - @include breakpoint (xl) { - padding-top: 72px; - } - - // Sidebar - &__side { - display: none; - - @include breakpoint (md) { - display: flex; - position: absolute; - z-index: 5; - left: 24px; - flex-direction: row-reverse; - align-items: flex-end; - transform-origin: left top; - transform: rotate(-90deg) translateX(-100%); - } - - p { - font-size: rem(12px); - color: $color-lightgray; - margin-right: 24px; - - strong { - font-weight: 600; - display: block; - text-align: right; - } - } - } - - // Container - &__sidewrap { - @include breakpoint (md) { - position: sticky; - z-index: 10; - top: 32px; - width: 100%; - } - } - - // Each photo - .photo { - position: relative; - z-index: 4; - } - - - - /* - ** List view - */ - &--list { - .photos__view { - max-width: 100%; - margin: 0; - padding: 0; - } - - // Photo - .photo { - padding-bottom: 80px; - overflow: hidden; - - @include breakpoint (sm) { - padding-bottom: 120px; - - &:last-child { - padding-bottom: 0; - } - } - - // Title - h2 { - @include breakpoint (sm) { - max-width: 840px; - } - } - - // Even photos - &:nth-child(even) { - @include breakpoint (sm) { - // Location - .photo__location, h2 { - text-align: right; - } - h2 { - margin-left: auto; - } - - // Image - .photo { - &__image { - justify-content: flex-end; - } - &__date { - right: 100%; - left: -30px; - } - } - } - - // Number - .photo__number { - @include breakpoint (sm) { - right: auto; - left: 8%; - } - @include breakpoint (md) { - right: auto; - left: 0; - transform: translate(-23vw, -50%); - } - @include breakpoint (lg) { - transform: translate(-26vw, -50%); - } - @include breakpoint (xl) { - transform: translate(-66%, -50%); - } - } - } - - // Number - &__number { - @include breakpoint (sm) { - will-change: transform; - } - } - } - - // Pagination - .pagination { - margin-top: 24px; - - @include breakpoint (sm) { - margin-top: -64px; - padding-top: pxVW(240); - padding-bottom: pxVW(120); - } - @include breakpoint (md) { - padding-top: pxVW(200); - } - @include breakpoint (xl) { - padding-top: 200px; - padding-bottom: 120px; - } - } - } - - - - /* - ** Grid view - */ - &--grid { - .photos__view { - @include breakpoint (md) { - display: grid; - grid-template-columns: repeat(2, 1fr); - grid-column-gap: 48px; - grid-row-gap: 72px; - padding-left: 192px; - padding-right: 64px; - } - @include breakpoint (xxl) { - padding-left: 192px; - } - @include breakpoint (1776px) { - padding-right: 0; - } - } - - // Photo - .photo { - display: flex; - flex-direction: column-reverse; - margin-bottom: 40px; - - @include breakpoint (mob) { - margin-bottom: pxVW(176); - } - @include breakpoint (md) { - margin-bottom: 0; - } - - // Every second (on column 2) - &--odd { - @include breakpoint (md) { - transform: translateY(-64px); - } - } - - .wrap, .wrapper { - padding: 0; - margin: 0; - } - - // Location - &__location { - text-align: left; - - h2 { - font-size: rem(28px); - margin-top: 24px; - white-space: normal; - } - - p { - font-size: rem(12px); - margin-top: 8px; - } - } - - // Image informations - &__img { - border-radius: 8px; - } - &__number { - font-size: rem(96px); - bottom: -88px; - right: 24px; - z-index: 1; - transform: none; - top: auto; - left: auto; - text-align: right; - } - &__date { - display: none; - } - } - - // Pagination - .pagination { - margin-top: 64px; - } - } -} diff --git a/src/style/pages/_homepage.scss b/src/style/pages/_homepage.scss deleted file mode 100644 index fdb6210..0000000 --- a/src/style/pages/_homepage.scss +++ /dev/null @@ -1,138 +0,0 @@ -// Introduction -.intro { - background-color: $color-tertiary; - overflow: hidden; - - // Title - .title-parallax { - margin-top: -#{pxVW(160)}; - margin-left: -#{pxVW(160)}; - - @include breakpoint (1920px) { - margin-top: -160px; - margin-left: auto; - } - } - - // Description - &__description { - margin-top: 14vw; - margin-bottom: 72px; - padding: 0 32px; - color: $color-text; - - @include breakpoint (600px) { - margin-top: 72px; - } - @include breakpoint (sm) { - margin-left: auto; - margin-right: auto; - margin-bottom: 120px; - padding: 0; - } - - p { - margin-bottom: 40px; - - @include breakpoint (sm) { - margin-bottom: 72px; - } - } - } - - // Carousel - .carousel { - position: relative; - - // Beige background under - &:after { - content: ""; - position: absolute; - z-index: 0; - top: 0; - left: 0; - right: 0; - display: block; - width: 100%; - height: pxVW(768); - background-color: $color-tertiary; - - @include breakpoint (xxl) { - height: 820px; - } - @media (min-aspect-ratio: 16/10) { - height: 36vw; - } - } - - // Photos - .gallery__picture:before { - background-color: $color-secondary; - } - } -} - - -// Explore -.explore--homepage { - margin-top: pxVW(248); - - @include breakpoint (lg) { - margin-top: 248px; - } - - // Description - .style-description { - color: $color-tertiary; - } - - // Globe - // .globe { - // } - - // Browse - .browse { - margin-top: 4vw; - - @include breakpoint (xl) { - margin-top: 72px; - } - } - - // Of text - .of { - display: flex; - justify-content: center; - margin-bottom: pxVW(224); - font-family: $font-serif-extra; - font-size: pxVW(248); - line-height: 1; - color: $color-lightpurple; - text-transform: uppercase; - user-select: none; - pointer-events: none; - - @include breakpoint (lg) { - margin-bottom: 200px; - font-size: rem(248px); - } - - span { - will-change: transform; - } - } - - // Massive title - .anim-title { - margin-top: -#{pxVW(224)}; - margin-left: -60px; - - @include breakpoint (sm) { - margin-top: -184px; - } - - span:nth-of-type(1) { - letter-spacing: -6vw; - } - } -} diff --git a/src/style/pages/_page.scss b/src/style/pages/_page.scss deleted file mode 100644 index 34b419a..0000000 --- a/src/style/pages/_page.scss +++ /dev/null @@ -1,106 +0,0 @@ -.page { - overflow-x: hidden; - min-height: 100vh; - display: flex; - flex-direction: column; - justify-content: space-between; - - // Page part - &__part { - will-change: transform, opacity; - } - - // Top part - &__top { - margin-top: 96px; - margin-bottom: 56px; - display: flex; - align-items: center; - justify-content: center; - position: relative; - - @include breakpoint (sm) { - margin-top: 120px; - margin-bottom: 96px; - } - - a { - position: absolute; - top: -64px; - - @include breakpoint (sm){ - top: 50%; - left: 0; - transform: translateY(-50%); - } - } - } - - // Description - &__description { - max-width: 312px; - margin: 0 auto; - margin-bottom: 72px; - color: $color-tertiary; - - @include breakpoint (sm) { - max-width: 472px; - margin-bottom: 120px; - } - - // Some margins - h1 + p { - margin-top: 24px; - } - p + .button { - margin-top: 40px; - } - } - - // Category - &__category { - margin-bottom: 96px; - text-align: center; - - &:last-child { - margin-bottom: 0; - } - - h2 { - margin-bottom: 56px; - } - dl { - margin-bottom: 40px; - } - dt { - margin-bottom: 4px; - - @include breakpoint (sm) { - margin-bottom: 8px; - } - } - dd { - width: 65%; - max-width: 560px; - min-width: 232px; - margin: 0 auto; - } - } - - // Globe - .globe--part { - margin-top: 72px; - - @include breakpoint (sm) { - margin-top: 136px; - } - } - - - /* - ** Credit page - */ - &--credits { - z-index: 120; - } -} \ No newline at end of file diff --git a/src/style/pages/_place.scss b/src/style/pages/_place.scss deleted file mode 100644 index 1720dc2..0000000 --- a/src/style/pages/_place.scss +++ /dev/null @@ -1,200 +0,0 @@ -// Place section -.place { - position: relative; - overflow: hidden; - - // Title - &__title { - position: relative; - z-index: 2; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - max-height: 768px; - padding: pxVW(350) 0 pxVW(200); - text-align: center; - - @media screen and (orientation: portrait) and (max-width: $screen-xs) { - height: 144vw; - padding: 0; - } - @include breakpoint (sm) { - flex-direction: row; - align-items: flex-end; - padding: pxVW(240) 0 pxVW(288); // 528 - height: auto; - max-height: none; - } - @include breakpoint (xxl) { - padding-top: 240px; - padding-bottom: 280px; - } - - h1 { - --offset: #{pxVW(72)}; - position: relative; - z-index: 2; - display: inline-block; - text-align: center; - padding-left: 3vw; - pointer-events: none; - - .anim-translate { - display: inline-block; - } - - @include breakpoint (xl) { - --offset: 72px; - } - } - - &_top { - margin-left: calc(-1 * var(--offset)); - text-align: left; - } - &_bottom { - text-align: right; - margin-left: var(--offset); - } - - // Switcher button - .button-control { - z-index: 1; - margin: 32px auto 0; - flex-shrink: 0; - - @include breakpoint (sm) { - margin-left: -24px; - margin-right: 0; - margin-top: 0; - } - } - } - - // Description - &__description { - position: relative; - z-index: 2; - padding-top: pxVW(200); - padding-bottom: 72px; - background-color: $color-tertiary; - will-change: transform, opacity; - - @include breakpoint (mob) { - padding-bottom: 96px; - } - @include breakpoint (sm) { - padding-bottom: pxVW(240); - } - @include breakpoint (md) { - border-radius: 8px 0 0 8px; - } - @include breakpoint (xxl) { - padding-top: 200px; - padding-bottom: 240px; - } - - .wrapper { - margin: 0; - max-width: 1280px; - } - - p { - font-size: rem(18px); - font-family: $font-sans-light; - line-height: 1.64; - color: $color-text; - - @include breakpoint (sm) { - font-size: rem(22px); - } - @include breakpoint (lg) { - font-size: 1rem; - } - } - - // Updated notice - .updated { - font-size: rem(12px); - margin-top: 32px; - - strong { - font-family: $font-sans-sb; - color: rgba($color-text, 0.4); - } - - @include breakpoint (md) { - display: none; - } - } - - // Toggle - .toggle { - display: none; - - @include breakpoint (md) { - display: inline-flex; - } - } - - // Right side background completion - &:after { - content: ""; - display: block; - position: absolute; - top: 0; - right: -49.9vw; - width: 50vw; - height: 100%; - background-color: $color-tertiary; - } - } - - // Wrap - &__wrap { - padding: 0; - - @include breakpoint (md) { - padding-left: 128px; - } - } - - // Background illustration - &__illustration { - position: absolute; - z-index: 0; - top: 0; - left: 0; - width: 100%; - height: 100%; - will-change: transform, opacity; - - .parallax { - width: 100%; - height: 100%; - max-width: 1760px; - margin: 0 auto; - } - &_img { - position: relative; - left: 50%; - width: 100%; - height: 100%; - transform: translateX(-50%); - transform-origin: 0 0; - background-image: var(--url-mobile); - background-position: 0 0; - background-repeat: no-repeat; - background-size: 100% auto; - - @include breakpoint (sm) { - background-image: var(--url-desktop); - } - @media (min-width: $screen-sm) and (-webkit-min-device-pixel-ratio: 2), - (min-width: $screen-sm) and (min-resolution: 192dpi) { - background-image: var(--url-desktop-2x); - } - } - } -} \ No newline at end of file diff --git a/src/style/pages/_viewer.scss b/src/style/pages/_viewer.scss deleted file mode 100644 index 65f1011..0000000 --- a/src/style/pages/_viewer.scss +++ /dev/null @@ -1,182 +0,0 @@ -// Viewer -.viewer { - position: relative; - height: 100vh; - min-height: 560px; - display: flex; - flex-direction: column; - justify-content: space-between; - - @include breakpoint (sm) { - width: 100%; - padding-top: 24px; - } - - - /* - ** Top part - */ - &__top { - position: relative; - z-index: 10; - margin-top: 16px; - padding-left: 24px; - padding-right: 16px; - display: flex; - justify-content: space-between; - align-items: center; - flex-flow: row wrap; - - @include breakpoint (sm) { - justify-content: center; - margin-bottom: 24px; - } - @include breakpoint (lg) { - margin-top: 24px; - margin-bottom: 48px; - } - - // Tip message - .tip { - font-family: $font-sans-sb; - font-size: rem(10px); - text-transform: uppercase; - color: rgba($color-tertiary, 0.4); - letter-spacing: 1px; - - @include breakpoint (sm) { - display: none; - } - } - } - - // Buttons - &__buttons { - display: flex; - - a { - margin-left: 16px; - - &:first-child { - margin-left: 0; - } - } - } - - - /* - ** Carousel - */ - .carousel { - width: 100%; - - @include breakpoint (xs) { - margin-top: 20%; - } - @include breakpoint (sm) { - margin: auto; - } - // Landscape - @media screen and (min-width: $screen-sm) and (max-width: $screen-lg) and (orientation: landscape) { - width: 95%; - } - - // Wrap - .wrap { - @include breakpoint (xs) { - width: 100%; - } - } - - // Gallery - .gallery { - left: 0; - right: 0; - - &__images { - @include breakpoint (xs) { - overflow: hidden; - } - } - - // Specific box shadow for images - &__photo { - box-shadow: 0 pxVW(16) pxVW(40) rgba(#2e025c, 0.4); - } - } - - // Informations - &__infos { - margin-top: 32px; - margin-bottom: 16px; - padding: 0 24px; - - @include breakpoint (sm) { - display: flex; - justify-content: space-between; - padding: 0; - } - } - - // Location - &__locations { - @include breakpoint (sm) { - width: 75%; - } - } - &__location { - margin-top: 0; - - @include breakpoint (sm) { - text-align: left; - } - } - - // Date - &__date { - font-size: rem(12px); - color: rgba($color-tertiary, 0.5); - text-align: center; - - @include breakpoint (sm) { - font-size: rem(14px); - text-align: left; - } - } - - // Photo number - &__number { - position: absolute; - z-index: 1; - left: 0; - top: -28vw; - width: 100%; - height: 40vw; - overflow: hidden; - - @include breakpoint (sm) { - top: auto; - right: 8vw; - left: auto; - bottom: -14.5vw; - width: auto; - height: 16.8vw; - font-size: 21vw; - text-align: right; - } - @include breakpoint (md) { - bottom: -180px; - height: 232px; - font-size: rem(300px); - } - } - - // Dots - &__dots { - position: relative; - z-index: 20; - margin-top: 24px; - margin-bottom: 24px; - } - } -} diff --git a/src/style/style.scss b/src/style/style.scss index 357fd5d..ec7cc6a 100644 --- a/src/style/style.scss +++ b/src/style/style.scss @@ -1,54 +1,36 @@ @charset "UTF-8"; +// Dependencies +@import "sanitize.css/sanitize"; + // Tools @import "variables"; @import "tools/mixins"; @import "tools/functions"; @import "tools/helpers"; -// Dependencies -@import "normalize.css/normalize"; - // Base @import "base"; @import "fonts"; +@import "typography"; +// Layout +@import "layout/grid"; + + +// Atomic Design System // Atoms -@import "atoms/button"; -@import "atoms/button-outline"; -@import "atoms/button-control"; -@import "atoms/icon-globe"; -@import "atoms/toggle"; -@import "atoms/link"; -@import "atoms/switcher"; -@import "atoms/counter"; -@import "atoms/badge"; -@import "atoms/inputs"; +// @import "atoms/atom"; // Molecules -@import "molecules/location"; -@import "molecules/photo"; -@import "molecules/globe"; -@import "molecules/newsletter"; -@import "molecules/form"; +// @import "molecules/molecule"; // Organisms -@import "organisms/carousel"; -@import "organisms/photos"; -@import "organisms/fullscreen"; -@import "organisms/locations"; -@import "organisms/pagination"; -@import "organisms/footer"; +// @import "organisms/organism"; -// Layouts -@import "layouts/main"; -@import "layouts/explore"; // Pages -@import "pages/page"; -@import "pages/homepage"; -@import "pages/viewer"; -@import "pages/place"; +// @import "pages/page"; -// Animations -@import "animations"; +// Misc +// @import "animations"; \ No newline at end of file diff --git a/src/style/tools/_functions.scss b/src/style/tools/_functions.scss index 824afa1..b03ef0f 100644 --- a/src/style/tools/_functions.scss +++ b/src/style/tools/_functions.scss @@ -1,34 +1,43 @@ +@use "sass:math"; + /* PX to REM ========================================================================== */ -@function rem ($target, $context: $base-font-size) { +@function rem($target, $context: $base-font-size) { @if $target == 0 { @return 0 } - $size: $target / $context; - @return round($size * 1000) / 1000 + rem; + $size: math.div($target, $context); + @return math.div(round($size * 1000), 1000) + rem; } /* PX to VW ========================================================================== */ -@function pxVW ($value, $base: $base-width) { - @if $value == 0 { @return 0; } - @return ($value / $base) * 100 + vw; +@function pxVW($value, $base: $base-width) { + @if $value == 0 { @return 0 } + @return math.div($value, $base) * 100 + vw; } /* VW to PX ========================================================================== */ -@function vwPX ($value, $base: $base-width) { +@function vwPX($value, $base: $base-width) { @if $value == 0 { @return 0; } - @return ($value * $base) / 100 + px; + @return math.div(($value * $base), 100) + px; } /* Headings ========================================================================== */ -@function headings ($from: 1, $to: 6) { +@function headings($from: 1, $to: 6) { @if $from == $to { @return "h#{$from}"; } @else { @return "h#{$from}," + headings($from + 1, $to); } } + + +/* HEX color to RGB +========================================================================== */ +@function hexToRGB($color) { + @return red($color), green($color), blue($color); +} \ No newline at end of file diff --git a/src/style/tools/_helpers.scss b/src/style/tools/_helpers.scss index b731d36..05bbae4 100644 --- a/src/style/tools/_helpers.scss +++ b/src/style/tools/_helpers.scss @@ -27,13 +27,13 @@ margin: 0 auto; padding: 0 16px; - @include breakpoint (mob) { + @include bp (mob) { padding: 0 24px; } - @include breakpoint (sm) { + @include bp (sm) { padding: 0 60px; } - @include breakpoint (md) { + @include bp (md) { padding: 0 128px; } } @@ -44,10 +44,10 @@ margin: 0 auto; padding: 0 pxVW(128); - @include breakpoint (sm) { + @include bp (sm) { padding: 0 pxVW(224); } - @include breakpoint (xxl) { + @include bp (xxl) { padding: 0 224px; } } diff --git a/src/style/tools/_mixins.scss b/src/style/tools/_mixins.scss index abf396f..2ca82c7 100644 --- a/src/style/tools/_mixins.scss +++ b/src/style/tools/_mixins.scss @@ -1,3 +1,5 @@ +@use "sass:math"; + // Hide text %hide-text { overflow: hidden; @@ -16,8 +18,8 @@ // Get REM font-size and line-height @mixin fs-lh ($fontSize, $lineHeight) { - line-height: round(($fontSize / $lineHeight) * 1000) / 1000; font-size: rem($fontSize); + line-height: math.div(round(math.div($lineHeight, $fontSize) * 1000), 1000); } // Top-right-bottom-left @@ -25,67 +27,60 @@ top: $value; right: $value; bottom: $value; left: $value; } -// Center vertically -@mixin center-y { - top: 50%; - transform: translate(0, -50%); -} - -// Center horizontally -@mixin center-x { - left: 50%; - transform: translate(-50%, 0); -} - -// Center vertically and horizontally -@mixin center-xy { - top: 50%; left: 50%; - transform: translate(-50%, -50%); -} - // Smooth fonts @mixin font-smooth { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } -// Reponsive breakpoints -@mixin breakpoint ($size) { - @if ($size == mob) { - @media (min-width: $screen-mob) { @content; } +// Font-face +@mixin font-face ($family, $variant, $weight: normal, $style: normal, $display: swap) { + @font-face { + font-family: "#{$family}"; + font-style: $style; + font-weight: $weight; + font-display: $display; + src: local("#{$variant}"), + url("#{$dir-fonts}/#{$variant}.woff2") format("woff2"), + url("#{$dir-fonts}/#{$variant}.woff") format("woff"); } - @else if ($size == xs) { - @media (max-width: $screen-xs) { @content; } - } - @else if ($size == sm) { - @media (min-width: $screen-sm) { @content; } - } - @else if ($size == md) { - @media (min-width: $screen-md) { @content; } - } - @else if ($size == lg) { - @media (min-width: $screen-lg) { @content; } - } - @else if ($size == xl) { - @media (min-width: $screen-xl) { @content; } - } - @else if ($size == xxl) { - @media (min-width: $screen-xxl) { @content; } +} + + +/* +** Reponsive breakpoint +*/ +// Based on Width +@mixin bp ($size, $to: min, $sizes: $breakpoints) { + // Size is in map + @if map-has-key($sizes, $size) { + $size: map-get($sizes, $size); + + @if ($to == max) { + @media (max-width: #{$size}) { + @content; + } + } @else { + @media (min-width: #{$size}) { + @content; + } + } } + // Not in the map @else { @media (min-width: $size) { @content; } } } -// Font-face -@mixin font-face ($family) { - @font-face { - font-family: "#{$family}"; - font-style: normal; - font-weight: normal; - font-display: swap; - src: local("#{$family}"), - url("#{$dir-fonts}/#{$family}.woff2") format("woff2"), - url("#{$dir-fonts}/#{$family}.woff") format("woff"); +// Based on Height +@mixin bph ($size, $to: min, $sizes: $breakpoints) { + @if ($to == max) { + @media (max-height: #{$size}) { + @content; + } + } @else { + @media (min-height: #{$size}) { + @content; + } } } diff --git a/src/utils/AnalyticsTracker.svelte b/src/utils/AnalyticsTracker.svelte deleted file mode 100644 index c69adab..0000000 --- a/src/utils/AnalyticsTracker.svelte +++ /dev/null @@ -1,29 +0,0 @@ - - - - {#if process.env.NODE_ENV !== 'development'} - - {/if} - diff --git a/src/utils/SocialMetas.svelte b/src/utils/SocialMetas.svelte deleted file mode 100644 index 4b95b61..0000000 --- a/src/utils/SocialMetas.svelte +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - -{#if image} - -{/if} - - - - - -{#if image} - -{/if} diff --git a/src/utils/Transition.svelte b/src/utils/Transition.svelte deleted file mode 100644 index fb2a34a..0000000 --- a/src/utils/Transition.svelte +++ /dev/null @@ -1,77 +0,0 @@ - - -{#if !show} -