Compare commits

...

7 Commits

Author SHA1 Message Date
Dawid Wysokiński 30ca5b7f84
add .drone.yml
continuous-integration/drone/tag Build is passing Details
2022-09-25 13:15:48 +02:00
Dawid Wysokiński c5b82dcef4
refactor 2022-09-25 12:55:36 +02:00
renovate[bot] 84430bc856
chore(deps): update node.js to v14.19.1 (#74)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-18 21:28:19 +01:00
renovate[bot] d906767b6d
Update dependency @sentry/nextjs to v6.18.2 (#73)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-12 07:03:25 +00:00
renovate[bot] c5f49b4cc6
Update actions/checkout action to v3 (#72)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-12 05:25:22 +00:00
renovate[bot] 9832911eda
Update dependency @sentry/nextjs to v6.18.1 (#71)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-02-28 19:45:36 +00:00
renovate[bot] d3c808557e
Update dependency @sentry/nextjs to v6.18.0 (#66)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-02-24 20:57:59 +00:00
15 changed files with 87 additions and 408 deletions

59
.drone.yml Normal file
View File

@ -0,0 +1,59 @@
---
kind: pipeline
type: docker
name: linux-amd64
platform:
os: linux
arch: amd64
steps:
- name: publish
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: gitea.dwysokinski.me
repo: gitea.dwysokinski.me/zdam-egzamin-zawodowy-docker/website
auto_tag: true
auto_tag_suffix: linux-amd64
dockerfile: Dockerfile
trigger:
event:
- tag
---
kind: pipeline
type: docker
name: manifest
steps:
- name: manifest
image: plugins/manifest
settings:
auto_tag: "true"
ignore_missing: "true"
spec: manifest.tmpl
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: manifest-latest
image: plugins/manifest
settings:
tags: latest
ignore_missing: "true"
spec: manifest.tmpl
username:
from_secret: docker_username
password:
from_secret: docker_password
trigger:
event:
- tag
depends_on:
- linux-amd64

2
.env
View File

@ -1 +1 @@
DATE_OF_THE_EXAM=2022-01-14T00:00:00.000Z
DATE_OF_THE_EXAM=2023-01-14T00:00:00.000Z

View File

@ -1,56 +0,0 @@
name: Build and push to registry
on:
push:
tags:
- '*'
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.REGISTRY_LOGIN }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Push to Docker Hub
uses: docker/build-push-action@v2
with:
context: .
build-args: |
SENTRY_WEBPACK_PLUGIN_ENABLED=true
SENTRY_URL=${{ secrets.SENTRY_URL }}
SENTRY_ORG=${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT=${{ secrets.SENTRY_PROJECT }}
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_DSN=${{ secrets.SENTRY_DSN }}
VERSION=${{ steps.get_version.outputs.VERSION }}
PLAUSIBLE_ENABLED=true
PLAUSIBLE_DOMAIN=${{ secrets.PLAUSIBLE_DOMAIN }}
PLAUSIBLE_CUSTOM_DOMAIN=${{ secrets.PLAUSIBLE_CUSTOM_DOMAIN }}
tags: |
${{ secrets.REGISTRY_NAME }}/zdam-egzamin-zawodowy-website:latest
${{ secrets.REGISTRY_NAME }}/zdam-egzamin-zawodowy-website:${{ steps.get_version.outputs.VERSION }}
file: ./Dockerfile
push: true

View File

@ -1,5 +1,5 @@
# Install dependencies only when needed
FROM node:14.19.0-alpine AS deps
FROM node:14.19.1-alpine AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
@ -7,33 +7,11 @@ COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
# Rebuild the source code only when needed
FROM node:14.19.0-alpine AS builder
ARG VERSION="v0.0.0"
ARG SENTRY_WEBPACK_PLUGIN_ENABLED="false"
ARG SENTRY_URL=""
ARG SENTRY_ORG=""
ARG SENTRY_PROJECT=""
ARG SENTRY_AUTH_TOKEN=""
ARG SENTRY_DSN=""
ARG PLAUSIBLE_ENABLED="false"
ARG PLAUSIBLE_DOMAIN=""
ARG PLAUSIBLE_CUSTOM_DOMAIN=""
FROM node:14.19.1-alpine AS builder
WORKDIR /app
ENV SENTRY_WEBPACK_PLUGIN_ENABLED=$SENTRY_WEBPACK_PLUGIN_ENABLED \
SENTRY_URL=$SENTRY_URL \
SENTRY_ORG=$SENTRY_ORG \
SENTRY_PROJECT=$SENTRY_PROJECT \
SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN \
SENTRY_DSN=$SENTRY_DSN \
NEXT_PUBLIC_SENTRY_DSN=$SENTRY_DSN \
NEXT_PUBLIC_VERSION=$VERSION \
NEXT_PUBLIC_PLAUSIBLE_ENABLED=$PLAUSIBLE_ENABLED \
NEXT_PUBLIC_PLAUSIBLE_DOMAIN=$PLAUSIBLE_DOMAIN \
NEXT_PUBLIC_PLAUSIBLE_CUSTOM_DOMAIN=$PLAUSIBLE_CUSTOM_DOMAIN \
BUILDING_PROCESS=true
ENV BUILDING_PROCESS=true
COPY . .
COPY --from=deps /app/node_modules ./node_modules
@ -41,25 +19,11 @@ COPY --from=deps /app/node_modules ./node_modules
RUN yarn build
# Production image, copy all the files and run next
FROM node:14.19.0-alpine AS runner
FROM node:14.19.1-alpine AS runner
WORKDIR /app
ARG VERSION="0.0.0"
ARG SENTRY_DSN=""
ARG PLAUSIBLE_ENABLED="false"
ARG PLAUSIBLE_DOMAIN=""
ARG PLAUSIBLE_CUSTOM_DOMAIN=""
ENV NODE_ENV=production \
SENTRY_DSN=$SENTRY_DSN \
NEXT_PUBLIC_SENTRY_DSN=$SENTRY_DSN \
VERSION=$VERSION \
NEXT_PUBLIC_VERSION=$VERSION \
NEXT_PUBLIC_PLAUSIBLE_ENABLED=$PLAUSIBLE_ENABLED \
NEXT_PUBLIC_PLAUSIBLE_DOMAIN=$PLAUSIBLE_DOMAIN \
NEXT_PUBLIC_PLAUSIBLE_CUSTOM_DOMAIN=$PLAUSIBLE_CUSTOM_DOMAIN \
BUILDING_PROCESS=false
ENV BUILDING_PROCESS=false
COPY --from=builder /app/next.config.js ./
COPY --from=builder /app/public ./public

View File

@ -1,29 +1,7 @@
# zdamegzaminzawodowy.pl
# [zdamegzaminzawodowy.pl](https://zdamegzaminzawodowy.pl)
![Screenshot](/screenshots/indexpage.png?raw=true)
A web app for practising the theoretical part of the [vocational exam](https://cke.gov.pl/en/vocational-examination/).
## Development
### Prerequisites
1. Node.JS
2. yarn
3. [Configured backend](https://github.com/zdam-egzamin-zawodowy/backend)
### Installation
1. Clone this repo
```
git clone git@github.com:zdam-egzamin-zawodowy/website.git
```
2. Open the folder with this project in a terminal.
3. ``yarn install``
4. ``yarn run dev``
## License
Distributed under the MIT License. See ``LICENSE`` for more information.

13
manifest.tmpl Normal file
View File

@ -0,0 +1,13 @@
image: gitea.dwysokinski.me/zdam-egzamin-zawodowy-docker/website:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
{{#if build.tags}}
tags:
{{#each build.tags}}
- {{this}}
{{/each}}
{{/if}}
manifests:
-
image: gitea.dwysokinski.me/zdam-egzamin-zawodowy-docker/website:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
platform:
architecture: amd64
os: linux

View File

@ -1,17 +1,8 @@
const { withSentryConfig } = require('@sentry/nextjs');
const CDN = process.env.NEXT_PUBLIC_CDN_URI
? new URL(process.env.NEXT_PUBLIC_CDN_URI)
: '';
const cfg = {
sentry: {
disableServerWebpackPlugin:
process.env.SENTRY_WEBPACK_PLUGIN_ENABLED !== 'true',
get disableClientWebpackPlugin() {
return this.disableServerWebpackPlugin;
},
},
module.exports = {
i18n: {
locales: ['pl'],
defaultLocale: 'pl',
@ -34,8 +25,3 @@ const cfg = {
];
},
};
module.exports = withSentryConfig(cfg, {
silent: true,
release: 'zdam-egzamin-zawodowy-website@' + process.env.NEXT_PUBLIC_VERSION,
});

View File

@ -17,14 +17,12 @@
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@sentry/nextjs": "6.17.9",
"clsx": "^1.1.1",
"date-fns": "^2.19.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"lodash": "^4.17.21",
"next": "12.1.0",
"next-plausible": "^3.1.4",
"next-sitemap": "^1.6.25",
"polish-plurals": "^1.1.0",
"react": "17.0.2",

View File

@ -1 +0,0 @@
import './sentry.server.config'

View File

@ -1,21 +0,0 @@
import * as Sentry from '@sentry/nextjs';
const initSentry = () => {
const SENTRY_DSN =
process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
if (!SENTRY_DSN) {
return;
}
Sentry.init({
dsn: SENTRY_DSN,
tracesSampleRate: 0.3,
environment: process.env.NODE_ENV ?? 'development',
release:
'zdam-egzamin-zawodowy-website@' +
(process.env.NEXT_PUBLIC_VERSION ?? 'development'),
});
};
initSentry();

View File

@ -1,12 +1,10 @@
import { NextPage } from 'next';
import { ErrorProps } from 'next/error';
import * as Sentry from '@sentry/nextjs';
import { Box, Typography } from '@material-ui/core';
import Layout from 'common/Layout/Layout';
import Section from 'common/Section/Section';
import Seo from 'common/Seo/Seo';
import { useEffect } from 'react';
const getTitleForStatusCode = (statusCode: number): string => {
switch (statusCode) {
@ -17,20 +15,7 @@ const getTitleForStatusCode = (statusCode: number): string => {
}
};
const ErrorPage: NextPage<
ErrorProps & { hasGetInitialPropsRun?: boolean; err?: any }
> = ({ statusCode, title, hasGetInitialPropsRun, err }) => {
useEffect(() => {
// getInitialProps is not called in case of
// https://github.com/vercel/next.js/issues/8592. As a workaround, we pass
// err via _app.js so it can be captured
if (hasGetInitialPropsRun || !err) {
return;
}
Sentry.captureException(err);
}, [hasGetInitialPropsRun, err]);
const ErrorPage: NextPage<ErrorProps> = ({ statusCode, title }) => {
const _title = title ?? getTitleForStatusCode(statusCode);
return (
@ -54,26 +39,10 @@ const ErrorPage: NextPage<
);
};
ErrorPage.getInitialProps = async ({ res, err, asPath }) => {
const props = {
ErrorPage.getInitialProps = async ({ res, err }) => {
return {
statusCode: (res ? res.statusCode : err?.statusCode) ?? 404,
hasGetInitialPropsRun: true,
};
if (!err) {
Sentry.captureException(
new Error(`_error.js getInitialProps missing data at path: ${asPath}`)
);
await Sentry.flush(2000);
return props;
}
Sentry.captureException(err);
await Sentry.flush(2000);
return props;
};
export default ErrorPage;

View File

@ -1,25 +0,0 @@
import React, { PropsWithChildren } from 'react';
import PlausibleProvider from 'next-plausible';
type PlausibleProviderProps = PropsWithChildren<
Partial<Parameters<typeof PlausibleProvider>[0]>
>;
const MyPlausibleProvider = ({ children, ...rest }: PlausibleProviderProps) => {
return (
<PlausibleProvider
enabled={process.env.NEXT_PUBLIC_PLAUSIBLE_ENABLED === 'true'}
domain={process.env.NEXT_PUBLIC_PLAUSIBLE_DOMAIN ?? ''}
customDomain={process.env.NEXT_PUBLIC_PLAUSIBLE_CUSTOM_DOMAIN}
trackLocalhost={
process.env.NEXT_PUBLIC_PLAUSIBLE_TRACK_LOCALHOST === 'true'
}
selfHosted={process.env.NEXT_PUBLIC_PLAUSIBLE_CUSTOM_DOMAIN !== ''}
{...rest}
>
{children}
</PlausibleProvider>
);
};
export default MyPlausibleProvider;

View File

@ -1,7 +1,6 @@
import '@kichiyaki/roboto';
import { useEffect } from 'react';
import { AppProps } from 'next/app';
import PlausibleProvider from 'libs/plausible/PlausibleProvider';
import ThemeProvider from 'libs/material-ui/ThemeProvider';
const App = ({ Component, pageProps }: AppProps) => {
@ -14,9 +13,7 @@ const App = ({ Component, pageProps }: AppProps) => {
return (
<ThemeProvider>
<PlausibleProvider>
<Component {...pageProps} />
</PlausibleProvider>
<Component {...pageProps} />
</ThemeProvider>
);
};

View File

@ -1,7 +1,6 @@
import { GetServerSideProps } from 'next';
import { gql } from 'graphql-request';
import { getServerSideSitemap } from 'next-sitemap';
import * as Sentry from '@sentry/nextjs';
import { ISitemapField } from 'next-sitemap/dist/@types/interface';
import { createClient } from 'libs/graphql';
import { Query, QueryQualificationsArgs } from 'libs/graphql';
@ -49,7 +48,6 @@ export const getServerSideProps: GetServerSideProps = async ctx => {
}
} catch (e) {
console.log('server-sitemap.xml', e.message);
Sentry.captureException(e);
}
return getServerSideSitemap(ctx, fields);

186
yarn.lock
View File

@ -1128,140 +1128,6 @@
dependencies:
any-observable "^0.3.0"
"@sentry/browser@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-6.17.9.tgz#62eac0cc3c7c788df6b4677fe9882d3974d84027"
integrity sha512-RsC8GBZmZ3YfBTaIOJ06RlFp5zG7BkUoquNJmf4YhRUZeihT9osrn8qUYGFWSV/UduwKUIlSGJA/rATWWhwPRQ==
dependencies:
"@sentry/core" "6.17.9"
"@sentry/types" "6.17.9"
"@sentry/utils" "6.17.9"
tslib "^1.9.3"
"@sentry/cli@^1.72.0":
version "1.72.2"
resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-1.72.2.tgz#ba57d8248fe4d2836883bbe3047fdd75cd6739b3"
integrity sha512-H/yrxyYscOzn0YBOzPsBnIW7QxsSQrG1kQfD1FisuMhPl67D948DPkagAms4sy1v+MntBBNnD4Z+WsdRzFWXJQ==
dependencies:
https-proxy-agent "^5.0.0"
mkdirp "^0.5.5"
node-fetch "^2.6.7"
npmlog "^4.1.2"
progress "^2.0.3"
proxy-from-env "^1.1.0"
"@sentry/core@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.17.9.tgz#1c09f1f101207952566349a1921d46db670c8f62"
integrity sha512-14KalmTholGUtgdh9TklO+jUpyQ/D3OGkhlH1rnGQGoJgFy2eYm+s+MnUEMxFdGIUCz5kOteuNqYZxaDmFagpQ==
dependencies:
"@sentry/hub" "6.17.9"
"@sentry/minimal" "6.17.9"
"@sentry/types" "6.17.9"
"@sentry/utils" "6.17.9"
tslib "^1.9.3"
"@sentry/hub@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.17.9.tgz#f2c355088a49045e49feafb5356ca5d6e1e31d3c"
integrity sha512-34EdrweWDbBV9EzEFIXcO+JeoyQmKzQVJxpTKZoJA6PUwf2NrndaUdjlkDEtBEzjuLUTxhLxtOzEsYs1O6RVcg==
dependencies:
"@sentry/types" "6.17.9"
"@sentry/utils" "6.17.9"
tslib "^1.9.3"
"@sentry/integrations@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-6.17.9.tgz#a5965f0edb3ac72c3d62809733e1e87940bf7304"
integrity sha512-5eWBYeUcwHBJSuHNRpBlazjZEnpKz5aS5HoXdL7VZX0WPZ5Ci1oRAWudJWqXLsYW7bcng75vLQowwOw77Ll0fg==
dependencies:
"@sentry/types" "6.17.9"
"@sentry/utils" "6.17.9"
localforage "^1.8.1"
tslib "^1.9.3"
"@sentry/minimal@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.17.9.tgz#0edca978097b3f56463ede028395d40adbf2ae84"
integrity sha512-T3PMCHcKk6lkZq6zKgANrYJJxXBXKOe+ousV1Fas1rVBMv7dtKfsa4itqQHszcW9shusPDiaQKIJ4zRLE5LKmg==
dependencies:
"@sentry/hub" "6.17.9"
"@sentry/types" "6.17.9"
tslib "^1.9.3"
"@sentry/nextjs@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/nextjs/-/nextjs-6.17.9.tgz#0f3d4000e74c4df4177790a68aad35e583515ddd"
integrity sha512-13LG9BRu0Q3iYxzlamY5ngMZnUhApbLnrQsQQ93nkWcjtZ7ZJJxLjqIxUO/EVr8lwTAXU5fOTtRollJeKIrRhg==
dependencies:
"@sentry/core" "6.17.9"
"@sentry/hub" "6.17.9"
"@sentry/integrations" "6.17.9"
"@sentry/node" "6.17.9"
"@sentry/react" "6.17.9"
"@sentry/tracing" "6.17.9"
"@sentry/utils" "6.17.9"
"@sentry/webpack-plugin" "1.18.5"
tslib "^1.9.3"
"@sentry/node@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.17.9.tgz#9a13e2fa1739a6b334eb6aa9e1e022d2c4083cb3"
integrity sha512-jbn+q7qPGOh6D7nYoYGaAlmuvMDpQmyMwBtUVYybuZp2AALe43O3Z4LtoJ+1+F31XowpsIPZx1mwNs4ZrILskA==
dependencies:
"@sentry/core" "6.17.9"
"@sentry/hub" "6.17.9"
"@sentry/tracing" "6.17.9"
"@sentry/types" "6.17.9"
"@sentry/utils" "6.17.9"
cookie "^0.4.1"
https-proxy-agent "^5.0.0"
lru_map "^0.3.3"
tslib "^1.9.3"
"@sentry/react@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/react/-/react-6.17.9.tgz#2066e7badb48c8da6da5bd07a7746137feb74021"
integrity sha512-TYu9Yl+gsNHdt763Yh35rSHJenxXqHSfWA55bYHr8hXDWu0crI/3LDuZb1RONmCM712CaQA+M5tgApA8QbHS4Q==
dependencies:
"@sentry/browser" "6.17.9"
"@sentry/minimal" "6.17.9"
"@sentry/types" "6.17.9"
"@sentry/utils" "6.17.9"
hoist-non-react-statics "^3.3.2"
tslib "^1.9.3"
"@sentry/tracing@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.17.9.tgz#d4a6d96d88f10c9cd496e5b32f44d6e67d4c5dc7"
integrity sha512-5Rb/OS4ryNJLvz2nv6wyjwhifjy6veqaF9ffLrwFYij/WDy7m62ASBblxgeiI3fbPLX0aBRFWIJAq1vko26+AQ==
dependencies:
"@sentry/hub" "6.17.9"
"@sentry/minimal" "6.17.9"
"@sentry/types" "6.17.9"
"@sentry/utils" "6.17.9"
tslib "^1.9.3"
"@sentry/types@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.17.9.tgz#d579c33cde0301adaf8ff4762479ad017bf0dffa"
integrity sha512-xuulX6qUCL14ayEOh/h6FUIvZtsi1Bx34dSOaWDrjXUOJHJAM7214uiqW1GZxPJ13YuaUIubjTSfDmSQ9CBzTw==
"@sentry/utils@6.17.9":
version "6.17.9"
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.17.9.tgz#425fe9af4e2d6114c2e9aaede75ccb6ddf91fbda"
integrity sha512-4eo9Z3JlJCGlGrQRbtZWL+L9NnlUXgTbfK3Lk7oO8D1ev8R5b5+iE6tZHTvU5rQRcq6zu+POT+tK5u9oxc/rnQ==
dependencies:
"@sentry/types" "6.17.9"
tslib "^1.9.3"
"@sentry/webpack-plugin@1.18.5":
version "1.18.5"
resolved "https://registry.yarnpkg.com/@sentry/webpack-plugin/-/webpack-plugin-1.18.5.tgz#aaff79d8e05b8d803654490324252406c976b1cd"
integrity sha512-HycNZEcVRj/LxaG6hLsxjHo47mpxop3j7u2aUkriE2pT7XNpeypsa0WiokYzStxzCfSu8rbAbX4PchTGLMlTjw==
dependencies:
"@sentry/cli" "^1.72.0"
"@sindresorhus/is@^0.14.0":
version "0.14.0"
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
@ -2173,11 +2039,6 @@ convert-source-map@^1.7.0:
dependencies:
safe-buffer "~5.1.1"
cookie@^0.4.1:
version "0.4.2"
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432"
integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
copy-to-clipboard@^3.3.1:
version "3.3.1"
resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae"
@ -3434,11 +3295,6 @@ ignore@^5.2.0:
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
immediate@~3.0.5:
version "3.0.6"
resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"
integrity sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=
immutable@~3.7.6:
version "3.7.6"
resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b"
@ -4052,13 +3908,6 @@ levn@^0.4.1:
prelude-ls "^1.2.1"
type-check "~0.4.0"
lie@3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/lie/-/lie-3.1.1.tgz#9a436b2cc7746ca59de7a41fa469b3efb76bd87e"
integrity sha1-mkNrLMd0bKWd56QfpGmz77dr2H4=
dependencies:
immediate "~3.0.5"
lines-and-columns@^1.1.6:
version "1.2.4"
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
@ -4118,13 +3967,6 @@ load-json-file@^4.0.0:
pify "^3.0.0"
strip-bom "^3.0.0"
localforage@^1.8.1:
version "1.10.0"
resolved "https://registry.yarnpkg.com/localforage/-/localforage-1.10.0.tgz#5c465dc5f62b2807c3a84c0c6a1b1b3212781dd4"
integrity sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==
dependencies:
lie "3.1.1"
locate-path@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
@ -4262,11 +4104,6 @@ lru-cache@^6.0.0:
dependencies:
yallist "^4.0.0"
lru_map@^0.3.3:
version "0.3.3"
resolved "https://registry.yarnpkg.com/lru_map/-/lru_map-0.3.3.tgz#b5c8351b9464cbd750335a79650a0ec0e56118dd"
integrity sha1-tcg1G5Rky9dQM1p5ZQoOwOVhGN0=
make-error@^1, make-error@^1.1.1:
version "1.3.6"
resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
@ -4363,13 +4200,6 @@ mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3:
resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113"
integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
mkdirp@^0.5.5:
version "0.5.5"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
dependencies:
minimist "^1.2.5"
mkdirp@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
@ -4424,11 +4254,6 @@ natural-compare@^1.4.0:
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
next-plausible@^3.1.4:
version "3.1.4"
resolved "https://registry.yarnpkg.com/next-plausible/-/next-plausible-3.1.4.tgz#a386ff4e2327995cb4a1307e53e1b4af70817b52"
integrity sha512-NMLKJ0AKlKuvYU//RytyqSES5NtLRoH/ym3fCC02w2Ed1SrTgNRUrgpxyJrcguY/DYGPncQ3a0/nQ358vUTAwQ==
next-sitemap@^1.6.25:
version "1.9.12"
resolved "https://registry.yarnpkg.com/next-sitemap/-/next-sitemap-1.9.12.tgz#288c2dfc907039892e21eb1b0c7a94d288f323d9"
@ -4529,7 +4354,7 @@ normalize-url@^4.1.0:
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a"
integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==
npmlog@^4.0.1, npmlog@^4.1.2:
npmlog@^4.0.1:
version "4.1.2"
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
@ -4949,7 +4774,7 @@ process-nextick-args@~2.0.0:
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
progress@^2.0.0, progress@^2.0.3:
progress@^2.0.0:
version "2.0.3"
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
@ -4970,11 +4795,6 @@ prop-types@^15.6.2, prop-types@^15.7.2:
object-assign "^4.1.1"
react-is "^16.8.1"
proxy-from-env@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
pump@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
@ -5901,7 +5721,7 @@ tsconfig-paths@^3.9.0:
minimist "^1.2.0"
strip-bom "^3.0.0"
tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
tslib@^1.8.1, tslib@^1.9.0:
version "1.14.1"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==