From 25375cc4810b1e501cce1590ad8c21148ea596cb Mon Sep 17 00:00:00 2001 From: Jay Cammarano <67079013+jaycammarano@users.noreply.github.com> Date: Wed, 24 Nov 2021 16:11:26 -0500 Subject: [PATCH] Add notifications system and support user mentions in comments (#9861) * v-menu de/activated onKeyDown. No List yet. * v-list * add user suggestion * uuids replaced * user-popover working * avatars flex row with usernames in suggestions * added space to end of uuid insert * autofocus + move caret to end of last insert * removed unnecessary setTimeout() * fixed filter 500 with ids * better fix * New translations en-US.yaml (French) (#9907) * New translations en-US.yaml (French) (#9912) * New translations en-US.yaml (French) (#9916) * New translations en-US.yaml (Russian) (#9918) * New translations en-US.yaml (Swedish) (#9920) * Email updates (#9921) * add from name for emails * updatd email template style * reset password email copy * updated logo to newest version * update invite email copy * decouple field template logic * push up styling * Start on new v-template-input * Add notifications API endpoints Squashed commit of the following: commit 9d86721ef795d03bc55693c0f99bde8e269d60e9 Merge: b4458c19f 34131d06e Author: rijkvanzanten Date: Mon Nov 22 09:27:43 2021 -0500 Merge branch 'mentions' into mentions-api commit b4458c19f7c54f18fa415fc04c63642c2f5a17b0 Author: rijkvanzanten Date: Thu Nov 18 18:34:04 2021 -0500 Remove unused import commit e6a9d36bbfdf95cb18d29336da61ecb14b677934 Author: rijkvanzanten Date: Thu Nov 18 18:28:31 2021 -0500 Extract user mentions from comments commit b3e571a2daa287e1740a050096913662a57e9861 Merge: c93b833d2 af2a6dd7f Author: rijkvanzanten Date: Thu Nov 18 17:39:52 2021 -0500 Merge branch 'mentions' into mentions-api commit c93b833d2b848e306c434b370d4e4e11967e85d0 Author: rijkvanzanten Date: Thu Nov 18 17:35:45 2021 -0500 Send emails w/ parsed MD commit 64bbd6596f20a07028d2387d60e33dfe4f91c032 Author: rijkvanzanten Date: Thu Nov 18 16:18:16 2021 -0500 Add notifications endpoint + permissions commit fba55c02dc9c303a38b1b958350684cccd3dd82c Author: rijkvanzanten Date: Thu Nov 18 15:33:28 2021 -0500 Add system data for notifications * push * Make v-template-input work * Add the two-way binding * submit button posting, not clearing text area * comment text area clearing on submit * Replace insertion correctly * Added scope support to LDAP group and user search (#9529) * Added scope support LDAP group and user search * Fixed linter screwing up my markdown * Update docs/configuration/config-options.md * Always return correct DN for user with sub scope * Fix indeterminate meta and schema property in advanded field creation (#9924) * Fix impossibility to save M2M (alterations not triggered) (#9992) * Fix alterations refactor * fix roles aggregate query (#9994) * Update iis.md (#9998) added the IIS URL Rewrite module as a requirement * New translations en-US.yaml (English, United Kingdom) (#10001) * Fix LDAP race condition (#9993) * Fix input ui * Revert changes to v-field-template * Update mentions permissions * Fix linter warnings * Optimize sending flow * Revert "Rename activity->notifications module (#9446)" This reverts commit 428e5d4ea9141dbbb346f11c6b12ae3881dc406c. * Add notifications drawer * Update migrations * Improve constraints * Add email notifications toggle on users * Add docs, fix graphql support * Move caret-pos to devdeps * Remove unused new triggerKeyPressed system * Remove unused use-caret composable Co-authored-by: Nitwel Co-authored-by: Rijk van Zanten Co-authored-by: Ben Haynes Co-authored-by: Aiden Foxx Co-authored-by: Oreille <33065839+Oreilles@users.noreply.github.com> Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com> Co-authored-by: Paul Boudewijn --- api/package.json | 3 + api/src/app.ts | 2 + api/src/controllers/notifications.ts | 194 + .../migrations/20211118A-add-notifications.ts | 29 + .../app-access-permissions.yaml | 14 + .../system-data/collections/collections.yaml | 2 + .../system-data/fields/notifications.yaml | 12 + .../database/system-data/fields/users.yaml | 5 + .../system-data/relations/relations.yaml | 6 + api/src/middleware/get-permissions.ts | 131 +- api/src/services/activity.ts | 104 +- api/src/services/graphql.ts | 4 + api/src/services/index.ts | 1 + api/src/services/mail/templates/base.liquid | 13 +- api/src/services/notifications.ts | 48 + api/src/services/users.ts | 4 +- api/src/utils/get-permissions.ts | 126 + api/src/utils/md.ts | 9 + api/src/utils/user-name.ts | 17 + app/package.json | 1 + app/src/components/register.ts | 2 + app/src/components/v-drawer/v-drawer.vue | 1 + app/src/components/v-menu/v-menu.vue | 2 +- app/src/components/v-template-input.vue | 177 + app/src/hydrate.ts | 2 + app/src/lang/translations/en-US.yaml | 6 + app/src/lang/translations/ru-RU.yaml | 56 +- app/src/layouts/calendar/index.ts | 2 +- .../components/navigation.vue | 0 app/src/modules/activity/index.ts | 27 + .../routes/collection.vue | 6 +- .../routes/item.vue | 4 +- app/src/modules/content/index.ts | 4 +- app/src/modules/notifications/index.ts | 27 - app/src/stores/app.ts | 1 + app/src/stores/notifications.ts | 51 +- app/src/types/notifications.ts | 4 +- .../comments-sidebar-detail/comment-input.vue | 278 +- .../comments-sidebar-detail/comment-item.vue | 72 +- .../comments-sidebar-detail.vue | 71 +- .../module-bar-avatar/module-bar-avatar.vue | 106 +- .../views/private/components/module-bar.vue | 1 + .../components/notifications-drawer.vue | 210 ++ .../notifications-preview.vue | 6 +- app/src/views/private/private-view.vue | 6 +- docs/reference/system/notifications.md | 608 ++++ package-lock.json | 3227 +++++------------ packages/shared/src/types/index.ts | 1 + packages/shared/src/types/notifications.ts | 10 + 49 files changed, 3162 insertions(+), 2531 deletions(-) create mode 100644 api/src/controllers/notifications.ts create mode 100644 api/src/database/migrations/20211118A-add-notifications.ts create mode 100644 api/src/database/system-data/fields/notifications.yaml create mode 100644 api/src/services/notifications.ts create mode 100644 api/src/utils/get-permissions.ts create mode 100644 api/src/utils/md.ts create mode 100644 api/src/utils/user-name.ts create mode 100644 app/src/components/v-template-input.vue rename app/src/modules/{notifications => activity}/components/navigation.vue (100%) create mode 100644 app/src/modules/activity/index.ts rename app/src/modules/{notifications => activity}/routes/collection.vue (93%) rename app/src/modules/{notifications => activity}/routes/item.vue (96%) delete mode 100644 app/src/modules/notifications/index.ts create mode 100644 app/src/views/private/components/notifications-drawer.vue create mode 100644 docs/reference/system/notifications.md create mode 100644 packages/shared/src/types/notifications.ts diff --git a/api/package.json b/api/package.json index 7da94baa19..f96261fdf8 100644 --- a/api/package.json +++ b/api/package.json @@ -127,6 +127,7 @@ "liquidjs": "^9.25.0", "lodash": "^4.17.21", "macos-release": "^2.4.1", + "marked": "^4.0.3", "mime-types": "^2.1.31", "ms": "^2.1.3", "nanoid": "^3.1.23", @@ -197,6 +198,7 @@ "@types/nodemailer": "6.4.4", "@types/object-hash": "2.2.1", "@types/qs": "6.9.7", + "@types/sanitize-html": "^2.5.0", "@types/sharp": "0.29.4", "@types/stream-json": "1.7.1", "@types/supertest": "2.0.11", @@ -206,6 +208,7 @@ "copyfiles": "2.4.1", "cross-env": "7.0.3", "jest": "27.3.1", + "sanitize-html": "^2.5.3", "ts-jest": "27.0.7", "ts-node-dev": "1.1.8", "typescript": "4.5.2" diff --git a/api/src/app.ts b/api/src/app.ts index bcb5fb0e45..57206ed0ca 100644 --- a/api/src/app.ts +++ b/api/src/app.ts @@ -17,6 +17,7 @@ import graphqlRouter from './controllers/graphql'; import itemsRouter from './controllers/items'; import notFoundHandler from './controllers/not-found'; import panelsRouter from './controllers/panels'; +import notificationsRouter from './controllers/notifications'; import permissionsRouter from './controllers/permissions'; import presetsRouter from './controllers/presets'; import relationsRouter from './controllers/relations'; @@ -180,6 +181,7 @@ export default async function createApp(): Promise { app.use('/files', filesRouter); app.use('/folders', foldersRouter); app.use('/items', itemsRouter); + app.use('/notifications', notificationsRouter); app.use('/panels', panelsRouter); app.use('/permissions', permissionsRouter); app.use('/presets', presetsRouter); diff --git a/api/src/controllers/notifications.ts b/api/src/controllers/notifications.ts new file mode 100644 index 0000000000..507eae6b33 --- /dev/null +++ b/api/src/controllers/notifications.ts @@ -0,0 +1,194 @@ +import express from 'express'; +import { ForbiddenException } from '../exceptions'; +import { respond } from '../middleware/respond'; +import useCollection from '../middleware/use-collection'; +import { validateBatch } from '../middleware/validate-batch'; +import { MetaService, NotificationsService } from '../services'; +import { PrimaryKey } from '../types'; +import asyncHandler from '../utils/async-handler'; + +const router = express.Router(); + +router.use(useCollection('directus_notifications')); + +router.post( + '/', + asyncHandler(async (req, res, next) => { + const service = new NotificationsService({ + accountability: req.accountability, + schema: req.schema, + }); + + const savedKeys: PrimaryKey[] = []; + + if (Array.isArray(req.body)) { + const keys = await service.createMany(req.body); + savedKeys.push(...keys); + } else { + const key = await service.createOne(req.body); + savedKeys.push(key); + } + + try { + if (Array.isArray(req.body)) { + const records = await service.readMany(savedKeys, req.sanitizedQuery); + res.locals.payload = { data: records }; + } else { + const record = await service.readOne(savedKeys[0], req.sanitizedQuery); + res.locals.payload = { data: record }; + } + } catch (error: any) { + if (error instanceof ForbiddenException) { + return next(); + } + + throw error; + } + + return next(); + }), + respond +); + +const readHandler = asyncHandler(async (req, res, next) => { + const service = new NotificationsService({ + accountability: req.accountability, + schema: req.schema, + }); + const metaService = new MetaService({ + accountability: req.accountability, + schema: req.schema, + }); + + let result; + + if (req.singleton) { + result = await service.readSingleton(req.sanitizedQuery); + } else if (req.body.keys) { + result = await service.readMany(req.body.keys, req.sanitizedQuery); + } else { + result = await service.readByQuery(req.sanitizedQuery); + } + + const meta = await metaService.getMetaForQuery('directus_presets', req.sanitizedQuery); + + res.locals.payload = { data: result, meta }; + return next(); +}); + +router.get('/', validateBatch('read'), readHandler, respond); +router.search('/', validateBatch('read'), readHandler, respond); + +router.get( + '/:pk', + asyncHandler(async (req, res, next) => { + const service = new NotificationsService({ + accountability: req.accountability, + schema: req.schema, + }); + + const record = await service.readOne(req.params.pk, req.sanitizedQuery); + + res.locals.payload = { data: record || null }; + return next(); + }), + respond +); + +router.patch( + '/', + validateBatch('update'), + asyncHandler(async (req, res, next) => { + const service = new NotificationsService({ + accountability: req.accountability, + schema: req.schema, + }); + + let keys: PrimaryKey[] = []; + + if (req.body.keys) { + keys = await service.updateMany(req.body.keys, req.body.data); + } else { + keys = await service.updateByQuery(req.body.query, req.body.data); + } + + try { + const result = await service.readMany(keys, req.sanitizedQuery); + res.locals.payload = { data: result }; + } catch (error: any) { + if (error instanceof ForbiddenException) { + return next(); + } + + throw error; + } + + return next(); + }), + respond +); + +router.patch( + '/:pk', + asyncHandler(async (req, res, next) => { + const service = new NotificationsService({ + accountability: req.accountability, + schema: req.schema, + }); + + const primaryKey = await service.updateOne(req.params.pk, req.body); + + try { + const record = await service.readOne(primaryKey, req.sanitizedQuery); + res.locals.payload = { data: record }; + } catch (error: any) { + if (error instanceof ForbiddenException) { + return next(); + } + + throw error; + } + + return next(); + }), + respond +); + +router.delete( + '/', + validateBatch('delete'), + asyncHandler(async (req, res, next) => { + const service = new NotificationsService({ + accountability: req.accountability, + schema: req.schema, + }); + + if (Array.isArray(req.body)) { + await service.deleteMany(req.body); + } else if (req.body.keys) { + await service.deleteMany(req.body.keys); + } else { + await service.deleteByQuery(req.body.query); + } + + return next(); + }), + respond +); + +router.delete( + '/:pk', + asyncHandler(async (req, res, next) => { + const service = new NotificationsService({ + accountability: req.accountability, + schema: req.schema, + }); + + await service.deleteOne(req.params.pk); + + return next(); + }), + respond +); + +export default router; diff --git a/api/src/database/migrations/20211118A-add-notifications.ts b/api/src/database/migrations/20211118A-add-notifications.ts new file mode 100644 index 0000000000..6e19ffc484 --- /dev/null +++ b/api/src/database/migrations/20211118A-add-notifications.ts @@ -0,0 +1,29 @@ +import { Knex } from 'knex'; + +export async function up(knex: Knex): Promise { + await knex.schema.createTable('directus_notifications', (table) => { + table.increments(); + table.timestamp('timestamp').notNullable(); + table.string('status').defaultTo('inbox'); + table.uuid('recipient').notNullable().references('id').inTable('directus_users').onDelete('CASCADE'); + table.uuid('sender').notNullable().references('id').inTable('directus_users'); + table.string('subject').notNullable(); + table.text('message'); + table.string('collection', 64); + table.string('item'); + }); + + await knex.schema.alterTable('directus_users', (table) => { + table.boolean('email_notifications').defaultTo(true); + }); + + await knex('directus_users').update({ email_notifications: true }); +} + +export async function down(knex: Knex): Promise { + await knex.schema.dropTable('directus_notifications'); + + await knex.schema.alterTable('directus_users', (table) => { + table.dropColumn('email_notifications'); + }); +} diff --git a/api/src/database/system-data/app-access-permissions/app-access-permissions.yaml b/api/src/database/system-data/app-access-permissions/app-access-permissions.yaml index b4c4e15f9a..c29d520d80 100644 --- a/api/src/database/system-data/app-access-permissions/app-access-permissions.yaml +++ b/api/src/database/system-data/app-access-permissions/app-access-permissions.yaml @@ -72,6 +72,20 @@ - collection: directus_settings action: read +- collection: directus_notifications + action: read + permissions: + recipient: + _eq: $CURRENT_USER + fields: '*' + +- collection: directus_notifications + action: update + permissions: + recipient: + _eq: $CURRENT_USER + fields: 'status' + - collection: directus_users action: read permissions: diff --git a/api/src/database/system-data/collections/collections.yaml b/api/src/database/system-data/collections/collections.yaml index 76f972d828..283c7932d5 100644 --- a/api/src/database/system-data/collections/collections.yaml +++ b/api/src/database/system-data/collections/collections.yaml @@ -63,3 +63,5 @@ data: note: $t:directus_collection.directus_dashboards - collection: directus_panels note: $t:directus_collection.directus_panels + - collection: directus_notifications + note: $t:directus_collection.directus_notifications diff --git a/api/src/database/system-data/fields/notifications.yaml b/api/src/database/system-data/fields/notifications.yaml new file mode 100644 index 0000000000..25e5367afb --- /dev/null +++ b/api/src/database/system-data/fields/notifications.yaml @@ -0,0 +1,12 @@ +table: directus_notifications + +fields: + - field: id + - field: timestamp + special: date-created + - field: recipient + - field: sender + - field: subject + - field: message + - field: collection + - field: item diff --git a/api/src/database/system-data/fields/users.yaml b/api/src/database/system-data/fields/users.yaml index eb1da07ea9..d8bb40fe17 100644 --- a/api/src/database/system-data/fields/users.yaml +++ b/api/src/database/system-data/fields/users.yaml @@ -90,6 +90,11 @@ fields: special: conceal width: half + - field: email_notifications + interface: boolean + width: half + special: boolean + - field: admin_divider interface: presentation-divider options: diff --git a/api/src/database/system-data/relations/relations.yaml b/api/src/database/system-data/relations/relations.yaml index f12384b072..f1bfe67ae3 100644 --- a/api/src/database/system-data/relations/relations.yaml +++ b/api/src/database/system-data/relations/relations.yaml @@ -82,3 +82,9 @@ data: - many_collection: directus_panels many_field: user_created one_collection: directus_users + - many_collection: directus_notifications + many_field: recipient + one_collection: directus_users + - many_collection: directus_notifications + many_field: sender + one_collection: directus_users diff --git a/api/src/middleware/get-permissions.ts b/api/src/middleware/get-permissions.ts index 7b2ba94950..88ff29b15a 100644 --- a/api/src/middleware/get-permissions.ts +++ b/api/src/middleware/get-permissions.ts @@ -1,138 +1,13 @@ -import { Permission } from '@directus/shared/types'; -import { deepMap, parseFilter } from '@directus/shared/utils'; import { RequestHandler } from 'express'; -import { cloneDeep } from 'lodash'; -import getDatabase from '../database'; -import { appAccessMinimalPermissions } from '../database/system-data/app-access-permissions'; import asyncHandler from '../utils/async-handler'; -import { mergePermissions } from '../utils/merge-permissions'; -import { UsersService } from '../services/users'; -import { RolesService } from '../services/roles'; -import { getCache } from '../cache'; -import hash from 'object-hash'; -import env from '../env'; +import { getPermissions as getPermissionsUtil } from '../utils/get-permissions'; const getPermissions: RequestHandler = asyncHandler(async (req, res, next) => { - const database = getDatabase(); - const { systemCache } = getCache(); - - let permissions: Permission[] = []; - if (!req.accountability) { - throw new Error('"getPermissions" needs to be used after the "authenticate" middleware'); + throw new Error('getPermissions middleware needs to be called after authenticate'); } - if (!req.schema) { - throw new Error('"getPermissions" needs to be used after the "schema" middleware'); - } - - const { user, role, app, admin } = req.accountability; - const cacheKey = `permissions-${hash({ user, role, app, admin })}`; - - if (env.CACHE_PERMISSIONS !== false) { - const cachedPermissions = await systemCache.get(cacheKey); - - if (cachedPermissions) { - req.accountability.permissions = cachedPermissions; - return next(); - } - } - - if (req.accountability.admin !== true) { - const permissionsForRole = await database - .select('*') - .from('directus_permissions') - .where({ role: req.accountability.role }); - - const requiredPermissionData = { - $CURRENT_USER: [] as string[], - $CURRENT_ROLE: [] as string[], - }; - - permissions = permissionsForRole.map((permissionRaw) => { - const permission = cloneDeep(permissionRaw); - - if (permission.permissions && typeof permission.permissions === 'string') { - permission.permissions = JSON.parse(permission.permissions); - } else if (permission.permissions === null) { - permission.permissions = {}; - } - - if (permission.validation && typeof permission.validation === 'string') { - permission.validation = JSON.parse(permission.validation); - } else if (permission.validation === null) { - permission.validation = {}; - } - - if (permission.presets && typeof permission.presets === 'string') { - permission.presets = JSON.parse(permission.presets); - } else if (permission.presets === null) { - permission.presets = {}; - } - - if (permission.fields && typeof permission.fields === 'string') { - permission.fields = permission.fields.split(','); - } else if (permission.fields === null) { - permission.fields = []; - } - - const extractPermissionData = (val: any) => { - if (typeof val === 'string' && val.startsWith('$CURRENT_USER.')) { - requiredPermissionData.$CURRENT_USER.push(val.replace('$CURRENT_USER.', '')); - } - - if (typeof val === 'string' && val.startsWith('$CURRENT_ROLE.')) { - requiredPermissionData.$CURRENT_ROLE.push(val.replace('$CURRENT_ROLE.', '')); - } - - return val; - }; - - deepMap(permission.permissions, extractPermissionData); - deepMap(permission.validation, extractPermissionData); - deepMap(permission.presets, extractPermissionData); - - return permission; - }); - - if (req.accountability.app === true) { - permissions = mergePermissions( - permissions, - appAccessMinimalPermissions.map((perm) => ({ ...perm, role: req.accountability!.role })) - ); - } - - const usersService = new UsersService({ schema: req.schema }); - const rolesService = new RolesService({ schema: req.schema }); - - const filterContext: Record = {}; - - if (req.accountability.user && requiredPermissionData.$CURRENT_USER.length > 0) { - filterContext.$CURRENT_USER = await usersService.readOne(req.accountability.user, { - fields: requiredPermissionData.$CURRENT_USER, - }); - } - - if (req.accountability.role && requiredPermissionData.$CURRENT_ROLE.length > 0) { - filterContext.$CURRENT_ROLE = await rolesService.readOne(req.accountability.role, { - fields: requiredPermissionData.$CURRENT_ROLE, - }); - } - - permissions = permissions.map((permission) => { - permission.permissions = parseFilter(permission.permissions, req.accountability!, filterContext); - permission.validation = parseFilter(permission.validation, req.accountability!, filterContext); - permission.presets = parseFilter(permission.presets, req.accountability!, filterContext); - - return permission; - }); - - if (env.CACHE_PERMISSIONS !== false) { - await systemCache.set(cacheKey, permissions); - } - } - - req.accountability.permissions = permissions; + req.accountability.permissions = await getPermissionsUtil(req.accountability, req.schema); return next(); }); diff --git a/api/src/services/activity.ts b/api/src/services/activity.ts index 87cdb41486..fb7f704ebc 100644 --- a/api/src/services/activity.ts +++ b/api/src/services/activity.ts @@ -1,12 +1,104 @@ -import { AbstractServiceOptions } from '../types'; -import { ItemsService } from './index'; - -/** - * @TODO only return activity of the collections you have access to - */ +import { AbstractServiceOptions, PrimaryKey, Item, Action } from '../types'; +import { ItemsService, MutationOptions } from './index'; +import { NotificationsService } from './notifications'; +import { UsersService } from './users'; +import { AuthorizationService } from './authorization'; +import { Accountability } from '@directus/shared/types'; +import { getPermissions } from '../utils/get-permissions'; +import { ForbiddenException } from '../exceptions/forbidden'; +import logger from '../logger'; +import { userName } from '../utils/user-name'; +import { uniq } from 'lodash'; +import env from '../env'; export class ActivityService extends ItemsService { + notificationsService: NotificationsService; + usersService: UsersService; + constructor(options: AbstractServiceOptions) { super('directus_activity', options); + this.notificationsService = new NotificationsService({ schema: this.schema }); + this.usersService = new UsersService({ schema: this.schema }); + } + + async createOne(data: Partial, opts?: MutationOptions): Promise { + if (data.action === Action.COMMENT && typeof data.comment === 'string') { + const usersRegExp = new RegExp(/@[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}/gi); + + const mentions = uniq(data.comment.match(usersRegExp) ?? []); + + const sender = await this.usersService.readOne(this.accountability!.user!, { + fields: ['id', 'first_name', 'last_name', 'email'], + }); + + for (const mention of mentions) { + const userID = mention.substring(1); + + const user = await this.usersService.readOne(userID, { + fields: ['id', 'first_name', 'last_name', 'email', 'role.id', 'role.admin_access', 'role.app_access'], + }); + + const accountability: Accountability = { + user: userID, + role: user.role?.id ?? null, + admin: user.role?.admin_access ?? null, + app: user.role?.app_access ?? null, + }; + + accountability.permissions = await getPermissions(accountability, this.schema); + + const authorizationService = new AuthorizationService({ schema: this.schema, accountability }); + const usersService = new UsersService({ schema: this.schema, accountability }); + + try { + await authorizationService.checkAccess('read', data.collection, data.item); + + const templateData = await usersService.readByQuery({ + fields: ['id', 'first_name', 'last_name', 'email'], + filter: { id: { _in: mentions.map((mention) => mention.substring(1)) } }, + }); + + const userPreviews = templateData.reduce((acc, user) => { + acc[user.id] = `${userName(user)}`; + return acc; + }, {} as Record); + + let comment = data.comment; + + for (const mention of mentions) { + comment = comment.replace(mention, userPreviews[mention.substring(1)] ?? '@Unknown User'); + } + + comment = `> ${comment}`; + + const message = ` +Hello ${userName(user)}, + +${userName(sender)} has mentioned you in a comment: + +${comment} + +Click here to view. +`; + + await this.notificationsService.createOne({ + recipient: userID, + sender: sender.id, + subject: `You were mentioned in ${data.collection}`, + message, + collection: data.collection, + item: data.item, + }); + } catch (err: any) { + if (err instanceof ForbiddenException) { + logger.warn(`User ${userID} doesn't have proper permissions to receive notification for this item.`); + } else { + throw err; + } + } + } + } + + return super.createOne(data, opts); } } diff --git a/api/src/services/graphql.ts b/api/src/services/graphql.ts index 8ac83ff3db..87c64b9c58 100644 --- a/api/src/services/graphql.ts +++ b/api/src/services/graphql.ts @@ -66,6 +66,7 @@ import { FoldersService } from './folders'; import { ItemsService } from './items'; import { PermissionsService } from './permissions'; import { PresetsService } from './presets'; +import { NotificationsService } from './notifications'; import { RelationsService } from './relations'; import { RevisionsService } from './revisions'; import { RolesService } from './roles'; @@ -197,6 +198,7 @@ export class GraphQLService { }; const { ReadCollectionTypes } = getReadableTypes(); + const { CreateCollectionTypes, UpdateCollectionTypes, DeleteCollectionTypes } = getWritableTypes(); const scopeFilter = (collection: SchemaOverview['collections'][string]) => { @@ -1519,6 +1521,8 @@ export class GraphQLService { return new PermissionsService(opts); case 'directus_presets': return new PresetsService(opts); + case 'directus_notifications': + return new NotificationsService(opts); case 'directus_revisions': return new RevisionsService(opts); case 'directus_roles': diff --git a/api/src/services/index.ts b/api/src/services/index.ts index 694d1a5193..287bd47d18 100644 --- a/api/src/services/index.ts +++ b/api/src/services/index.ts @@ -12,6 +12,7 @@ export * from './graphql'; export * from './import'; export * from './mail'; export * from './meta'; +export * from './notifications'; export * from './panels'; export * from './payload'; export * from './permissions'; diff --git a/api/src/services/mail/templates/base.liquid b/api/src/services/mail/templates/base.liquid index c396183ddc..7e358178f0 100644 --- a/api/src/services/mail/templates/base.liquid +++ b/api/src/services/mail/templates/base.liquid @@ -88,6 +88,17 @@ hr { div[style*="margin: 16px 0;"] { margin: 0 !important; } + +blockquote { + background: #f0f4f9 !important; + border-radius: 4px !important; + margin: 0 !important; + padding: 24px !important; +} + +blockquote > p { + margin: 0 !important; +} /*]]>*/ @@ -149,4 +160,4 @@ div[style*="margin: 16px 0;"] { - \ No newline at end of file + diff --git a/api/src/services/notifications.ts b/api/src/services/notifications.ts new file mode 100644 index 0000000000..17cb2c09ac --- /dev/null +++ b/api/src/services/notifications.ts @@ -0,0 +1,48 @@ +import { UsersService, MailService } from '.'; +import { AbstractServiceOptions, PrimaryKey } from '../types'; +import { ItemsService, MutationOptions } from './items'; +import { Notification } from '@directus/shared/types'; +import { md } from '../utils/md'; + +export class NotificationsService extends ItemsService { + usersService: UsersService; + mailService: MailService; + + constructor(options: AbstractServiceOptions) { + super('directus_notifications', options); + this.usersService = new UsersService({ schema: this.schema }); + this.mailService = new MailService({ schema: this.schema, accountability: this.accountability }); + } + + async createOne(data: Partial, opts?: MutationOptions): Promise { + await this.sendEmail(data); + return super.createOne(data, opts); + } + + async createMany(data: Partial[], opts?: MutationOptions): Promise { + for (const notification of data) { + await this.sendEmail(notification); + } + + return super.createMany(data, opts); + } + + async sendEmail(data: Partial) { + if (data.recipient) { + const user = await this.usersService.readOne(data.recipient, { fields: ['email', 'email_notifications'] }); + + if (user.email && user.email_notifications === true) { + await this.mailService.send({ + template: { + name: 'base', + data: { + html: data.message ? md(data.message) : '', + }, + }, + to: user.email, + subject: data.subject, + }); + } + } + } +} diff --git a/api/src/services/users.ts b/api/src/services/users.ts index 83bffa446e..6ce83cd7a3 100644 --- a/api/src/services/users.ts +++ b/api/src/services/users.ts @@ -217,8 +217,10 @@ export class UsersService extends ItemsService { */ async deleteMany(keys: PrimaryKey[], opts?: MutationOptions): Promise { await this.checkRemainingAdminExistence(keys); - await super.deleteMany(keys, opts); + await this.knex('directus_notifications').update({ sender: null }).whereIn('sender', keys); + + await super.deleteMany(keys, opts); return keys; } diff --git a/api/src/utils/get-permissions.ts b/api/src/utils/get-permissions.ts new file mode 100644 index 0000000000..33c6b07a04 --- /dev/null +++ b/api/src/utils/get-permissions.ts @@ -0,0 +1,126 @@ +import { Permission, Accountability } from '@directus/shared/types'; +import { deepMap, parseFilter } from '@directus/shared/utils'; +import { cloneDeep } from 'lodash'; +import getDatabase from '../database'; +import { appAccessMinimalPermissions } from '../database/system-data/app-access-permissions'; +import { mergePermissions } from '../utils/merge-permissions'; +import { UsersService } from '../services/users'; +import { RolesService } from '../services/roles'; +import { getCache } from '../cache'; +import hash from 'object-hash'; +import env from '../env'; +import { SchemaOverview } from '../types'; + +export async function getPermissions(accountability: Accountability, schema: SchemaOverview) { + const database = getDatabase(); + const { systemCache } = getCache(); + + let permissions: Permission[] = []; + + const { user, role, app, admin } = accountability; + const cacheKey = `permissions-${hash({ user, role, app, admin })}`; + + if (env.CACHE_PERMISSIONS !== false) { + const cachedPermissions = await systemCache.get(cacheKey); + + if (cachedPermissions) { + return cachedPermissions; + } + } + + if (accountability.admin !== true) { + const permissionsForRole = await database + .select('*') + .from('directus_permissions') + .where({ role: accountability.role }); + + const requiredPermissionData = { + $CURRENT_USER: [] as string[], + $CURRENT_ROLE: [] as string[], + }; + + permissions = permissionsForRole.map((permissionRaw) => { + const permission = cloneDeep(permissionRaw); + + if (permission.permissions && typeof permission.permissions === 'string') { + permission.permissions = JSON.parse(permission.permissions); + } else if (permission.permissions === null) { + permission.permissions = {}; + } + + if (permission.validation && typeof permission.validation === 'string') { + permission.validation = JSON.parse(permission.validation); + } else if (permission.validation === null) { + permission.validation = {}; + } + + if (permission.presets && typeof permission.presets === 'string') { + permission.presets = JSON.parse(permission.presets); + } else if (permission.presets === null) { + permission.presets = {}; + } + + if (permission.fields && typeof permission.fields === 'string') { + permission.fields = permission.fields.split(','); + } else if (permission.fields === null) { + permission.fields = []; + } + + const extractPermissionData = (val: any) => { + if (typeof val === 'string' && val.startsWith('$CURRENT_USER.')) { + requiredPermissionData.$CURRENT_USER.push(val.replace('$CURRENT_USER.', '')); + } + + if (typeof val === 'string' && val.startsWith('$CURRENT_ROLE.')) { + requiredPermissionData.$CURRENT_ROLE.push(val.replace('$CURRENT_ROLE.', '')); + } + + return val; + }; + + deepMap(permission.permissions, extractPermissionData); + deepMap(permission.validation, extractPermissionData); + deepMap(permission.presets, extractPermissionData); + + return permission; + }); + + if (accountability.app === true) { + permissions = mergePermissions( + permissions, + appAccessMinimalPermissions.map((perm) => ({ ...perm, role: accountability!.role })) + ); + } + + const usersService = new UsersService({ schema }); + const rolesService = new RolesService({ schema }); + + const filterContext: Record = {}; + + if (accountability.user && requiredPermissionData.$CURRENT_USER.length > 0) { + filterContext.$CURRENT_USER = await usersService.readOne(accountability.user, { + fields: requiredPermissionData.$CURRENT_USER, + }); + } + + if (accountability.role && requiredPermissionData.$CURRENT_ROLE.length > 0) { + filterContext.$CURRENT_ROLE = await rolesService.readOne(accountability.role, { + fields: requiredPermissionData.$CURRENT_ROLE, + }); + } + + permissions = permissions.map((permission) => { + permission.permissions = parseFilter(permission.permissions, accountability!, filterContext); + permission.validation = parseFilter(permission.validation, accountability!, filterContext); + permission.presets = parseFilter(permission.presets, accountability!, filterContext); + + return permission; + }); + + if (env.CACHE_PERMISSIONS !== false) { + await systemCache.set(cacheKey, permissions); + } + } + + return permissions; +} diff --git a/api/src/utils/md.ts b/api/src/utils/md.ts new file mode 100644 index 0000000000..8bc9895e69 --- /dev/null +++ b/api/src/utils/md.ts @@ -0,0 +1,9 @@ +import { parse } from 'marked'; +import sanitizeHTML from 'sanitize-html'; + +/** + * Render and sanitize a markdown string + */ +export function md(str: string): string { + return sanitizeHTML(parse(str)); +} diff --git a/api/src/utils/user-name.ts b/api/src/utils/user-name.ts new file mode 100644 index 0000000000..f9cbbd83f2 --- /dev/null +++ b/api/src/utils/user-name.ts @@ -0,0 +1,17 @@ +import { User } from '@directus/shared/types'; + +export function userName(user: Partial): string { + if (user.first_name && user.last_name) { + return `${user.first_name} ${user.last_name}`; + } + + if (user.first_name) { + return user.first_name; + } + + if (user.email) { + return user.email; + } + + return 'Unknown User'; +} diff --git a/app/package.json b/app/package.json index 0d6b9aba36..89cc8d5e8c 100644 --- a/app/package.json +++ b/app/package.json @@ -69,6 +69,7 @@ "apexcharts": "3.30.0", "axios": "0.24.0", "base-64": "1.0.0", + "caret-pos": "^2.0.0", "codemirror": "5.64.0", "copyfiles": "2.4.1", "cropperjs": "1.5.12", diff --git a/app/src/components/register.ts b/app/src/components/register.ts index 810ac47876..c9faf870a2 100644 --- a/app/src/components/register.ts +++ b/app/src/components/register.ts @@ -47,6 +47,7 @@ import VSlider from './v-slider/'; import VSwitch from './v-switch/'; import VTable from './v-table/'; import VTabs, { VTab, VTabItem, VTabsItems } from './v-tabs/'; +import VTemplateInput from './v-template-input.vue'; import VTextOverflow from './v-text-overflow.vue'; import VTextarea from './v-textarea'; import VUpload from './v-upload'; @@ -103,6 +104,7 @@ export function registerComponents(app: App): void { app.component('VTable', VTable); app.component('VTabsItems', VTabsItems); app.component('VTabs', VTabs); + app.component('VTemplateInput', VTemplateInput); app.component('VTextarea', VTextarea); app.component('VTextOverflow', VTextOverflow); app.component('VUpload', VUpload); diff --git a/app/src/components/v-drawer/v-drawer.vue b/app/src/components/v-drawer/v-drawer.vue index 92014f6865..6f58598c14 100644 --- a/app/src/components/v-drawer/v-drawer.vue +++ b/app/src/components/v-drawer/v-drawer.vue @@ -206,6 +206,7 @@ body { --content-padding: 16px; --content-padding-bottom: 32px; + position: relative; flex-grow: 1; overflow: auto; diff --git a/app/src/components/v-menu/v-menu.vue b/app/src/components/v-menu/v-menu.vue index 2f76c8fda7..27d2ffb651 100644 --- a/app/src/components/v-menu/v-menu.vue +++ b/app/src/components/v-menu/v-menu.vue @@ -97,7 +97,7 @@ export default defineComponent({ trigger: { type: String, default: null, - validator: (val: string) => ['hover', 'click'].includes(val), + validator: (val: string) => ['hover', 'click', 'keyDown'].includes(val), }, delay: { type: Number, diff --git a/app/src/components/v-template-input.vue b/app/src/components/v-template-input.vue new file mode 100644 index 0000000000..419c684248 --- /dev/null +++ b/app/src/components/v-template-input.vue @@ -0,0 +1,177 @@ + + + + + diff --git a/app/src/hydrate.ts b/app/src/hydrate.ts index f4ffc452c3..a49cfa9cf5 100644 --- a/app/src/hydrate.ts +++ b/app/src/hydrate.ts @@ -14,6 +14,7 @@ import { useServerStore, useSettingsStore, useUserStore, + useNotificationsStore, } from '@/stores'; type GenericStore = { @@ -37,6 +38,7 @@ export function useStores( useRelationsStore, usePermissionsStore, useInsightsStore, + useNotificationsStore, ] ): GenericStore[] { return stores.map((useStore) => useStore()) as GenericStore[]; diff --git a/app/src/lang/translations/en-US.yaml b/app/src/lang/translations/en-US.yaml index 500230a452..de220d3601 100644 --- a/app/src/lang/translations/en-US.yaml +++ b/app/src/lang/translations/en-US.yaml @@ -67,6 +67,8 @@ create_webhook: Create Webhook invite_users: Invite Users invite: Invite email_already_invited: Email "{email}" has already been invited +subject: Subject +inbox: Inbox emails: Emails connection_excellent: Excellent Connection connection_good: Good Connection @@ -433,6 +435,9 @@ user_count: 'No Users | One User | {count} Users' no_users_copy: There are no users in this role yet. webhooks_count: 'No Webhooks | One Webhook | {count} Webhooks' no_webhooks_copy: No webhooks have been configured yet. Get started by creating one below. +no_notifications: No Notifications +no_notifications_copy: You're all caught up! +activity_log: Activity Log all_items: All Items any: Any csv: CSV @@ -858,6 +863,7 @@ directus_collection: directus_migrations: What version of the database you're using directus_panels: Individual panels within Insights dashboards directus_permissions: Access permissions for each role + directus_notifications: Notifications sent to users directus_presets: Presets for collection defaults and bookmarks directus_relations: Relationship configuration and metadata directus_revisions: Data snapshots for all activity diff --git a/app/src/lang/translations/ru-RU.yaml b/app/src/lang/translations/ru-RU.yaml index 6da6c56d32..e1ce202920 100644 --- a/app/src/lang/translations/ru-RU.yaml +++ b/app/src/lang/translations/ru-RU.yaml @@ -98,10 +98,13 @@ os_totalmem: Память ОС archive: Архив archive_confirm: Вы уверены, что хотите архивировать этот элемент? archive_confirm_count: >- - Элементы не выбраны | Вы уверены, что хотите архивировать этот элемент? | Вы уверены, что хотите архивировать эти {count} элементов? + Элементы не выбраны | Вы уверены, что хотите архивировать этот элемент? | Вы уверены, что хотите архивировать эти + {count} элементов? reset_system_permissions_to: 'Сбросить системные разрешения для:' -reset_system_permissions_copy: Это перезапишет любые индивидуальные разрешения, которые вы могли задать системным коллекциям. Вы уверены? -the_following_are_minimum_permissions: Ниже приведены разрешения, требуемые при включенном доступе к приложению. Их можно расширить, но не сократить. +reset_system_permissions_copy: + Это перезапишет любые индивидуальные разрешения, которые вы могли задать системным коллекциям. Вы уверены? +the_following_are_minimum_permissions: + Ниже приведены разрешения, требуемые при включенном доступе к приложению. Их можно расширить, но не сократить. app_access_minimum: Минимальный доступ приложения recommended_defaults: Рекомендуемые значения по умолчанию unarchive: Извлечь их архива @@ -234,7 +237,8 @@ this_will_auto_setup_fields_relations: Это автоматически нас click_here: Нажмите здесь to_manually_setup_translations: для ручной настройки переводов. click_to_manage_translated_fields: >- - Полей перевода пока нет. Нажмите здесь, чтобы создать их. | Есть одно поле перевода. Нажмите здесь, чтобы управлять им. | Есть {count} полей перевода. Нажмите здесь, чтобы управлять ими. + Полей перевода пока нет. Нажмите здесь, чтобы создать их. | Есть одно поле перевода. Нажмите здесь, чтобы управлять + им. | Есть {count} полей перевода. Нажмите здесь, чтобы управлять ими. fields_group: Группа Полей no_collections_found: Нет найденных коллекций. new_data_alert: 'В вашей модели данных будет создано следующее:' @@ -491,7 +495,7 @@ account_created_successfully: Аккаунт Успешно Создан auto_fill: Автозаполнение corresponding_field: Соответствующее Поле errors: - COLLECTION_NOT_FOUND: "Коллекция не существует" + COLLECTION_NOT_FOUND: 'Коллекция не существует' FIELD_NOT_FOUND: Поле не найдено FORBIDDEN: Запрещено INVALID_CREDENTIALS: Неверное имя пользователя или пароль @@ -543,7 +547,8 @@ start_end_of_count_filtered_items: '{start}-{end} из {count} отфильтр one_item: '1 элемент' one_filtered_item: '1 отфильтрованный элемент' delete_collection_are_you_sure: >- - Вы уверены, что хотите удалить эту коллекцию? Это действие приведет к удалению коллекции и всех ее элементов. Это действие необратимо. + Вы уверены, что хотите удалить эту коллекцию? Это действие приведет к удалению коллекции и всех ее элементов. Это + действие необратимо. collections_shown: Показано Коллекций visible_collections: Видимые Коллекции hidden_collections: Скрытые Коллекции @@ -579,7 +584,7 @@ operators: gte: Больше или равно in: Один из nin: Не один из - null: "Null" + null: 'Null' nnull: Не null contains: Содержит ncontains: Не содержит @@ -790,26 +795,33 @@ show_y_axis: Показать ось Y keep_editing: Продолжить Редактирование page_help_collections_overview: '**Обзор Коллекций** — Список всех коллекций, к которым у вас есть доступ.' page_help_collections_collection: >- - **Просмотр Элементов** — Список всех элементов в {collection}, к которым у вас есть доступ. Настройте макет, фильтры и сортировку под себя, и даже сохраните закладки в разных конфигурациях для быстрого доступа. + **Просмотр Элементов** — Список всех элементов в {collection}, к которым у вас есть доступ. Настройте макет, фильтры и + сортировку под себя, и даже сохраните закладки в разных конфигурациях для быстрого доступа. page_help_collections_item: >- - **Карточка Элемента** — Форма для просмотра и управления этим элементом. Эта панель также содержит полную историю изменений и встроенные комментарии. + **Карточка Элемента** — Форма для просмотра и управления этим элементом. Эта панель также содержит полную историю + изменений и встроенные комментарии. page_help_activity_collection: >- **Просмотр Активности** — Полный список всех действий пользователя и контента. page_help_docs_global: >- **Обзор Документации** — Документация, специально созданная к версии и схеме этого проекта. page_help_files_collection: >- - **Библиотека Файлов** — Список всех файлов, загруженных в этот проект. Настройте макет, фильтры и сортировку под себя, и даже сохраните закладки в разных конфигурациях для быстрого доступа. + **Библиотека Файлов** — Список всех файлов, загруженных в этот проект. Настройте макет, фильтры и сортировку под себя, + и даже сохраните закладки в разных конфигурациях для быстрого доступа. page_help_files_item: >- - **Карточка Файла** — Форма для управления метаданными файла, редактирования исходного файла и обновления настроек доступа. -page_help_settings_project: "**Настройки Проекта** — Глобальные параметры конфигурации проекта." + **Карточка Файла** — Форма для управления метаданными файла, редактирования исходного файла и обновления настроек + доступа. +page_help_settings_project: '**Настройки Проекта** — Глобальные параметры конфигурации проекта.' page_help_settings_datamodel_collections: >- - **Модель Данных: Коллекции** — Список всех доступных коллекций. Включает видимые, скрытые и системные коллекции, а также неуправляемые таблицы базы данных, которые могут быть добавлены. + **Модель Данных: Коллекции** — Список всех доступных коллекций. Включает видимые, скрытые и системные коллекции, а + также неуправляемые таблицы базы данных, которые могут быть добавлены. page_help_settings_datamodel_fields: >- **Модель Данных: Коллекция** — Форма для управления этой коллекцией и ее полями. -page_help_settings_roles_collection: '**Просмотр Ролей** — Список Администраторов, Публичных и собственных Ролей Пользователей.' -page_help_settings_roles_item: "**Карточка Роли** — Управление разрешениями роли и другими настройками." +page_help_settings_roles_collection: + '**Просмотр Ролей** — Список Администраторов, Публичных и собственных Ролей Пользователей.' +page_help_settings_roles_item: '**Карточка Роли** — Управление разрешениями роли и другими настройками.' page_help_settings_presets_collection: >- - **Просмотр Пресетов** — Список всех пресетов проекта, включая: пользователей, ролей и глобальные закладки, а также представления по умолчанию. + **Просмотр Пресетов** — Список всех пресетов проекта, включая: пользователей, ролей и глобальные закладки, а также + представления по умолчанию. page_help_settings_presets_item: >- **Карточка Пресета** — Форма для управления пресетами закладок и коллекций по умолчанию. page_help_settings_webhooks_collection: '**Просмотр Веб-хуков** — Список всех веб-хуков в проекте.' @@ -826,7 +838,8 @@ all: Все none: Нет no_layout_collection_selected_yet: Макет/коллекция пока не выбраны batch_delete_confirm: >- - Никаких элементов не выбрано | Вы уверены, что хотите удалить этот элемент? Это действие не может быть отменено. | Вы уверены, что хотите удалить эти элементы {count}? Это действие не может быть отменено. + Никаких элементов не выбрано | Вы уверены, что хотите удалить этот элемент? Это действие не может быть отменено. | Вы + уверены, что хотите удалить эти элементы {count}? Это действие не может быть отменено. cancel: Отмена no_upscale: Не масштабировать изображения collection: Коллекция @@ -947,7 +960,8 @@ fields: basemaps_style: Стиль Mapbox mapbox_key: Токен доступа Mapbox mapbox_placeholder: pk.eyJ1Ijo..... - transforms_note: Имя метода Sharp и его аргументы. Дополнительную информацию см. в https://sharp.pixelplumbing.com/api-constructor. + transforms_note: + Имя метода Sharp и его аргументы. Дополнительную информацию см. в https://sharp.pixelplumbing.com/api-constructor. additional_transforms: Дополнительные преобразования project_name: Название проекта project_url: URL проекта @@ -1016,7 +1030,8 @@ field_options: fit_text: Поместить внутри outside_text: Поместить вне additional_transforms: Дополнительные преобразования - transforms_note: Имя метода Sharp и его аргументы. Дополнительную информацию см. в https://sharp.pixelplumbing.com/api-constructor. + transforms_note: + Имя метода Sharp и его аргументы. Дополнительную информацию см. в https://sharp.pixelplumbing.com/api-constructor. mapbox_key: Токен доступа Mapbox mapbox_placeholder: pk.eyJ1Ijo..... basemaps: Основа карты @@ -1466,7 +1481,8 @@ displays: description: Показывать значения, относящиеся ко времени format: Формат format_note: >- - Пользовательский формат принимает __[Date Field Symbol Table](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table)__ + Пользовательский формат принимает __[Date Field Symbol + Table](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table)__ long: Длинный short: Короткий relative: Относительный diff --git a/app/src/layouts/calendar/index.ts b/app/src/layouts/calendar/index.ts index cad617000a..bc5464f683 100644 --- a/app/src/layouts/calendar/index.ts +++ b/app/src/layouts/calendar/index.ts @@ -8,7 +8,7 @@ import { getFieldsFromTemplate } from '@directus/shared/utils'; import getFullcalendarLocale from '@/utils/get-fullcalendar-locale'; import { renderPlainStringTemplate } from '@/utils/render-string-template'; import { unexpectedError } from '@/utils/unexpected-error'; -import { Field, Item, Filter } from '@directus/shared/types'; +import { Field, Item } from '@directus/shared/types'; import { defineLayout } from '@directus/shared/utils'; import { Calendar, CalendarOptions as FullCalendarOptions, EventInput } from '@fullcalendar/core'; import dayGridPlugin from '@fullcalendar/daygrid'; diff --git a/app/src/modules/notifications/components/navigation.vue b/app/src/modules/activity/components/navigation.vue similarity index 100% rename from app/src/modules/notifications/components/navigation.vue rename to app/src/modules/activity/components/navigation.vue diff --git a/app/src/modules/activity/index.ts b/app/src/modules/activity/index.ts new file mode 100644 index 0000000000..80008d78ce --- /dev/null +++ b/app/src/modules/activity/index.ts @@ -0,0 +1,27 @@ +import { defineModule } from '@directus/shared/utils'; +import ActivityCollection from './routes/collection.vue'; +import ActivityItem from './routes/item.vue'; + +export default defineModule({ + id: 'activity', + hidden: true, + name: '$t:activity', + icon: 'notifications', + routes: [ + { + name: 'activity-collection', + path: '', + component: ActivityCollection, + props: true, + children: [ + { + name: 'activity-item', + path: ':primaryKey', + components: { + detail: ActivityItem, + }, + }, + ], + }, + ], +}); diff --git a/app/src/modules/notifications/routes/collection.vue b/app/src/modules/activity/routes/collection.vue similarity index 93% rename from app/src/modules/notifications/routes/collection.vue rename to app/src/modules/activity/routes/collection.vue index e6d47f9998..74580b77d5 100644 --- a/app/src/modules/notifications/routes/collection.vue +++ b/app/src/modules/activity/routes/collection.vue @@ -26,7 +26,7 @@ @@ -61,7 +61,7 @@ - diff --git a/app/src/views/private/components/comments-sidebar-detail/comment-item.vue b/app/src/views/private/components/comments-sidebar-detail/comment-item.vue index ceffa6e7ba..8070f5b1ef 100644 --- a/app/src/views/private/components/comments-sidebar-detail/comment-item.vue +++ b/app/src/views/private/components/comments-sidebar-detail/comment-item.vue @@ -2,34 +2,17 @@
- - - - -
- - - - -
+
@@ -38,13 +21,14 @@ import { useI18n } from 'vue-i18n'; import { defineComponent, PropType, ref, watch, ComponentPublicInstance } from 'vue'; import { Activity } from './types'; import CommentItemHeader from './comment-item-header.vue'; +import CommentInput from './comment-input.vue'; import useShortcut from '@/composables/use-shortcut'; import api from '@/api'; import { unexpectedError } from '@/utils/unexpected-error'; export default defineComponent({ - components: { CommentItemHeader }, + components: { CommentItemHeader, CommentInput }, props: { activity: { type: Object as PropType, @@ -54,6 +38,19 @@ export default defineComponent({ type: Function as PropType<() => void>, required: true, }, + userPreviews: { + type: Object, + require: true, + default: () => ({}), + }, + primaryKey: { + type: [Number, String], + required: true, + }, + collection: { + type: String, + required: true, + }, }, setup(props) { const { t } = useI18n(); @@ -85,7 +82,8 @@ export default defineComponent({ await api.patch(`/activity/comment/${props.activity.id}`, { comment: edits.value, }); - await props.refresh(); + + props.refresh(); } catch (err: any) { unexpectedError(err); } finally { @@ -117,6 +115,7 @@ export default defineComponent({ } .comment-item .content { + display: inline-block; max-height: 300px; overflow-y: auto; } @@ -145,6 +144,17 @@ export default defineComponent({ border-top: 2px solid var(--border-normal); } +.comment-item .content :deep(mark) { + display: inline-block; + padding: 2px 4px; + color: var(--primary); + line-height: 1; + background: var(--primary-alt); + border-radius: var(--border-radius); + user-select: text; + pointer-events: none; +} + .comment-item .content :deep(:is(h1, h2, h3, h4, h5, h6)) { margin-top: 12px; font-weight: 600; @@ -201,6 +211,10 @@ export default defineComponent({ opacity: 1; } +.user-name { + color: var(--primary); +} + .buttons { position: absolute; right: 8px; diff --git a/app/src/views/private/components/comments-sidebar-detail/comments-sidebar-detail.vue b/app/src/views/private/components/comments-sidebar-detail/comments-sidebar-detail.vue index 8ba86cdaa2..4a727cff80 100644 --- a/app/src/views/private/components/comments-sidebar-detail/comments-sidebar-detail.vue +++ b/app/src/views/private/components/comments-sidebar-detail/comments-sidebar-detail.vue @@ -12,7 +12,13 @@ {{ group.dateFormatted }} @@ -25,10 +31,11 @@ import { defineComponent, ref } from 'vue'; import api from '@/api'; import { Activity, ActivityByDate } from './types'; import CommentInput from './comment-input.vue'; -import { groupBy, orderBy } from 'lodash'; +import { groupBy, orderBy, flatten } from 'lodash'; import formatLocalized from '@/utils/localized-format'; import { isToday, isYesterday, isThisYear } from 'date-fns'; import CommentItem from './comment-item.vue'; +import { userName } from '@/utils/user-name'; export default defineComponent({ components: { CommentInput, CommentItem }, @@ -45,19 +52,21 @@ export default defineComponent({ setup(props) { const { t } = useI18n(); - const { activity, loading, error, refresh, count } = useActivity(props.collection, props.primaryKey); + const { activity, loading, error, refresh, count, userPreviews } = useActivity(props.collection, props.primaryKey); - return { t, activity, loading, error, refresh, count }; + return { t, activity, loading, error, refresh, count, userPreviews }; function useActivity(collection: string, primaryKey: string | number) { + const regex = /(\s@[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12})/gm; const activity = ref(null); const count = ref(0); const error = ref(null); const loading = ref(false); + const userPreviews = ref>({}); getActivity(); - return { activity, error, loading, refresh, count }; + return { activity, error, loading, refresh, count, userPreviews }; async function getActivity() { error.value = null; @@ -68,7 +77,7 @@ export default defineComponent({ params: { 'filter[collection][_eq]': collection, 'filter[item][_eq]': primaryKey, - 'filter[action][_in]': 'comment', + 'filter[action][_eq]': 'comment', sort: '-id', // directus_activity has auto increment and is therefore in chronological order fields: [ 'id', @@ -87,7 +96,24 @@ export default defineComponent({ count.value = response.data.data.length; - const activityByDate = groupBy(response.data.data, (activity: Activity) => { + userPreviews.value = await loadUserPreviews(response.data.data, regex); + + const activityWithUsersInComments = response.data.data.map((comment: Record) => { + const matches = comment.comment.match(regex); + + let newCommentText = comment.comment; + + for (const match of matches ?? []) { + newCommentText = newCommentText.replace(match, ` ${userPreviews.value[match.substring(2)]}`); + } + + return { + ...comment, + display: newCommentText, + }; + }); + + const activityByDate = groupBy(activityWithUsersInComments, (activity: Activity) => { // activity's timestamp date is in iso-8601 const date = new Date(new Date(activity.timestamp).toDateString()); return date; @@ -127,6 +153,37 @@ export default defineComponent({ await getActivity(); } } + + async function loadUserPreviews(comments: Record, regex: RegExp) { + let userPreviews: any[] = []; + + comments.forEach((comment: Record) => { + userPreviews.push(comment.comment.match(regex)); + }); + + const uniqIds: string[] = [...new Set(flatten(userPreviews))].filter((id) => { + if (id) return id; + }); + + if (uniqIds.length > 0) { + const response = await api.get('/users', { + params: { + filter: { id: { _in: uniqIds.map((id) => id.substring(2)) } }, + fields: ['first_name', 'last_name', 'email', 'id'], + }, + }); + + const userPreviews: Record = {}; + + response.data.data.map((user: Record) => { + userPreviews[user.id] = userName(user); + }); + + return userPreviews; + } + + return {}; + } }, }); diff --git a/app/src/views/private/components/module-bar-avatar/module-bar-avatar.vue b/app/src/views/private/components/module-bar-avatar/module-bar-avatar.vue index 7741c4d026..df58e1706c 100644 --- a/app/src/views/private/components/module-bar-avatar/module-bar-avatar.vue +++ b/app/src/views/private/components/module-bar-avatar/module-bar-avatar.vue @@ -1,51 +1,73 @@ @@ -82,6 +104,8 @@ export default defineComponent({ --v-button-color-hover: var(--white); --v-avatar-color: var(--module-background); + position: relative; + z-index: 3; overflow: visible; .avatar-image { @@ -117,6 +141,17 @@ export default defineComponent({ } } + .notifications-badge { + --v-badge-offset-x: 16px; + --v-badge-offset-y: 16px; + } + + .notifications { + --v-button-color: var(--module-icon); + --v-button-background-color: var(--module-background); + --v-button-background-color-hover: var(--module-background); + } + .sign-out { --v-button-color: var(--module-icon); --v-button-background-color: var(--module-background); @@ -125,15 +160,16 @@ export default defineComponent({ position: absolute; top: 0; left: 0; + z-index: 2; transform: translateY(-100%); transition: transform var(--fast) var(--transition); @media (min-width: 960px) { - transform: translateY(0); + transform: translateY(100%); } &.show { - transform: translateY(-100%); + transform: translateY(0%); } &:hover { diff --git a/app/src/views/private/components/module-bar.vue b/app/src/views/private/components/module-bar.vue index 1989215878..ba5ec429c6 100644 --- a/app/src/views/private/components/module-bar.vue +++ b/app/src/views/private/components/module-bar.vue @@ -23,6 +23,7 @@
+ diff --git a/app/src/views/private/components/notifications-drawer.vue b/app/src/views/private/components/notifications-drawer.vue new file mode 100644 index 0000000000..9ecf89dccc --- /dev/null +++ b/app/src/views/private/components/notifications-drawer.vue @@ -0,0 +1,210 @@ + + + + + diff --git a/app/src/views/private/components/notifications-preview/notifications-preview.vue b/app/src/views/private/components/notifications-preview/notifications-preview.vue index 92cda7d999..2f42c58483 100644 --- a/app/src/views/private/components/notifications-preview/notifications-preview.vue +++ b/app/src/views/private/components/notifications-preview/notifications-preview.vue @@ -3,7 +3,7 @@
- + {{ t('show_all_activity') }} @@ -17,10 +17,10 @@ v-tooltip.left="t('notifications')" :active="modelValue" class="toggle" - icon="notifications" + icon="pending_actions" @click="$emit('update:modelValue', !modelValue)" > - {{ t('notifications') }} + {{ t('activity_log') }}
diff --git a/app/src/views/private/private-view.vue b/app/src/views/private/private-view.vue index 35fd091d48..9f12042904 100644 --- a/app/src/views/private/private-view.vue +++ b/app/src/views/private/private-view.vue @@ -57,6 +57,7 @@ +
@@ -72,9 +73,11 @@ import ProjectInfo from './components/project-info'; import NotificationsGroup from './components/notifications-group/'; import NotificationsPreview from './components/notifications-preview/'; import NotificationDialogs from './components/notification-dialogs/'; +import NotificationsDrawer from './components/notifications-drawer.vue'; import { useUserStore, useAppStore } from '@/stores'; import { useRouter } from 'vue-router'; import useTitle from '@/composables/use-title'; +import { storeToRefs } from 'pinia'; export default defineComponent({ components: { @@ -85,6 +88,7 @@ export default defineComponent({ NotificationsGroup, NotificationsPreview, NotificationDialogs, + NotificationsDrawer, }, props: { title: { @@ -114,7 +118,7 @@ export default defineComponent({ const notificationsPreviewActive = ref(false); - const { sidebarOpen, fullScreen } = toRefs(appStore); + const { sidebarOpen, fullScreen } = storeToRefs(appStore); const theme = computed(() => { return userStore.currentUser?.theme || 'auto'; diff --git a/docs/reference/system/notifications.md b/docs/reference/system/notifications.md new file mode 100644 index 0000000000..f02a99ce62 --- /dev/null +++ b/docs/reference/system/notifications.md @@ -0,0 +1,608 @@ +--- +pageClass: page-reference +--- + +# Notifications + +
+
+ +> Notifications allow you to send/receive messages to/from other users of the platform. + +
+
+ +[[toc]] + +
+
+ +--- + +## The Notification Object + +
+
+
+ +`id` **integer**\ +Primary key of the revision. + +`timestamp` **string**\ +Timestamp in ISO8601 when the notification was created. + +`status` **string**\ +Current status of the notification. One of "inbox", "archived". + +`recipient` **many-to-one**\ +User that received the notification. + +`sender` **many-to-one**\ +User that sent the notification, if any. + +`subject` **string**\ +Subject line of the message. + +`message` **string**\ +Notification's message content. Will be sent in the email. + +`collection` **string**\ +Collection this notification references. + +`item` **string**\ +Primary key of the item this notification references. + +
+
+
+ +```json +{ + "id": 2, + "timestamp": "2021-11-24T13:57:35Z", + "status": "inbox", + "recipient": "3EE34828-B43C-4FB2-A721-5151579B08EA", + "sender": "497a495e-5529-4e46-8feb-2f35e9b85601", + "subject": "You were mentioned in articles", + "message": "\nHello admin@example.com,\n\rijk@directus.io has mentioned you in a comment:\n\n> Hello admin@example.com!\n\nClick here to view.\n", + "collection": "articles", + "item": "1" +} +``` + +
+
+ +--- + +## List Notifications + +List all notifications that exist in Directus. + +
+
+ +### Query Parameters + +Supports all [global query parameters](/reference/query). + +### Returns + +An array of up to [limit](/reference/query/#limit) [notification objects](#the-notification-object). If no items are +available, data will be an empty array. + +
+
+ +### REST API + +``` +GET /notifications +SEARCH /notifications +``` + +[Learn more about SEARCH ->](/reference/introduction/#search-http-method) + +### GraphQL + +``` +POST /graphql/system +``` + +```graphql +type Query { + notifications: [directus_notifications] +} +``` + +##### Example + +```graphql +query { + notifications { + id + recipient + subject + } +} +``` + +
+
+ +--- + +## Retrieve a notification + +List an existing notification by primary key. + +
+
+ +### Query Parameters + +Supports all [global query parameters](/reference/query). + +### Returns + +Returns the requested [notification object](#the-notification-object). + +
+
+ +### REST API + +``` +GET /notifications/:id +``` + +##### Example + +``` +GET /notifications/42 +``` + +### GraphQL + +``` +POST /graphql/system +``` + +```graphql +type Query { + notifications_by_id(id: ID!): directus_notifications +} +``` + +##### Example + +```graphql +query { + notifications_by_id(id: 42) { + id + sender + recipient + message + subject + } +} +``` + +
+
+ +--- + +## Create a Notification + +Create a new notification. + +
+
+ +### Query Parameters + +Supports all [global query parameters](/reference/query). + +### Request Body + +A partial [notification object](#the-notification-object). + +### Returns + +Returns the [notification object](#the-notification-object) for the created notification. + +
+
+ +### REST API + +``` +POST /notifications +``` + +##### Example + +```json +// POST /notifications + +{ + "recipient": "410b5772-e63f-4ae6-9ea2-39c3a31bd6ca", + "subject": "Hi there!" +} +``` + +### GraphQL + +``` +POST /graphql/system +``` + +```graphql +type Mutation { + create_notifications_item(data: create_directus_notifications_input!): directus_notifications +} +``` + +##### Example + +```graphql +mutation { + create_notifications_item(data: { recipient: "410b5772-e63f-4ae6-9ea2-39c3a31bd6ca", subject: "Hi there!" }) { + id + recipient + } +} +``` + +
+
+ +--- + +## Create Multiple Notifications + +Create multiple new notifications. + +
+
+ +### Query Parameters + +Supports all [global query parameters](/reference/query). + +### Request Body + +An array of partial [notification objects](#the-notification-object). + +### Returns + +Returns the [notification object](#the-notification-object) for the created notification. + +
+
+ +### REST API + +``` +POST /notifications +``` + +##### Example + +```json +// POST /notifications + +[ + { + "collection": "directus_files", + "recipient": "410b5772-e63f-4ae6-9ea2-39c3a31bd6ca", + "message": "Hi there! You should check out these files" + }, + { + "collection": "articles", + "recipient": "410b5772-e63f-4ae6-9ea2-39c3a31bd6ca", + "message": "Hi there! You should check out these articles" + } +] +``` + +### GraphQL + +``` +POST /graphql/system +``` + +```graphql +type Mutation { + create_notifications_items(data: [create_directus_notifications_input!]!): [directus_notifications] +} +``` + +##### Example + +```graphql +mutation { + create_notifications_items( + data: [ + { + collection: "directus_files" + recipient: "410b5772-e63f-4ae6-9ea2-39c3a31bd6ca" + message: "Hi there! You should check out these files" + } + { + collection: "articles" + recipient: "410b5772-e63f-4ae6-9ea2-39c3a31bd6ca" + message: "Hi there! You should check out these articles" + } + ] + ) { + id + recipient + } +} +``` + +
+
+ +--- + +## Update a Notification + +Update an existing notification. + +::: tip Email Notifications + +Emails are only sent when the notification is created. Updated to an existing notification won't trigger a new +notification email to be sent. + +::: + +
+
+ +### Query Parameters + +Supports all [global query parameters](/reference/query). + +### Request Body + +A partial [notification object](#the-notification-object). + +### Returns + +Returns the [notification object](#the-notification-object) for the updated notification. + +
+
+ +### REST API + +``` +PATCH /notifications/:id +``` + +##### Example + +```json +// PATCH /notifications/34 + +{ + "message": "This is my updated notification" +} +``` + +### GraphQL + +``` +POST /graphql/system +``` + +```graphql +type Mutation { + update_notifications_item(id: ID!, data: update_directus_notifications_input): directus_notifications +} +``` + +##### Example + +```graphql +mutation { + update_notifications_item(id: 32, data: { message: "This is my updated notification" }) { + id + message + } +} +``` + +
+
+ +--- + +## Update Multiple Notifications + +Update multiple existing notifications. + +
+
+ +### Query Parameters + +Supports all [global query parameters](/reference/query). + +### Request Body + +
+ +`keys` **Required**\ +Array of primary keys of the notifications you'd like to update. + +`data` **Required**\ +Any of [the notification object](#the-notification-object)'s properties. + +
+ +### Returns + +Returns the [notification objects](#the-notification-object) for the updated notifications. + +
+
+ +### REST API + +``` +PATCH /notifications +``` + +##### Example + +```json +// PATCH /notifications + +{ + "keys": [15, 64], + "data": { + "message": "Updated message!" + } +} +``` + +### GraphQL + +``` +POST /graphql/system +``` + +```graphql +type Mutation { + update_notifications_items(ids: [ID!]!, data: update_directus_notifications_input): [directus_notifications] +} +``` + +##### Example + +```graphql +mutation { + update_notifications_items(ids: [15, 64], data: { message: "Updated message!" }) { + id + recipient + } +} +``` + +
+
+ +--- + +## Delete a Notification + +Delete an existing notification. + +
+
+ +### Returns + +Empty body. + +
+
+ +### REST API + +``` +DELETE /notifications/:id +``` + +##### Example + +``` +DELETE /notifications/34 +``` + +### GraphQL + +``` +POST /graphql/system +``` + +```graphql +type Mutation { + delete_notifications_item(id: ID!): delete_one +} +``` + +##### Example + +```graphql +mutation { + delete_notifications_item(id: 32) { + id + } +} +``` + +
+
+ +--- + +## Delete Multiple Notifications + +Delete multiple existing notifications. + +
+
+ +### Request Body + +An array of notification primary keys + +### Returns + +Empty body. + +
+
+ +### REST API + +``` +DELETE /notifications +``` + +##### Example + +```json +// DELETE /notifications +[15, 251, 810] +``` + +### GraphQL + +``` +POST /graphql/system +``` + +```graphql +type Mutation { + delete_notifications_items(ids: [ID!]!): delete_many +} +``` + +##### Example + +```graphql +mutation { + delete_notifications_items(ids: [15, 251, 810]) { + ids + } +} +``` + +
+
diff --git a/package-lock.json b/package-lock.json index 500750dd57..e163cb1e51 100644 --- a/package-lock.json +++ b/package-lock.json @@ -114,6 +114,7 @@ "liquidjs": "^9.25.0", "lodash": "^4.17.21", "macos-release": "^2.4.1", + "marked": "^4.0.3", "mime-types": "^2.1.31", "ms": "^2.1.3", "nanoid": "^3.1.23", @@ -172,6 +173,7 @@ "@types/nodemailer": "6.4.4", "@types/object-hash": "2.2.1", "@types/qs": "6.9.7", + "@types/sanitize-html": "^2.5.0", "@types/sharp": "0.29.4", "@types/stream-json": "1.7.1", "@types/supertest": "2.0.11", @@ -181,6 +183,7 @@ "copyfiles": "2.4.1", "cross-env": "7.0.3", "jest": "27.3.1", + "sanitize-html": "^2.5.3", "ts-jest": "27.0.7", "ts-node-dev": "1.1.8", "typescript": "4.5.2" @@ -266,6 +269,16 @@ "node": ">=8.0.0" } }, + "api/node_modules/marked": { + "version": "4.0.3", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 12" + } + }, "api/node_modules/ms": { "version": "2.1.3", "license": "MIT" @@ -333,6 +346,7 @@ "apexcharts": "3.30.0", "axios": "0.24.0", "base-64": "1.0.0", + "caret-pos": "^2.0.0", "codemirror": "5.64.0", "copyfiles": "2.4.1", "cropperjs": "1.5.12", @@ -392,9 +406,8 @@ }, "app/node_modules/mime": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", "dev": true, + "license": "MIT", "bin": { "mime": "cli.js" }, @@ -654,16 +667,14 @@ }, "node_modules/@aws-crypto/ie11-detection": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-2.0.0.tgz", - "integrity": "sha512-pkVXf/dq6PITJ0jzYZ69VhL8VFOFoPZLZqtU/12SGnzYuJOOGNfF41q9GxdI1yqC8R13Rq3jOLKDFpUJFT5eTA==", + "license": "Apache-2.0", "dependencies": { "tslib": "^1.11.1" } }, "node_modules/@aws-crypto/sha256-browser": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-2.0.0.tgz", - "integrity": "sha512-rYXOQ8BFOaqMEHJrLHul/25ckWH6GTJtdLSajhlqGMx0PmSueAuvboCuZCTqEKlxR8CQOwRarxYMZZSYlhRA1A==", + "license": "Apache-2.0", "dependencies": { "@aws-crypto/ie11-detection": "^2.0.0", "@aws-crypto/sha256-js": "^2.0.0", @@ -677,8 +688,7 @@ }, "node_modules/@aws-crypto/sha256-js": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-2.0.0.tgz", - "integrity": "sha512-VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==", + "license": "Apache-2.0", "dependencies": { "@aws-crypto/util": "^2.0.0", "@aws-sdk/types": "^3.1.0", @@ -687,16 +697,14 @@ }, "node_modules/@aws-crypto/supports-web-crypto": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-2.0.0.tgz", - "integrity": "sha512-Ge7WQ3E0OC7FHYprsZV3h0QIcpdyJLvIeg+uTuHqRYm8D6qCFJoiC+edSzSyFiHtZf+NOQDJ1q46qxjtzIY2nA==", + "license": "Apache-2.0", "dependencies": { "tslib": "^1.11.1" } }, "node_modules/@aws-crypto/util": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-2.0.0.tgz", - "integrity": "sha512-YDooyH83m2P5A3h6lNH7hm6mIP93sU/dtzRmXIgtO4BCB7SvtX8ysVKQAE8tVky2DQ3HHxPCjNTuUe7YoAMrNQ==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "^3.1.0", "@aws-sdk/util-utf8-browser": "^3.0.0", @@ -705,8 +713,7 @@ }, "node_modules/@aws-sdk/abort-controller": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.40.0.tgz", - "integrity": "sha512-S7LzLvNuwuf0q7r4q7zqGzxd/W2xYsn8cpZ90MMb3ObolhbkLySrikUJujmXae8k+2/KFCOr+FVC0YLrATSUgQ==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" @@ -717,13 +724,11 @@ }, "node_modules/@aws-sdk/abort-controller/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/client-ses": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-ses/-/client-ses-3.40.0.tgz", - "integrity": "sha512-SZIwpvX0zGgJ87OtnbBdLYG3FkUOW6I55fPVQA+eX/lnTywtKBO+Y8nNES306S53BzxgUuWAza8K4chPzIr0UA==", + "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "2.0.0", "@aws-crypto/sha256-js": "2.0.0", @@ -766,21 +771,18 @@ }, "node_modules/@aws-sdk/client-ses/node_modules/entities": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/@aws-sdk/client-ses/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/client-sso": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.40.0.tgz", - "integrity": "sha512-eFQ4yFg8RlPaldv/ja2K3pUUyXauGbo4GJPlbPKYoquwW785au8qECKSl3iqBmUklj6WmdW1rmtlQk2OUcyYSw==", + "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "2.0.0", "@aws-crypto/sha256-js": "2.0.0", @@ -817,13 +819,11 @@ }, "node_modules/@aws-sdk/client-sso/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/client-sts": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.40.0.tgz", - "integrity": "sha512-7jBlb1uyq2c0bFqi4ZVnEMNzLTodvIZKoxjh1LYA8OZISbMsDjTxFOYOmuyOhuPy0fLfLL3KRLtengJ23zs3QQ==", + "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "2.0.0", "@aws-crypto/sha256-js": "2.0.0", @@ -865,21 +865,18 @@ }, "node_modules/@aws-sdk/client-sts/node_modules/entities": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/@aws-sdk/client-sts/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/config-resolver": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.40.0.tgz", - "integrity": "sha512-QYy6J2k31QL6J74hPBfptnLW1kQYdN+xjwH4UQ1mv7EUhRoJN9ZY2soStJowFy4at6IIOOVWbyG5dyqvrbEovg==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/signature-v4": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -892,13 +889,11 @@ }, "node_modules/@aws-sdk/config-resolver/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/credential-provider-env": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.40.0.tgz", - "integrity": "sha512-qHZdf2vxhzZkSygjw2I4SEYFL2dMZxxYvO4QlkqQouKY81OVxs/j69oiNCjPasQzGz5jaZZKI8xEAIfkSyr1lg==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -910,13 +905,11 @@ }, "node_modules/@aws-sdk/credential-provider-env/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/credential-provider-imds": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.40.0.tgz", - "integrity": "sha512-Ty/wVa+BQrCFrP06AGl5S1CeLifDt68YrlYXUnkRn603SX4DvxBgVO7XFeDH58G8ziDCiqxfmVl4yjbncPPeSw==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/node-config-provider": "3.40.0", "@aws-sdk/property-provider": "3.40.0", @@ -930,13 +923,11 @@ }, "node_modules/@aws-sdk/credential-provider-imds/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/credential-provider-ini": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.40.0.tgz", - "integrity": "sha512-lyTlgItJ+wPWIkcnkpmZTG+ApCwZBDjLzCPzhFOG1vT1wb0pF3KyJGmjWaW9C6s84rvWwGv1bY3/KBo92KtcjA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/credential-provider-env": "3.40.0", "@aws-sdk/credential-provider-imds": "3.40.0", @@ -954,13 +945,11 @@ }, "node_modules/@aws-sdk/credential-provider-ini/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/credential-provider-node": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.40.0.tgz", - "integrity": "sha512-TANFmUqZwXd2ytA4Ji8IJDC8g42EnogjeIX+ypea/sImY5L7sQpd/sxQlcpIOJlr/6cGL3VhLGh2EGHXEJQEYA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/credential-provider-env": "3.40.0", "@aws-sdk/credential-provider-imds": "3.40.0", @@ -980,13 +969,11 @@ }, "node_modules/@aws-sdk/credential-provider-node/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/credential-provider-process": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.40.0.tgz", - "integrity": "sha512-qsaNCDesW2GasDbzpeOA371gxugi05JWxt3EKonLbUfkGKBK7kmmL6EgLIxZuNm2/Ve4RS07PKp8yBGm4xIx9w==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/shared-ini-file-loader": "3.37.0", @@ -1000,13 +987,11 @@ }, "node_modules/@aws-sdk/credential-provider-process/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/credential-provider-sso": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.40.0.tgz", - "integrity": "sha512-8XOz1cDsRvmb6UyLKersi+kLx2Bo4nXpsLZDbTuobEqMwtzIIZKW3C8n8icKpiqq1xhJ6hyT80on+HJ8ykrFKA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-sso": "3.40.0", "@aws-sdk/property-provider": "3.40.0", @@ -1021,13 +1006,11 @@ }, "node_modules/@aws-sdk/credential-provider-sso/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/credential-provider-web-identity": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.40.0.tgz", - "integrity": "sha512-A1KT6Ft3k5B6bU2I2jXS4fSoWbWftEysrxT3zyuzhMbsstsHBJ/J9mEsQ4lgZyr6DXEqn7HD3MbdEoaBN2b3sg==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -1039,13 +1022,11 @@ }, "node_modules/@aws-sdk/credential-provider-web-identity/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/fetch-http-handler": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.40.0.tgz", - "integrity": "sha512-w1HiZromoU+/bbEo89uO81l6UO/M+c2uOMnXntZqe6t3ZHUUUo3AbvhKh0QGVFqRQa+Oi0+95KqWmTHa72/9Iw==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/querystring-builder": "3.40.0", @@ -1056,13 +1037,11 @@ }, "node_modules/@aws-sdk/fetch-http-handler/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/hash-node": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.40.0.tgz", - "integrity": "sha512-yOXXK85DdGDktdnQtXgMdaVKii4wtMjEhJ1mrvx2A9nMFNaPhxvERkVVIUKSWlJRa9ZujOw5jWOx8d2R51/Kjg==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "@aws-sdk/util-buffer-from": "3.37.0", @@ -1074,13 +1053,11 @@ }, "node_modules/@aws-sdk/hash-node/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/invalid-dependency": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.40.0.tgz", - "integrity": "sha512-axIWtDwCBDDqEgAJipX1FB1ZNpWYXquVwKDMo+7G+ftPBZ4FEq4M1ELhXJL3hhNJ9ZmCQzv+4F6Wnt8dwuzUaQ==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" @@ -1088,13 +1065,11 @@ }, "node_modules/@aws-sdk/invalid-dependency/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/is-array-buffer": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.37.0.tgz", - "integrity": "sha512-XLjA/a6AuGnCvcJZLsMTy2jxF2upgGhqCCkoIJgLlzzXHSihur13KcmPvW/zcaGnCRj0SvKWXiJHl4vDlW75VQ==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" }, @@ -1104,13 +1079,11 @@ }, "node_modules/@aws-sdk/is-array-buffer/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-content-length": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.40.0.tgz", - "integrity": "sha512-sybAJb8v7I/vvL08R3+TI/XDAg9gybQTZ2treC24Ap4+jAOz4QBTHJPMKaUlEeFlMUcq4rj6/u2897ebYH6opw==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -1122,13 +1095,11 @@ }, "node_modules/@aws-sdk/middleware-content-length/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-host-header": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.40.0.tgz", - "integrity": "sha512-/wocR7JFOLM7/+BQM1DgAd6KCFYcdxYu1P7AhI451GlVNuYa5f89zh7p0gt3SRC6monI5lXgpL7RudhDm8fTrA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -1140,13 +1111,11 @@ }, "node_modules/@aws-sdk/middleware-host-header/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-logger": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.40.0.tgz", - "integrity": "sha512-19kx0Xg5ymVRKoupmhdmfTBkROcv3DZj508agpyG2YAo0abOObMlIP4Jltg0VD4PhNjGzNh0jFGJnvhjdwv4/A==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" @@ -1157,13 +1126,11 @@ }, "node_modules/@aws-sdk/middleware-logger/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-retry": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.40.0.tgz", - "integrity": "sha512-SMUJrukugLL7YJE5X8B2ToukxMWMPwnf7jAFr84ptycCe8bdWv8x8klQ3EtVWpyqochtNlbTi6J/tTQBniUX7A==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/service-error-classification": "3.40.0", @@ -1177,21 +1144,18 @@ }, "node_modules/@aws-sdk/middleware-retry/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-retry/node_modules/uuid": { "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/@aws-sdk/middleware-sdk-sts": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.40.0.tgz", - "integrity": "sha512-TcrbCvj1PkabFZiNczT3yePZtuEm2fAIw1OVnQyLcF2KW+p62Hv5YkK4MPOfx3LA/0lzjOUO1RNl2x7gzV443Q==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/middleware-signing": "3.40.0", "@aws-sdk/property-provider": "3.40.0", @@ -1206,13 +1170,11 @@ }, "node_modules/@aws-sdk/middleware-sdk-sts/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-serde": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.40.0.tgz", - "integrity": "sha512-uOWfZjlAoBy6xPqp0d4ka83WNNbEVCWn9WwfqBUXThyoTdTooYSpXe5y2YzN0BJa8b+tEZTyWpgamnBpFLp47g==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" @@ -1223,13 +1185,11 @@ }, "node_modules/@aws-sdk/middleware-serde/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-signing": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.40.0.tgz", - "integrity": "sha512-RqK5nPbfma0qInMvjtpVkDYY/KkFS6EKlOv3DWTdxbXJ4YuOxgKiuUromhmBUoyjFag0JO7LUWod07H+/DawoA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/protocol-http": "3.40.0", @@ -1243,13 +1203,11 @@ }, "node_modules/@aws-sdk/middleware-signing/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-stack": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.40.0.tgz", - "integrity": "sha512-hby9HvESUYJxpdALX+6Dn2LPmS5jtMVurGB/+j3MWOvIcDYB4bcSXgVRvXzYnTKwbSupIdbX9zOE2ZAx2SJpUQ==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" }, @@ -1259,13 +1217,11 @@ }, "node_modules/@aws-sdk/middleware-stack/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/middleware-user-agent": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.40.0.tgz", - "integrity": "sha512-dzC2fxWnanetFJ1oYgil8df3N36bR1yc/OCOpbdfQNiUk1FrXiCXqH5rHNO8zCvnwJAj8GHFwpFGd9a2Qube2w==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -1277,13 +1233,11 @@ }, "node_modules/@aws-sdk/middleware-user-agent/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/node-config-provider": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.40.0.tgz", - "integrity": "sha512-AmokjgUDECG8osoMfdRsPNweqI+L1pn4bYGk5iTLmzbBi0o4ot0U1FdX8Rf0qJZZwS4t1TXc3s8/PDVknmPxKg==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/shared-ini-file-loader": "3.37.0", @@ -1296,13 +1250,11 @@ }, "node_modules/@aws-sdk/node-config-provider/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/node-http-handler": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.40.0.tgz", - "integrity": "sha512-qjda6IbxDhbYr8NHmrMurKkbjgLUkfTMVgagDErDK24Nm3Dn5VaO6J4n6c0Q4OLHlmFaRcUfZSTrOo5DAubqCw==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/abort-controller": "3.40.0", "@aws-sdk/protocol-http": "3.40.0", @@ -1316,13 +1268,11 @@ }, "node_modules/@aws-sdk/node-http-handler/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/property-provider": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.40.0.tgz", - "integrity": "sha512-Mx4lkShjsYRwW9ujHA1pcnuubrWQ4kF5/DXWNfUiXuSIO/0Lojp1qTLheyBm4vzkJIlx5umyP6NvRAUkEHSN4Q==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" @@ -1333,13 +1283,11 @@ }, "node_modules/@aws-sdk/property-provider/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/protocol-http": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.40.0.tgz", - "integrity": "sha512-f4ea7/HZkjpvGBrnRIuzc/bhrExWrgDv7eulj4htPukZGHdTqSJD3Jk8lEXWvFuX2vUKQDGhEhCDsqup7YWJQQ==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" @@ -1350,13 +1298,11 @@ }, "node_modules/@aws-sdk/protocol-http/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/querystring-builder": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.40.0.tgz", - "integrity": "sha512-gO24oipnNaxJRBXB7lhLfa96vIMOd8gtMBqJTjelTjS2e1ZP1YY12CNKKTWwafSk8Ge021erZAG/YTOaXGpv+g==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "@aws-sdk/util-uri-escape": "3.37.0", @@ -1368,13 +1314,11 @@ }, "node_modules/@aws-sdk/querystring-builder/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/querystring-parser": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.40.0.tgz", - "integrity": "sha512-XZIyaKQIiZAM6zelCBcsLHhVDOLafi7XIOd3jy6SymGN8ajj3HqUJ/vdQ5G6ISTk18OrqgqcCOI9oNzv+nrBcA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" @@ -1385,21 +1329,18 @@ }, "node_modules/@aws-sdk/querystring-parser/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/service-error-classification": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.40.0.tgz", - "integrity": "sha512-c8btKmkvjXczWudXubGdbO3JgmjySBUVC/gCrZDNfwNGsG8RYJJQYYcnmt1gWjelUZsgMDl/2PIzxTlxVF91rA==", + "license": "Apache-2.0", "engines": { "node": ">= 10.0.0" } }, "node_modules/@aws-sdk/shared-ini-file-loader": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.37.0.tgz", - "integrity": "sha512-+vRBSlfa48R9KL7DpQt3dsu5/+5atjRgoCISblWo3SLpjrx41pKcjKneo7a1u0aP1Xc2oG2TfIyqTWZuOXsmEQ==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" }, @@ -1409,13 +1350,11 @@ }, "node_modules/@aws-sdk/shared-ini-file-loader/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/signature-v4": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.40.0.tgz", - "integrity": "sha512-Q1GNZJRCS3W2qsRtDsX/b6EOSfMXfr6TW46N3LnLTGYZ3KAN2SOSJ1DsW59AuGpEZyRmOhJ9L/Q5U403+bZMXQ==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/is-array-buffer": "3.37.0", "@aws-sdk/types": "3.40.0", @@ -1429,13 +1368,11 @@ }, "node_modules/@aws-sdk/signature-v4/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/smithy-client": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.40.0.tgz", - "integrity": "sha512-6x6uvmfhFpkCiT1O/SsFWRyyqs3ZHMB1hVypn9XfT1/XSrfVLhcbBtnX1/UGPkQvA1GJGo5Pkxv3odQfUw7rUg==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/middleware-stack": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -1447,21 +1384,18 @@ }, "node_modules/@aws-sdk/smithy-client/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/types": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.40.0.tgz", - "integrity": "sha512-KpILcfvRaL88TLvo3SY4OuCCg90SvcNLPyjDwUuBqiOyWODjrKShHtAPJzej4CLp92lofh+ul0UnBfV9Jb/5PA==", + "license": "Apache-2.0", "engines": { "node": ">= 10.0.0" } }, "node_modules/@aws-sdk/url-parser": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.40.0.tgz", - "integrity": "sha512-HwNV+HX7bHgLk5FzTOgdXANsC0SeVz5PMC4Nh+TLz2IoeQnrw4H8dsA4YNonncjern5oC5veKRjQeOoCL5SlSQ==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/querystring-parser": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -1470,26 +1404,22 @@ }, "node_modules/@aws-sdk/url-parser/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-base64-browser": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.37.0.tgz", - "integrity": "sha512-o4s/rHVm5k8eC/T7grJQINyYA/mKfDmEWKMA9wk5iBroXlI2rUm7x649TBk5hzoddufk/mffEeNz/1wM7yTmlg==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" } }, "node_modules/@aws-sdk/util-base64-browser/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-base64-node": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.37.0.tgz", - "integrity": "sha512-1UPxly1GPrGZtlIWvbNCDIAund4Oyp8cFi9neA43TeNACvrmEQu/nG01pDbOoo0ENoVSVJrNAVBeqKEpqjH2GA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/util-buffer-from": "3.37.0", "tslib": "^2.3.0" @@ -1500,26 +1430,22 @@ }, "node_modules/@aws-sdk/util-base64-node/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-body-length-browser": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.37.0.tgz", - "integrity": "sha512-tClmH1uYelqWT43xxmnOsVFbCQJiIwizp6y4E109G2LIof07inxrO0L8nbwBpjhugVplx6NZr9IaqTFqbdM1gA==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" } }, "node_modules/@aws-sdk/util-body-length-browser/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-body-length-node": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.37.0.tgz", - "integrity": "sha512-aY3mXdbEajruRi9CHgq/heM89R+Gectj/Xrs1naewmamaN8NJrvjDm3s+cw//lqqSOW903LYHXDgm7wvCzUnFA==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" }, @@ -1529,13 +1455,11 @@ }, "node_modules/@aws-sdk/util-body-length-node/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-buffer-from": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.37.0.tgz", - "integrity": "sha512-aa3SBwjLwImuJoE4+hxDIWQ9REz3UFb3p7KFPe9qopdXb/yB12RTcbrXVb4whUux4i4mO6KRij0ZNjFZrjrKPg==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/is-array-buffer": "3.37.0", "tslib": "^2.3.0" @@ -1546,13 +1470,11 @@ }, "node_modules/@aws-sdk/util-buffer-from/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-config-provider": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.40.0.tgz", - "integrity": "sha512-NjZGrA4mqhpr6gkVCAUweurP0Z9d3vFyXJCtulC0BFbpKAnKCf/crSK56NwUaNhAEMCkSuBvjRFzkbfT+HO8bA==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" }, @@ -1562,13 +1484,11 @@ }, "node_modules/@aws-sdk/util-config-provider/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-credentials": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-credentials/-/util-credentials-3.37.0.tgz", - "integrity": "sha512-zcLhSZDKgBLhUjSU5HoQpuQiP3v8oE86NmV/tiZVPEaO6YVULEAB2Cfj1hpM/b/JXWzjSHfT06KXT7QUODKS+A==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/shared-ini-file-loader": "3.37.0", "tslib": "^2.3.0" @@ -1579,13 +1499,11 @@ }, "node_modules/@aws-sdk/util-credentials/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-hex-encoding": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.37.0.tgz", - "integrity": "sha512-tn5UpfaeM+rZWqynoNqB8lwtcAXil5YYO3HLGH9himpWAdft/2Z7LK6bsYDpctaAI1WHgMDcL0bw3Id04ZUbhA==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" }, @@ -1595,13 +1513,11 @@ }, "node_modules/@aws-sdk/util-hex-encoding/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-locate-window": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.37.0.tgz", - "integrity": "sha512-NvDCfOhLLVHp27oGUUs8EVirhz91aX5gdxGS7J/sh5PF0cNN8rwaR1vSLR7BxPmJHMO7NH7i9EwiELfLfYcq6g==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" }, @@ -1611,13 +1527,11 @@ }, "node_modules/@aws-sdk/util-locate-window/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-uri-escape": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.37.0.tgz", - "integrity": "sha512-8pKf4YJTELP5lm/CEgYw2atyJBB1RWWqFa0sZx6YJmTlOtLF5G6raUdAi4iDa2hldGt2B6IAdIIyuusT8zeU8Q==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" }, @@ -1627,13 +1541,11 @@ }, "node_modules/@aws-sdk/util-uri-escape/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-user-agent-browser": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.40.0.tgz", - "integrity": "sha512-C69sTI26bV2EprTv3DTXu9XP7kD9Wu4YVPBzqztOYArd2GDYw3w+jS8SEg3XRbjAKY/mOPZ2Thw4StjpZlWZiA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "3.40.0", "bowser": "^2.11.0", @@ -1642,13 +1554,11 @@ }, "node_modules/@aws-sdk/util-user-agent-browser/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-user-agent-node": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.40.0.tgz", - "integrity": "sha512-cjIzd0hRZFTTh7iLJD6Bciu++Em1iaM1clyG02xRl0JD5DEtDSR1zO02uu+AeM7GSLGOxIvwOkK2j8ySPAOmBA==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/node-config-provider": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -1660,26 +1570,22 @@ }, "node_modules/@aws-sdk/util-user-agent-node/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-utf8-browser": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.37.0.tgz", - "integrity": "sha512-tuiOxzfqet1kKGYzlgpMGfhr64AHJnYsFx2jZiH/O6Yq8XQg43ryjQlbJlim/K/XHGNzY0R+nabeJg34q3Ua1g==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" } }, "node_modules/@aws-sdk/util-utf8-browser/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-utf8-node": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.37.0.tgz", - "integrity": "sha512-fUAgd7UTCULL36j9/vnXHxVhxvswnq23mYgTCIT8NQ7wHN30q2a89ym1e9DwGeQkJEBOkOcKLn6nsMsN7YQMDQ==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/util-buffer-from": "3.37.0", "tslib": "^2.3.0" @@ -1690,13 +1596,11 @@ }, "node_modules/@aws-sdk/util-utf8-node/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@aws-sdk/util-waiter": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.40.0.tgz", - "integrity": "sha512-jdxwNEZdID49ZvyAnxaeNm5w2moIfMLOwj/q6TxKlxYoXMs16FQWkhyfGue0vEASzchS49ewbyt+KBqpT31Ebg==", + "license": "Apache-2.0", "dependencies": { "@aws-sdk/abort-controller": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -1708,8 +1612,7 @@ }, "node_modules/@aws-sdk/util-waiter/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "license": "0BSD" }, "node_modules/@azure/abort-controller": { "version": "1.0.4", @@ -2214,8 +2117,7 @@ }, "node_modules/@babel/generator": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", - "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", + "license": "MIT", "dependencies": { "@babel/types": "^7.16.0", "jsesc": "^2.5.1", @@ -2234,8 +2136,7 @@ }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz", - "integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==", + "license": "MIT", "dependencies": { "@babel/types": "^7.16.0" }, @@ -2279,8 +2180,7 @@ }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz", - "integrity": "sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==", + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.16.0", "@babel/helper-function-name": "^7.16.0", @@ -2346,8 +2246,7 @@ }, "node_modules/@babel/helper-function-name": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", - "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", + "license": "MIT", "dependencies": { "@babel/helper-get-function-arity": "^7.16.0", "@babel/template": "^7.16.0", @@ -2359,8 +2258,7 @@ }, "node_modules/@babel/helper-get-function-arity": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", - "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", + "license": "MIT", "dependencies": { "@babel/types": "^7.16.0" }, @@ -2370,8 +2268,7 @@ }, "node_modules/@babel/helper-hoist-variables": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", - "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", + "license": "MIT", "dependencies": { "@babel/types": "^7.16.0" }, @@ -2381,8 +2278,7 @@ }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", - "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", + "license": "MIT", "dependencies": { "@babel/types": "^7.16.0" }, @@ -2392,8 +2288,7 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", - "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", + "license": "MIT", "dependencies": { "@babel/types": "^7.16.0" }, @@ -2420,8 +2315,7 @@ }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", - "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", + "license": "MIT", "dependencies": { "@babel/types": "^7.16.0" }, @@ -2450,8 +2344,7 @@ }, "node_modules/@babel/helper-replace-supers": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", - "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", + "license": "MIT", "dependencies": { "@babel/helper-member-expression-to-functions": "^7.16.0", "@babel/helper-optimise-call-expression": "^7.16.0", @@ -2484,8 +2377,7 @@ }, "node_modules/@babel/helper-split-export-declaration": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", - "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", + "license": "MIT", "dependencies": { "@babel/types": "^7.16.0" }, @@ -2534,8 +2426,7 @@ }, "node_modules/@babel/highlight": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", - "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.15.7", "chalk": "^2.0.0", @@ -2604,8 +2495,7 @@ }, "node_modules/@babel/parser": { "version": "7.16.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.2.tgz", - "integrity": "sha512-RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw==", + "license": "MIT", "bin": { "parser": "bin/babel-parser.js" }, @@ -2963,8 +2853,7 @@ }, "node_modules/@babel/plugin-syntax-jsx": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.0.tgz", - "integrity": "sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -3063,8 +2952,7 @@ }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz", - "integrity": "sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -3405,8 +3293,7 @@ }, "node_modules/@babel/plugin-transform-react-display-name": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.0.tgz", - "integrity": "sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==", + "license": "MIT", "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -3420,8 +3307,7 @@ }, "node_modules/@babel/plugin-transform-react-jsx": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.0.tgz", - "integrity": "sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==", + "license": "MIT", "peer": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.16.0", @@ -3439,8 +3325,7 @@ }, "node_modules/@babel/plugin-transform-react-jsx-development": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.0.tgz", - "integrity": "sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==", + "license": "MIT", "peer": true, "dependencies": { "@babel/plugin-transform-react-jsx": "^7.16.0" @@ -3454,8 +3339,7 @@ }, "node_modules/@babel/plugin-transform-react-pure-annotations": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.0.tgz", - "integrity": "sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==", + "license": "MIT", "peer": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.16.0", @@ -3587,8 +3471,7 @@ }, "node_modules/@babel/plugin-transform-typescript": { "version": "7.16.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz", - "integrity": "sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg==", + "license": "MIT", "peer": true, "dependencies": { "@babel/helper-create-class-features-plugin": "^7.16.0", @@ -3737,8 +3620,7 @@ }, "node_modules/@babel/preset-react": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.0.tgz", - "integrity": "sha512-d31IFW2bLRB28uL1WoElyro8RH5l6531XfxMtCeCmp6RVAF1uTfxxUA0LH1tXl+psZdwfmIbwoG4U5VwgbhtLw==", + "license": "MIT", "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", @@ -3757,8 +3639,7 @@ }, "node_modules/@babel/preset-typescript": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.0.tgz", - "integrity": "sha512-txegdrZYgO9DlPbv+9QOVpMnKbOtezsLHWsnsRF4AjbSIsVaujrq1qg8HK0mxQpWv0jnejt0yEoW1uWpvbrDTg==", + "license": "MIT", "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5", @@ -3784,8 +3665,7 @@ }, "node_modules/@babel/runtime-corejs3": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.0.tgz", - "integrity": "sha512-Oi2qwQ21X7/d9gn3WiwkDTJmq3TQtYNz89lRnoFy8VeZpWlsyXvzSwiRrRZ8cXluvSwqKxqHJ6dBd9Rv+p0ZGQ==", + "license": "MIT", "peer": true, "dependencies": { "core-js-pure": "^3.19.0", @@ -3797,8 +3677,7 @@ }, "node_modules/@babel/standalone": { "version": "7.16.2", - "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.16.2.tgz", - "integrity": "sha512-Cc0b/YJapYV1o+lhevV2FCr0lkbGbejA/iRWH5S5aZCF/AeAVVRcIS491omYMNbf+Z9SCDgczUu8Kx8WGCnr2g==", + "license": "MIT", "peer": true, "engines": { "node": ">=6.9.0" @@ -3806,8 +3685,7 @@ }, "node_modules/@babel/template": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", - "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/parser": "^7.16.0", @@ -3819,8 +3697,7 @@ }, "node_modules/@babel/template/node_modules/@babel/code-frame": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", - "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "license": "MIT", "dependencies": { "@babel/highlight": "^7.16.0" }, @@ -3830,8 +3707,7 @@ }, "node_modules/@babel/traverse": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.0.tgz", - "integrity": "sha512-qQ84jIs1aRQxaGaxSysII9TuDaguZ5yVrEuC0BN2vcPlalwfLovVmCjbFDPECPXcYM/wLvNFfp8uDOliLxIoUQ==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -3849,8 +3725,7 @@ }, "node_modules/@babel/traverse/node_modules/@babel/code-frame": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", - "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "license": "MIT", "dependencies": { "@babel/highlight": "^7.16.0" }, @@ -3867,8 +3742,7 @@ }, "node_modules/@babel/types": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", - "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", + "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.15.7", "to-fast-properties": "^2.0.0" @@ -4006,8 +3880,7 @@ }, "node_modules/@eslint/eslintrc": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.4.tgz", - "integrity": "sha512-h8Vx6MdxwWI2WM8/zREHMoqdgLNXEL4QX3MWSVMdyNJGvXVOs+6lp+m2hc3FnuMHDc4poxFNI20vCk0OmI4G0Q==", + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -4025,8 +3898,7 @@ }, "node_modules/@eslint/eslintrc/node_modules/ignore": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "license": "MIT", "engines": { "node": ">= 4" } @@ -4066,24 +3938,21 @@ }, "node_modules/@fullcalendar/common": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/common/-/common-5.10.1.tgz", - "integrity": "sha512-EumKIJcQTvQdTs75/9dmeREFgjcRVWzqHJS1Xvlz5mNsmB+w9EINCHETRjChtAQg1WD/lTQyVj4sHsKO7vCMSw==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@fullcalendar/common/node_modules/tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", - "dev": true + "dev": true, + "license": "0BSD" }, "node_modules/@fullcalendar/core": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/core/-/core-5.10.1.tgz", - "integrity": "sha512-8sVuC6ywXV+cxqsqTZaR1hgUqeyjVed20NyZ7lGW9AY0kma1GIEwLgqPS5Q6uVhHyin68lmgecKfJCwhxENE8w==", "dev": true, + "license": "MIT", "dependencies": { "@fullcalendar/common": "~5.10.1", "preact": "^10.0.5", @@ -4097,9 +3966,8 @@ }, "node_modules/@fullcalendar/daygrid": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz", - "integrity": "sha512-sfUMP+rew0krsBffgNcWWKhBCiyytGfRKZJoc64E8ohX7VWjPcPZuB1xgO5U4wPLmNkT0rZiHoGeQGTXw1+ZKg==", "dev": true, + "license": "MIT", "dependencies": { "@fullcalendar/common": "~5.10.1", "tslib": "^2.1.0" @@ -4112,9 +3980,8 @@ }, "node_modules/@fullcalendar/interaction": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/interaction/-/interaction-5.10.1.tgz", - "integrity": "sha512-H1g1QeXg7yXtUcKmVtfg7uzm5R5ElFTvYniiXU+8kJda69IDg7Lee+Y7UDv5dvLb5/HxO86RhPVxRtcOQ8XdXw==", "dev": true, + "license": "MIT", "dependencies": { "@fullcalendar/common": "~5.10.1", "tslib": "^2.1.0" @@ -4127,9 +3994,8 @@ }, "node_modules/@fullcalendar/list": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/list/-/list-5.10.1.tgz", - "integrity": "sha512-sB+AzM9P1nzGIzwVFNN8Zbocg5lkVQftyuJAZtULgu9o9e1rH/Aqsxt9Itf00N3WmMOh8H1LlnRpZF5kGu/j2w==", "dev": true, + "license": "MIT", "dependencies": { "@fullcalendar/common": "~5.10.1", "tslib": "^2.1.0" @@ -4142,9 +4008,8 @@ }, "node_modules/@fullcalendar/timegrid": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/timegrid/-/timegrid-5.10.1.tgz", - "integrity": "sha512-0O0m+JzFBlg8gxYr/rIjZViRlbndCtjZlDjjIylQHFBeWC32e3cpHEavKGbTIBLN8SDilUYAJnE21abSqC2G/w==", "dev": true, + "license": "MIT", "dependencies": { "@fullcalendar/common": "~5.10.1", "@fullcalendar/daygrid": "~5.10.1", @@ -4677,30 +4542,22 @@ }, "node_modules/@hapi/address": { "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", - "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==", - "deprecated": "Moved to 'npm install @sideway/address'", + "license": "BSD-3-Clause", "peer": true }, "node_modules/@hapi/bourne": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", - "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", - "deprecated": "This version has been deprecated and is no longer supported or maintained", + "license": "BSD-3-Clause", "peer": true }, "node_modules/@hapi/hoek": { "version": "8.5.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", - "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==", - "deprecated": "This version has been deprecated and is no longer supported or maintained", + "license": "BSD-3-Clause", "peer": true }, "node_modules/@hapi/joi": { "version": "15.1.1", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", - "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", - "deprecated": "Switch to 'npm install joi'", + "license": "BSD-3-Clause", "peer": true, "dependencies": { "@hapi/address": "2.x.x", @@ -4711,9 +4568,7 @@ }, "node_modules/@hapi/topo": { "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", - "deprecated": "This version has been deprecated and is no longer supported or maintained", + "license": "BSD-3-Clause", "peer": true, "dependencies": { "@hapi/hoek": "^8.3.0" @@ -6533,8 +6388,7 @@ }, "node_modules/@mdx-js/util": { "version": "2.0.0-next.8", - "resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-2.0.0-next.8.tgz", - "integrity": "sha512-T0BcXmNzEunFkuxrO8BFw44htvTPuAoKbLvTG41otyZBDV1Rs+JMddcUuaP5vXpTWtgD3grhcrPEwyx88RUumQ==", + "license": "MIT", "peer": true, "funding": { "type": "opencollective", @@ -7508,8 +7362,7 @@ }, "node_modules/@turist/fetch": { "version": "7.1.7", - "resolved": "https://registry.npmjs.org/@turist/fetch/-/fetch-7.1.7.tgz", - "integrity": "sha512-XP20kvfyMNlWdPVQXyuzA40LoCHbbJptikt7W+TlZ5sS+NNjk70xjXCtHBLEudp7li3JldXEFSIUzpW1a0WEhA==", + "license": "MIT", "peer": true, "dependencies": { "@types/node-fetch": "2" @@ -7520,14 +7373,12 @@ }, "node_modules/@turist/time": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/@turist/time/-/time-0.0.2.tgz", - "integrity": "sha512-qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ==", + "license": "MIT", "peer": true }, "node_modules/@types/acorn": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", - "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/estree": "*" @@ -7656,8 +7507,7 @@ }, "node_modules/@types/common-tags": { "version": "1.8.1", - "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", - "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==", + "license": "MIT", "peer": true }, "node_modules/@types/component-emitter": { @@ -7785,8 +7635,7 @@ }, "node_modules/@types/estree-jsx": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-0.0.1.tgz", - "integrity": "sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==", + "license": "MIT", "peer": true, "dependencies": { "@types/estree": "*" @@ -7951,8 +7800,7 @@ }, "node_modules/@types/json-patch": { "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/json-patch/-/json-patch-0.0.30.tgz", - "integrity": "sha512-MhCUjojzDhVLnZnxwPwa+rETFRDQ0ffjxYdrqOP6TBO2O0/Z64PV5tNeYApo4bc4y4frbWOrRwv/eEkXlI13Rw==", + "license": "MIT", "peer": true }, "node_modules/@types/json-schema": { @@ -7990,9 +7838,8 @@ }, "node_modules/@types/ldapjs": { "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@types/ldapjs/-/ldapjs-2.2.2.tgz", - "integrity": "sha512-U5HdnwIZ5uZa+f3usxdqgyfNmOROxOxXvQdQtsu6sKo8fte5vej9br2csHxPvXreAbAO1bs8/rdEzvCLpi67nQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } @@ -8053,15 +7900,13 @@ }, "node_modules/@types/marked": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/marked/-/marked-3.0.2.tgz", - "integrity": "sha512-mGYI9qFs+i5eYaytWKBbtEMbIkrXGKuhsDpDcj70ogKS2gk1NmgEy9Z3VEKz922Lfms6eITXXqv5idlX7C/irw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/marked-terminal": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@types/marked-terminal/-/marked-terminal-3.1.3.tgz", - "integrity": "sha512-dKgOLKlI5zFb2jTbRcyQqbdrHxeU74DCOkVIZtsoB2sc1ctXZ1iB2uxG2jjAuzoLdvwHP065ijN6Q8HecWdWYg==", "dev": true, + "license": "MIT", "dependencies": { "@types/marked": "^3", "chalk": "^2.4.1" @@ -8133,8 +7978,7 @@ }, "node_modules/@types/mdast": { "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", - "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "*" @@ -8270,8 +8114,7 @@ }, "node_modules/@types/prop-types": { "version": "15.7.4", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", - "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==", + "license": "MIT", "peer": true }, "node_modules/@types/q": { @@ -8298,8 +8141,7 @@ }, "node_modules/@types/reach__router": { "version": "1.3.9", - "resolved": "https://registry.npmjs.org/@types/reach__router/-/reach__router-1.3.9.tgz", - "integrity": "sha512-N6rqQqTTAV/zKLfK3iq9Ww3wqCEhTZvsilhl0zI09zETdVq1QGmJH6+/xnj8AFUWIrle2Cqo+PGM/Ltr1vBb9w==", + "license": "MIT", "peer": true, "dependencies": { "@types/react": "*" @@ -8307,8 +8149,7 @@ }, "node_modules/@types/react": { "version": "17.0.33", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.33.tgz", - "integrity": "sha512-pLWntxXpDPaU+RTAuSGWGSEL2FRTNyRQOjSWDke/rxRg14ncsZvx8AKWMWZqvc1UOaJIAoObdZhAWvRaHFi5rw==", + "license": "MIT", "peer": true, "dependencies": { "@types/prop-types": "*", @@ -8339,10 +8180,94 @@ "@types/node": "*" } }, + "node_modules/@types/sanitize-html": { + "version": "2.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "htmlparser2": "^6.0.0" + } + }, + "node_modules/@types/sanitize-html/node_modules/dom-serializer": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/@types/sanitize-html/node_modules/domelementtype": { + "version": "2.2.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/@types/sanitize-html/node_modules/domhandler": { + "version": "4.2.2", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/@types/sanitize-html/node_modules/domutils": { + "version": "2.8.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/@types/sanitize-html/node_modules/entities": { + "version": "2.2.0", + "dev": true, + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/@types/sanitize-html/node_modules/htmlparser2": { + "version": "6.1.0", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, "node_modules/@types/scheduler": { "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", + "license": "MIT", "peer": true }, "node_modules/@types/semver": { @@ -8545,8 +8470,7 @@ }, "node_modules/@types/yoga-layout": { "version": "1.9.2", - "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", - "integrity": "sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==", + "license": "MIT", "peer": true }, "node_modules/@types/zen-observable": { @@ -8970,8 +8894,7 @@ }, "node_modules/@vue/compiler-sfc/node_modules/postcss": { "version": "8.3.11", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", - "integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==", + "license": "MIT", "dependencies": { "nanoid": "^3.1.30", "picocolors": "^1.0.0", @@ -11461,8 +11384,7 @@ }, "node_modules/abstract-logging": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/abstract-logging/-/abstract-logging-2.0.1.tgz", - "integrity": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==" + "license": "MIT" }, "node_modules/accepts": { "version": "1.3.7", @@ -11927,8 +11849,6 @@ }, "node_modules/arch": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", "funding": [ { "type": "github", @@ -11943,6 +11863,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "peer": true }, "node_modules/are-we-there-yet": { @@ -11997,8 +11918,7 @@ }, "node_modules/aria-query": { "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "license": "Apache-2.0", "peer": true, "dependencies": { "@babel/runtime": "^7.10.2", @@ -12128,8 +12048,7 @@ }, "node_modules/array.prototype.flatmap": { "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", - "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", + "license": "MIT", "peer": true, "dependencies": { "call-bind": "^1.0.0", @@ -12217,8 +12136,7 @@ }, "node_modules/ast-types-flow": { "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=", + "license": "ISC", "peer": true }, "node_modules/astral-regex": { @@ -12284,8 +12202,7 @@ }, "node_modules/async-retry-ng": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/async-retry-ng/-/async-retry-ng-2.0.1.tgz", - "integrity": "sha512-iitlc2murdQ3/A5Re3CcplQBEf7vOmFrFQ6RFn3+/+zZUyIHYkZnnEziMSa6YIb2Bs2EJEPZWReTxjHqvQbDbw==", + "license": "MIT", "peer": true }, "node_modules/async-retry/node_modules/retry": { @@ -12437,8 +12354,7 @@ }, "node_modules/axe-core": { "version": "4.3.5", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz", - "integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==", + "license": "MPL-2.0", "peer": true, "engines": { "node": ">=4" @@ -12453,15 +12369,12 @@ }, "node_modules/axobject-query": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", + "license": "Apache-2.0", "peer": true }, "node_modules/babel-eslint": { "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", - "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "license": "MIT", "peer": true, "dependencies": { "@babel/code-frame": "^7.0.0", @@ -12480,8 +12393,7 @@ }, "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "license": "Apache-2.0", "peer": true, "engines": { "node": ">=4" @@ -12603,8 +12515,7 @@ }, "node_modules/babel-plugin-macros": { "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.7.2", @@ -12614,8 +12525,7 @@ }, "node_modules/babel-plugin-macros/node_modules/cosmiconfig": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "license": "MIT", "peer": true, "dependencies": { "@types/parse-json": "^4.0.0", @@ -12670,8 +12580,7 @@ }, "node_modules/babel-plugin-remove-graphql-queries": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.1.0.tgz", - "integrity": "sha512-KfHdBJ1GnCuAtvzJ1ujzDB9mMtK+t8iMSBzYOGAacHBXJxXIxMdHvPd1tbqmyx/PjyZPgh8Khq3XWxHDPje7QQ==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4", @@ -12687,8 +12596,7 @@ }, "node_modules/babel-plugin-transform-react-remove-prop-types": { "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", + "license": "MIT", "peer": true }, "node_modules/babel-preset-current-node-syntax": { @@ -12715,8 +12623,7 @@ }, "node_modules/babel-preset-gatsby": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.1.0.tgz", - "integrity": "sha512-hRUDWDugEApfZIBOO8S3i5m+J9a+x1T5E68OO35ExnI5kpRCQ3K36CN2FAUsIYzWDLe0s5h4gJRB/W9SyzkvVA==", + "license": "MIT", "peer": true, "dependencies": { "@babel/plugin-proposal-class-properties": "^7.14.0", @@ -12765,8 +12672,7 @@ }, "node_modules/backoff": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz", - "integrity": "sha1-9hbtqdPktmuMp/ynn2lXIsX44m8=", + "license": "MIT", "dependencies": { "precond": "0.2" }, @@ -12879,8 +12785,7 @@ }, "node_modules/better-queue": { "version": "3.8.10", - "resolved": "https://registry.npmjs.org/better-queue/-/better-queue-3.8.10.tgz", - "integrity": "sha512-e3gwNZgDCnNWl0An0Tz6sUjKDV9m6aB+K9Xg//vYeo8+KiH8pWhLFxkawcXhm6FpM//GfD9IQv/kmvWCAVVpKA==", + "license": "MIT", "peer": true, "dependencies": { "better-queue-memory": "^1.0.1", @@ -12890,8 +12795,7 @@ }, "node_modules/better-queue-memory": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/better-queue-memory/-/better-queue-memory-1.0.4.tgz", - "integrity": "sha512-SWg5wFIShYffEmJpI6LgbL8/3Dqhku7xI1oEiy6FroP9DbcZlG0ZDjxvPdP9t7hTGW40IpIcC6zVoGT1oxjOuA==", + "license": "MIT", "peer": true }, "node_modules/big.js": { @@ -13014,8 +12918,7 @@ }, "node_modules/bowser": { "version": "2.11.0", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", - "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" + "license": "MIT" }, "node_modules/boxen": { "version": "4.2.0", @@ -13171,8 +13074,7 @@ }, "node_modules/browserslist": { "version": "4.17.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.6.tgz", - "integrity": "sha512-uPgz3vyRTlEiCv4ee9KlsKgo2V6qPk7Jsn0KAn2OBqbqKo3iNcPEC1Ti6J4dwnz+aIRfEEEuOzC9IBk8tXUomw==", + "license": "MIT", "dependencies": { "caniuse-lite": "^1.0.30001274", "electron-to-chromium": "^1.3.886", @@ -13555,8 +13457,7 @@ }, "node_modules/caniuse-lite": { "version": "1.0.30001274", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001274.tgz", - "integrity": "sha512-+Nkvv0fHyhISkiMIjnyjmf5YJcQ1IQHZN6U9TLUMroWR38FNwpsC51Gb68yueafX1V6ifOisInSgP9WJFS13ew==", + "license": "CC-BY-4.0", "funding": { "type": "opencollective", "url": "https://opencollective.com/browserslist" @@ -13573,6 +13474,12 @@ "cdl": "bin/cdl.js" } }, + "node_modules/caret-pos": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caret-pos/-/caret-pos-2.0.0.tgz", + "integrity": "sha512-cOIiBS1SjzXg+LXSiQAzGg89dHDKq/y4c30+tB5hkVN7GbtXh1BNypOmjti4LwAWQrvP4y+bNG7RJFxLGoL3bA==", + "dev": true + }, "node_modules/caseless": { "version": "0.12.0", "dev": true, @@ -14032,8 +13939,7 @@ }, "node_modules/clipboardy": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz", - "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==", + "license": "MIT", "peer": true, "dependencies": { "arch": "^2.1.1", @@ -14046,8 +13952,7 @@ }, "node_modules/clipboardy/node_modules/cross-spawn": { "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "license": "MIT", "peer": true, "dependencies": { "nice-try": "^1.0.4", @@ -14062,8 +13967,7 @@ }, "node_modules/clipboardy/node_modules/execa": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", "peer": true, "dependencies": { "cross-spawn": "^6.0.0", @@ -14080,8 +13984,7 @@ }, "node_modules/clipboardy/node_modules/get-stream": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", "peer": true, "dependencies": { "pump": "^3.0.0" @@ -14092,8 +13995,7 @@ }, "node_modules/clipboardy/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "license": "MIT", "peer": true, "engines": { "node": ">=0.10.0" @@ -14101,8 +14003,7 @@ }, "node_modules/clipboardy/node_modules/npm-run-path": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "license": "MIT", "peer": true, "dependencies": { "path-key": "^2.0.0" @@ -14113,8 +14014,7 @@ }, "node_modules/clipboardy/node_modules/path-key": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "license": "MIT", "peer": true, "engines": { "node": ">=4" @@ -14122,8 +14022,7 @@ }, "node_modules/clipboardy/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "peer": true, "bin": { "semver": "bin/semver" @@ -14131,8 +14030,7 @@ }, "node_modules/clipboardy/node_modules/shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "license": "MIT", "peer": true, "dependencies": { "shebang-regex": "^1.0.0" @@ -14143,8 +14041,7 @@ }, "node_modules/clipboardy/node_modules/shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "license": "MIT", "peer": true, "engines": { "node": ">=0.10.0" @@ -14152,8 +14049,7 @@ }, "node_modules/clipboardy/node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", "peer": true, "dependencies": { "isexe": "^2.0.0" @@ -14616,8 +14512,7 @@ }, "node_modules/confusing-browser-globals": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", - "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==", + "license": "MIT", "peer": true }, "node_modules/connect-history-api-fallback": { @@ -14796,8 +14691,7 @@ }, "node_modules/contentful-management": { "version": "7.45.0", - "resolved": "https://registry.npmjs.org/contentful-management/-/contentful-management-7.45.0.tgz", - "integrity": "sha512-EV61fjenq9ym38Sn45g2xoKdh2Tfup3fYekglNLhxPOpNkdmJPyGmsk1fo5STYTynyN/njbRjj1Rtdla0sKebQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/json-patch": "0.0.30", @@ -14813,8 +14707,7 @@ }, "node_modules/contentful-management/node_modules/axios": { "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "license": "MIT", "peer": true, "dependencies": { "follow-redirects": "^1.14.0" @@ -14822,8 +14715,7 @@ }, "node_modules/contentful-management/node_modules/type-fest": { "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", "peer": true, "engines": { "node": ">=10" @@ -14834,8 +14726,7 @@ }, "node_modules/contentful-sdk-core": { "version": "6.10.3", - "resolved": "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.10.3.tgz", - "integrity": "sha512-IUBkAU1sJuVaEa2Nv1NKK5ImqpBZ5Q3EmaCFmMZx/UHKa+i98nDCSTUBOL1aJnpZ/s3AaSramsh73VQ4aK2kyA==", + "license": "MIT", "peer": true, "dependencies": { "fast-copy": "^2.1.0", @@ -14976,8 +14867,7 @@ }, "node_modules/convert-hrtime": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", - "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", + "license": "MIT", "peer": true, "engines": { "node": ">=8" @@ -15451,9 +15341,8 @@ }, "node_modules/core-js-pure": { "version": "3.19.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.0.tgz", - "integrity": "sha512-UEQk8AxyCYvNAs6baNoPqDADv7BX0AmBLGxVsrAifPPx/C8EAzV4Q+2ZUJqVzfI2TQQEZITnwUkWcHpgc/IubQ==", "hasInstallScript": true, + "license": "MIT", "peer": true, "funding": { "type": "opencollective", @@ -15521,8 +15410,7 @@ }, "node_modules/create-gatsby": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.1.0.tgz", - "integrity": "sha512-tGBabM9/jUPfHvJ5NyLdLtfGlq5OFpkMgxn+yVYAXyFTf/PqdZ+TauG+YAxAUaVGcP3/BmP64IJLANspJrsWRQ==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4" @@ -16756,8 +16644,7 @@ }, "node_modules/csstype": { "version": "3.0.9", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", - "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==", + "license": "MIT", "peer": true }, "node_modules/csv": { @@ -16825,8 +16712,7 @@ }, "node_modules/damerau-levenshtein": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz", - "integrity": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==", + "license": "BSD-2-Clause", "peer": true }, "node_modules/dargs": { @@ -17824,8 +17710,7 @@ }, "node_modules/electron-to-chromium": { "version": "1.3.886", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.886.tgz", - "integrity": "sha512-+vYdeBosI63VkCtNWnEVFjgNd/IZwvnsWkKyPtWAvrhA+XfByKoBJcbsMgudVU/bUcGAF9Xp3aXn96voWlc3oQ==" + "license": "ISC" }, "node_modules/elegant-spinner": { "version": "1.0.1", @@ -17929,8 +17814,7 @@ }, "node_modules/engine.io-client": { "version": "4.1.4", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-4.1.4.tgz", - "integrity": "sha512-843fqAdKeUMFqKi1sSjnR11tJ4wi8sIefu6+JC1OzkkJBmjtc/gM/rZ53tJfu5Iae/3gApm5veoS+v+gtT0+Fg==", + "license": "MIT", "peer": true, "dependencies": { "base64-arraybuffer": "0.1.4", @@ -17947,8 +17831,7 @@ }, "node_modules/engine.io-client/node_modules/ws": { "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", + "license": "MIT", "peer": true, "engines": { "node": ">=8.3.0" @@ -18101,8 +17984,7 @@ }, "node_modules/error-stack-parser": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", - "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", + "license": "MIT", "peer": true, "dependencies": { "stackframe": "^1.1.1" @@ -18726,8 +18608,7 @@ }, "node_modules/eslint/node_modules/ignore": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "license": "MIT", "engines": { "node": ">= 4" } @@ -18806,8 +18687,7 @@ }, "node_modules/estree-util-is-identifier-name": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.0.tgz", - "integrity": "sha512-aXXZFVMnBBDRP81vS4YtAYJ0hUkgEsXea7lNKWCOeaAquGb1Jm2rcONPB5fpzwgbNxulTvrWuKnp9UElUGAKeQ==", + "license": "MIT", "peer": true, "funding": { "type": "github", @@ -18816,8 +18696,7 @@ }, "node_modules/estree-util-visit": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.1.0.tgz", - "integrity": "sha512-3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/estree-jsx": "^0.0.1", @@ -19350,8 +19229,7 @@ }, "node_modules/fast-copy": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-2.1.1.tgz", - "integrity": "sha512-Qod3DdRgFZ8GUIM6ygeoZYpQ0QLW9cf/FS9KhhjlYggcSZXWAemAw8BOCO5LuYCrR3Uj3qXDVTUzOUwG8C7beQ==", + "license": "MIT", "peer": true }, "node_modules/fast-deep-equal": { @@ -19427,8 +19305,7 @@ }, "node_modules/fast-xml-parser": { "version": "3.19.0", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz", - "integrity": "sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg==", + "license": "MIT", "bin": { "xml2js": "cli.js" }, @@ -20202,8 +20079,7 @@ }, "node_modules/fraction.js": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", - "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", + "license": "MIT", "peer": true, "engines": { "node": "*" @@ -20456,9 +20332,8 @@ }, "node_modules/gatsby": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.1.0.tgz", - "integrity": "sha512-P0qjThvYxhJGZP8UoTdDUE8bH6T/UUQZpN+XhtLtqIAbInrsJncaNhM0CLrlhVQgYya13MCW5Dy+ZGqzAOMs5g==", "hasInstallScript": true, + "license": "MIT", "peer": true, "dependencies": { "@babel/code-frame": "^7.14.0", @@ -20624,9 +20499,8 @@ }, "node_modules/gatsby-cli": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.1.0.tgz", - "integrity": "sha512-OTXkUHYdv8af4rQm4AJy6fnKyGNVLol3h3vfFESa7+h/7xgXHdO/2lQukMfvvzkTIPhqbvSqab/thd3xJhgKGw==", "hasInstallScript": true, + "license": "MIT", "peer": true, "dependencies": { "@babel/code-frame": "^7.14.0", @@ -20679,8 +20553,7 @@ }, "node_modules/gatsby-cli/node_modules/ansi-regex": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "license": "MIT", "peer": true, "engines": { "node": ">=6" @@ -20688,8 +20561,7 @@ }, "node_modules/gatsby-cli/node_modules/boxen": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "license": "MIT", "peer": true, "dependencies": { "ansi-align": "^3.0.0", @@ -20710,8 +20582,7 @@ }, "node_modules/gatsby-cli/node_modules/camelcase": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "license": "MIT", "peer": true, "engines": { "node": ">=10" @@ -20722,8 +20593,7 @@ }, "node_modules/gatsby-cli/node_modules/cliui": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", "peer": true, "dependencies": { "string-width": "^4.2.0", @@ -20733,8 +20603,7 @@ }, "node_modules/gatsby-cli/node_modules/cliui/node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", "peer": true, "engines": { "node": ">=8" @@ -20742,8 +20611,7 @@ }, "node_modules/gatsby-cli/node_modules/cliui/node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", "peer": true, "dependencies": { "ansi-regex": "^5.0.1" @@ -20754,8 +20622,7 @@ }, "node_modules/gatsby-cli/node_modules/cliui/node_modules/wrap-ansi": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", "peer": true, "dependencies": { "ansi-styles": "^4.0.0", @@ -20768,8 +20635,7 @@ }, "node_modules/gatsby-cli/node_modules/fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "license": "MIT", "peer": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -20782,8 +20648,7 @@ }, "node_modules/gatsby-cli/node_modules/hosted-git-info": { "version": "3.0.8", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz", - "integrity": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==", + "license": "ISC", "peer": true, "dependencies": { "lru-cache": "^6.0.0" @@ -20794,8 +20659,7 @@ }, "node_modules/gatsby-cli/node_modules/source-map": { "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "license": "BSD-3-Clause", "peer": true, "engines": { "node": ">= 8" @@ -20803,8 +20667,7 @@ }, "node_modules/gatsby-cli/node_modules/strip-ansi": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", "peer": true, "dependencies": { "ansi-regex": "^4.1.0" @@ -20815,14 +20678,12 @@ }, "node_modules/gatsby-cli/node_modules/y18n": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "license": "ISC", "peer": true }, "node_modules/gatsby-cli/node_modules/yargs": { "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", "peer": true, "dependencies": { "cliui": "^6.0.0", @@ -20843,8 +20704,7 @@ }, "node_modules/gatsby-cli/node_modules/yargs-parser": { "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", "peer": true, "dependencies": { "camelcase": "^5.0.0", @@ -20856,8 +20716,7 @@ }, "node_modules/gatsby-cli/node_modules/yargs-parser/node_modules/camelcase": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", "peer": true, "engines": { "node": ">=6" @@ -20885,8 +20744,7 @@ }, "node_modules/gatsby-core-utils/node_modules/@sindresorhus/is": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz", - "integrity": "sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -20896,21 +20754,18 @@ }, "node_modules/gatsby-core-utils/node_modules/cacheable-lookup": { "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "license": "MIT", "engines": { "node": ">=10.6.0" } }, "node_modules/gatsby-core-utils/node_modules/ci-info": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + "license": "MIT" }, "node_modules/gatsby-core-utils/node_modules/decompress-response": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "license": "MIT", "dependencies": { "mimic-response": "^3.1.0" }, @@ -20923,8 +20778,7 @@ }, "node_modules/gatsby-core-utils/node_modules/fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -20936,8 +20790,7 @@ }, "node_modules/gatsby-core-utils/node_modules/got": { "version": "11.8.2", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.2.tgz", - "integrity": "sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==", + "license": "MIT", "dependencies": { "@sindresorhus/is": "^4.0.0", "@szmarczak/http-timer": "^4.0.5", @@ -20960,8 +20813,7 @@ }, "node_modules/gatsby-core-utils/node_modules/mimic-response": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -20971,8 +20823,7 @@ }, "node_modules/gatsby-core-utils/node_modules/tmp": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "license": "MIT", "dependencies": { "rimraf": "^3.0.0" }, @@ -20982,8 +20833,7 @@ }, "node_modules/gatsby-graphiql-explorer": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.1.0.tgz", - "integrity": "sha512-Gxr5Vv+Cmcxts/699FPnvp6t+xjtYUZsXyrJ4HoWEA8VU0h1KFVy56CtuZX8oMErTXMOkoueX89ty7b3ktJERw==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4" @@ -20994,8 +20844,7 @@ }, "node_modules/gatsby-legacy-polyfills": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.1.0.tgz", - "integrity": "sha512-clDAz0Iv18bLPxfmg14YiL5nt/pCBUqFQcpswSUatfSo6O/PR3L5G8gRJNhgCVdaGp24opcOvh8y+sZWKza5rA==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4", @@ -21004,8 +20853,7 @@ }, "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", + "license": "MIT", "peer": true, "dependencies": { "browserslist": "^4.16.3", @@ -21018,8 +20866,7 @@ }, "node_modules/gatsby-legacy-polyfills/node_modules/semver": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "license": "ISC", "peer": true, "bin": { "semver": "bin/semver.js" @@ -21027,8 +20874,7 @@ }, "node_modules/gatsby-link": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.1.0.tgz", - "integrity": "sha512-igOvc/ks6XNwT4vpwViC3n7KthP16XlKWejvIZA8yLKIwkOszcgV5/PYMTri8e2C2xpUAeutTreBWfmRFNcWtw==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4", @@ -21046,8 +20892,7 @@ }, "node_modules/gatsby-page-utils": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.1.0.tgz", - "integrity": "sha512-YxH3Pqa4u5cntwKS3IetQ7AiXDPg70em8VvXNG9JhCRF7M5koKOwZmEXhJpUoSXW8ajh5vgPX63OFlW/Ms+22Q==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4", @@ -21065,8 +20910,7 @@ }, "node_modules/gatsby-plugin-page-creator": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.1.0.tgz", - "integrity": "sha512-siVmgl9pNQ6tq90Po/RTQJWEo5m0IeUHrxClEi3RMM2bzG1xmRmRM/qIlHp0LszReW+SfJIk/xXSnuhKBnr1Hw==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4", @@ -21090,8 +20934,7 @@ }, "node_modules/gatsby-plugin-page-creator/node_modules/@sindresorhus/slugify": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.2.tgz", - "integrity": "sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==", + "license": "MIT", "peer": true, "dependencies": { "@sindresorhus/transliterate": "^0.1.1", @@ -21106,8 +20949,7 @@ }, "node_modules/gatsby-plugin-page-creator/node_modules/@sindresorhus/transliterate": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-0.1.2.tgz", - "integrity": "sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==", + "license": "MIT", "peer": true, "dependencies": { "escape-string-regexp": "^2.0.0", @@ -21122,8 +20964,7 @@ }, "node_modules/gatsby-plugin-page-creator/node_modules/@sindresorhus/transliterate/node_modules/escape-string-regexp": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", "peer": true, "engines": { "node": ">=8" @@ -21131,8 +20972,7 @@ }, "node_modules/gatsby-plugin-typescript": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.1.0.tgz", - "integrity": "sha512-9GNlaZ8F/lmC8zVANygnnjitv23hBpui5T2/DR2asREWE+sasJ0wDzuY4E9R+sARrJEYoo5XLoIUs66tp8rLEQ==", + "license": "MIT", "peer": true, "dependencies": { "@babel/core": "^7.15.5", @@ -21152,8 +20992,7 @@ }, "node_modules/gatsby-plugin-utils": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-2.1.0.tgz", - "integrity": "sha512-sJZWsiLhYOuBN56LCX2Qy2ZDoQvqlY1TntXH8ns+zZHzglvVR28xI/iQEP7bVhzmkMX47i+E87o1/EET0RuK4A==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4", @@ -21168,8 +21007,7 @@ }, "node_modules/gatsby-react-router-scroll": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.1.0.tgz", - "integrity": "sha512-hIFhYFScalUremdj8OfRow2U7E0+ULt5QgVsKsyPV7NbM1876iAZZhyzxK83jvoULKmhm2TyEgdVavylMCO3uA==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.15.4" @@ -21185,8 +21023,7 @@ }, "node_modules/gatsby-recipes": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-1.1.0.tgz", - "integrity": "sha512-9eRkQSZZK574J7Wg8nrt1MKrcoZ63sfMVk6MXAnipBTxb+YCzSfkTWmNC81HxVeHbsVB2XcVnSQGEb/Ho2m4MQ==", + "license": "MIT", "peer": true, "dependencies": { "@babel/core": "^7.15.5", @@ -21252,8 +21089,7 @@ }, "node_modules/gatsby-recipes/node_modules/@jest/types": { "version": "25.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz", - "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==", + "license": "MIT", "peer": true, "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", @@ -21267,8 +21103,7 @@ }, "node_modules/gatsby-recipes/node_modules/@types/istanbul-reports": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", - "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", "peer": true, "dependencies": { "@types/istanbul-lib-coverage": "*", @@ -21277,8 +21112,7 @@ }, "node_modules/gatsby-recipes/node_modules/@types/yargs": { "version": "15.0.14", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", - "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/yargs-parser": "*" @@ -21286,8 +21120,7 @@ }, "node_modules/gatsby-recipes/node_modules/chalk": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "license": "MIT", "peer": true, "dependencies": { "ansi-styles": "^4.1.0", @@ -21299,8 +21132,7 @@ }, "node_modules/gatsby-recipes/node_modules/diff-sequences": { "version": "25.2.6", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz", - "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==", + "license": "MIT", "peer": true, "engines": { "node": ">= 8.3" @@ -21308,8 +21140,7 @@ }, "node_modules/gatsby-recipes/node_modules/dotenv": { "version": "8.6.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", - "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", + "license": "BSD-2-Clause", "peer": true, "engines": { "node": ">=10" @@ -21317,8 +21148,7 @@ }, "node_modules/gatsby-recipes/node_modules/fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "license": "MIT", "peer": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -21331,8 +21161,7 @@ }, "node_modules/gatsby-recipes/node_modules/graphql-compose": { "version": "7.25.1", - "resolved": "https://registry.npmjs.org/graphql-compose/-/graphql-compose-7.25.1.tgz", - "integrity": "sha512-TPXTe1BoQkMjp/MH93yA0SQo8PiXxJAv6Eo6K/+kpJELM9l2jZnd5PCduweuXFcKv+nH973wn/VYzYKDMQ9YoQ==", + "license": "MIT", "peer": true, "dependencies": { "graphql-type-json": "0.3.2", @@ -21344,8 +21173,7 @@ }, "node_modules/gatsby-recipes/node_modules/jest-diff": { "version": "25.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz", - "integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==", + "license": "MIT", "peer": true, "dependencies": { "chalk": "^3.0.0", @@ -21359,8 +21187,7 @@ }, "node_modules/gatsby-recipes/node_modules/jest-get-type": { "version": "25.2.6", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz", - "integrity": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==", + "license": "MIT", "peer": true, "engines": { "node": ">= 8.3" @@ -21368,14 +21195,12 @@ }, "node_modules/gatsby-recipes/node_modules/mitt": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", - "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==", + "license": "MIT", "peer": true }, "node_modules/gatsby-recipes/node_modules/mkdirp": { "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "license": "MIT", "peer": true, "dependencies": { "minimist": "^1.2.5" @@ -21386,8 +21211,7 @@ }, "node_modules/gatsby-recipes/node_modules/object-path": { "version": "0.11.5", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.5.tgz", - "integrity": "sha512-jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg==", + "license": "MIT", "peer": true, "engines": { "node": ">= 10.12.0" @@ -21395,8 +21219,7 @@ }, "node_modules/gatsby-recipes/node_modules/pretty-format": { "version": "25.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz", - "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==", + "license": "MIT", "peer": true, "dependencies": { "@jest/types": "^25.5.0", @@ -21410,14 +21233,12 @@ }, "node_modules/gatsby-recipes/node_modules/react-is": { "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT", "peer": true }, "node_modules/gatsby-recipes/node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", "peer": true, "engines": { "node": ">=8" @@ -21425,8 +21246,7 @@ }, "node_modules/gatsby-recipes/node_modules/unist-util-visit": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", - "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -21440,8 +21260,7 @@ }, "node_modules/gatsby-recipes/node_modules/unist-util-visit-parents": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", - "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -21480,16 +21299,14 @@ }, "node_modules/gatsby-source-filesystem/node_modules/@sindresorhus/is": { "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/gatsby-source-filesystem/node_modules/@szmarczak/http-timer": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "license": "MIT", "dependencies": { "defer-to-connect": "^1.0.1" }, @@ -21499,8 +21316,7 @@ }, "node_modules/gatsby-source-filesystem/node_modules/cacheable-request": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "license": "MIT", "dependencies": { "clone-response": "^1.0.2", "get-stream": "^5.1.0", @@ -21516,8 +21332,7 @@ }, "node_modules/gatsby-source-filesystem/node_modules/cacheable-request/node_modules/get-stream": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -21530,8 +21345,7 @@ }, "node_modules/gatsby-source-filesystem/node_modules/decompress-response": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "license": "MIT", "dependencies": { "mimic-response": "^1.0.0" }, @@ -21541,13 +21355,11 @@ }, "node_modules/gatsby-source-filesystem/node_modules/defer-to-connect": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + "license": "MIT" }, "node_modules/gatsby-source-filesystem/node_modules/fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -21559,8 +21371,7 @@ }, "node_modules/gatsby-source-filesystem/node_modules/get-stream": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -21570,8 +21381,7 @@ }, "node_modules/gatsby-source-filesystem/node_modules/got": { "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "license": "MIT", "dependencies": { "@sindresorhus/is": "^0.14.0", "@szmarczak/http-timer": "^1.1.2", @@ -21591,69 +21401,60 @@ }, "node_modules/gatsby-source-filesystem/node_modules/got/node_modules/lowercase-keys": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/gatsby-source-filesystem/node_modules/json-buffer": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + "license": "MIT" }, "node_modules/gatsby-source-filesystem/node_modules/keyv": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "license": "MIT", "dependencies": { "json-buffer": "3.0.0" } }, "node_modules/gatsby-source-filesystem/node_modules/mimic-response": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/gatsby-source-filesystem/node_modules/normalize-url": { "version": "4.5.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", - "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/gatsby-source-filesystem/node_modules/p-cancelable": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/gatsby-source-filesystem/node_modules/responselike": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "license": "MIT", "dependencies": { "lowercase-keys": "^1.0.0" } }, "node_modules/gatsby-source-filesystem/node_modules/responselike/node_modules/lowercase-keys": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/gatsby-source-filesystem/node_modules/to-readable-stream": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "license": "MIT", "engines": { "node": ">=6" } @@ -21683,9 +21484,8 @@ }, "node_modules/gatsby-telemetry": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.1.0.tgz", - "integrity": "sha512-XoKh80BROhmtqbFXDhKxr66vYqxt23PfANqUhyFugHFfW+ETx33kTOS8t9IY23icrsqoo780vcx0nVFRjidWEg==", "hasInstallScript": true, + "license": "MIT", "peer": true, "dependencies": { "@babel/code-frame": "^7.14.0", @@ -21708,8 +21508,7 @@ }, "node_modules/gatsby-telemetry/node_modules/fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "license": "MIT", "peer": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -21722,8 +21521,7 @@ }, "node_modules/gatsby-worker": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.1.0.tgz", - "integrity": "sha512-+Ezi+lO+3bwPIgoGlcP7YAVFpn3iI8E44SwbFOvq9Mrfikdy81iWfOHAXB8TVJ6f0H0vATyJ9EoOAF0bZJWouQ==", + "license": "MIT", "peer": true, "dependencies": { "@babel/core": "^7.15.5", @@ -21735,8 +21533,7 @@ }, "node_modules/gatsby/node_modules/@eslint/eslintrc": { "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "license": "MIT", "peer": true, "dependencies": { "ajv": "^6.12.4", @@ -21755,8 +21552,7 @@ }, "node_modules/gatsby/node_modules/@eslint/eslintrc/node_modules/debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "license": "MIT", "peer": true, "dependencies": { "ms": "2.1.2" @@ -21772,8 +21568,7 @@ }, "node_modules/gatsby/node_modules/@eslint/eslintrc/node_modules/ignore": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "license": "MIT", "peer": true, "engines": { "node": ">= 4" @@ -21781,8 +21576,7 @@ }, "node_modules/gatsby/node_modules/@humanwhocodes/config-array": { "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", - "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "license": "Apache-2.0", "peer": true, "dependencies": { "@humanwhocodes/object-schema": "^1.2.0", @@ -21795,8 +21589,7 @@ }, "node_modules/gatsby/node_modules/@humanwhocodes/config-array/node_modules/debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "license": "MIT", "peer": true, "dependencies": { "ms": "2.1.2" @@ -21812,8 +21605,7 @@ }, "node_modules/gatsby/node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", - "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", + "license": "MIT", "peer": true, "dependencies": { "ansi-html": "^0.0.7", @@ -21859,8 +21651,7 @@ }, "node_modules/gatsby/node_modules/@sindresorhus/is": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz", - "integrity": "sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw==", + "license": "MIT", "peer": true, "engines": { "node": ">=10" @@ -21871,8 +21662,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", - "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "license": "MIT", "peer": true, "dependencies": { "@typescript-eslint/experimental-utils": "4.33.0", @@ -21903,8 +21693,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "license": "MIT", "peer": true, "dependencies": { "ms": "2.1.2" @@ -21920,8 +21709,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/experimental-utils": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", - "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "license": "MIT", "peer": true, "dependencies": { "@types/json-schema": "^7.0.7", @@ -21944,8 +21732,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/parser": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", - "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "license": "BSD-2-Clause", "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "4.33.0", @@ -21971,8 +21758,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/parser/node_modules/debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "license": "MIT", "peer": true, "dependencies": { "ms": "2.1.2" @@ -21988,8 +21774,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", - "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "license": "MIT", "peer": true, "dependencies": { "@typescript-eslint/types": "4.33.0", @@ -22005,8 +21790,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/types": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", - "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "license": "MIT", "peer": true, "engines": { "node": "^8.10.0 || ^10.13.0 || >=11.10.1" @@ -22018,8 +21802,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", - "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "license": "BSD-2-Clause", "peer": true, "dependencies": { "@typescript-eslint/types": "4.33.0", @@ -22045,8 +21828,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree/node_modules/debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "license": "MIT", "peer": true, "dependencies": { "ms": "2.1.2" @@ -22062,8 +21844,7 @@ }, "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", - "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "license": "MIT", "peer": true, "dependencies": { "@typescript-eslint/types": "4.33.0", @@ -22079,8 +21860,7 @@ }, "node_modules/gatsby/node_modules/acorn": { "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "license": "MIT", "peer": true, "bin": { "acorn": "bin/acorn" @@ -22091,8 +21871,7 @@ }, "node_modules/gatsby/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "peer": true, "dependencies": { "sprintf-js": "~1.0.2" @@ -22100,8 +21879,7 @@ }, "node_modules/gatsby/node_modules/arrify": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "license": "MIT", "peer": true, "engines": { "node": ">=8" @@ -22109,8 +21887,7 @@ }, "node_modules/gatsby/node_modules/autoprefixer": { "version": "10.4.0", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.0.tgz", - "integrity": "sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==", + "license": "MIT", "peer": true, "dependencies": { "browserslist": "^4.17.5", @@ -22136,8 +21913,7 @@ }, "node_modules/gatsby/node_modules/axios": { "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "license": "MIT", "peer": true, "dependencies": { "follow-redirects": "^1.14.0" @@ -22145,8 +21921,7 @@ }, "node_modules/gatsby/node_modules/cacheable-lookup": { "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "license": "MIT", "peer": true, "engines": { "node": ">=10.6.0" @@ -22154,8 +21929,7 @@ }, "node_modules/gatsby/node_modules/cookie": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + "license": "MIT", "peer": true, "engines": { "node": ">= 0.6" @@ -22163,8 +21937,7 @@ }, "node_modules/gatsby/node_modules/date-fns": { "version": "2.25.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.25.0.tgz", - "integrity": "sha512-ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w==", + "license": "MIT", "peer": true, "engines": { "node": ">=0.11" @@ -22176,8 +21949,7 @@ }, "node_modules/gatsby/node_modules/debug": { "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", "peer": true, "dependencies": { "ms": "^2.1.1" @@ -22185,8 +21957,7 @@ }, "node_modules/gatsby/node_modules/decompress-response": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "license": "MIT", "peer": true, "dependencies": { "mimic-response": "^3.1.0" @@ -22200,8 +21971,7 @@ }, "node_modules/gatsby/node_modules/dotenv": { "version": "8.6.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", - "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", + "license": "BSD-2-Clause", "peer": true, "engines": { "node": ">=10" @@ -22209,14 +21979,12 @@ }, "node_modules/gatsby/node_modules/emoji-regex": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT", "peer": true }, "node_modules/gatsby/node_modules/eslint": { "version": "7.32.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", - "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "license": "MIT", "peer": true, "dependencies": { "@babel/code-frame": "7.12.11", @@ -22272,8 +22040,7 @@ }, "node_modules/gatsby/node_modules/eslint-config-react-app": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", - "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "license": "MIT", "peer": true, "dependencies": { "confusing-browser-globals": "^1.0.10" @@ -22305,8 +22072,7 @@ }, "node_modules/gatsby/node_modules/eslint-plugin-flowtype": { "version": "5.10.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.10.0.tgz", - "integrity": "sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==", + "license": "BSD-3-Clause", "peer": true, "dependencies": { "lodash": "^4.17.15", @@ -22321,8 +22087,7 @@ }, "node_modules/gatsby/node_modules/eslint-plugin-jsx-a11y": { "version": "6.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", - "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "license": "MIT", "peer": true, "dependencies": { "@babel/runtime": "^7.11.2", @@ -22346,8 +22111,7 @@ }, "node_modules/gatsby/node_modules/eslint-plugin-react": { "version": "7.26.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.26.1.tgz", - "integrity": "sha512-Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ==", + "license": "MIT", "peer": true, "dependencies": { "array-includes": "^3.1.3", @@ -22374,8 +22138,7 @@ }, "node_modules/gatsby/node_modules/eslint-plugin-react-hooks": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz", - "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==", + "license": "MIT", "peer": true, "engines": { "node": ">=10" @@ -22386,8 +22149,7 @@ }, "node_modules/gatsby/node_modules/eslint-plugin-react/node_modules/doctrine": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", "peer": true, "dependencies": { "esutils": "^2.0.2" @@ -22398,8 +22160,7 @@ }, "node_modules/gatsby/node_modules/eslint-plugin-react/node_modules/semver": { "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "license": "ISC", "peer": true, "bin": { "semver": "bin/semver.js" @@ -22407,8 +22168,7 @@ }, "node_modules/gatsby/node_modules/eslint-visitor-keys": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "license": "Apache-2.0", "peer": true, "engines": { "node": ">=10" @@ -22416,8 +22176,7 @@ }, "node_modules/gatsby/node_modules/eslint-webpack-plugin": { "version": "2.5.4", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.4.tgz", - "integrity": "sha512-7rYh0m76KyKSDE+B+2PUQrlNS4HJ51t3WKpkJg6vo2jFMbEPTG99cBV0Dm7LXSHucN4WGCG65wQcRiTFrj7iWw==", + "license": "MIT", "peer": true, "dependencies": { "@types/eslint": "^7.2.6", @@ -22441,8 +22200,7 @@ }, "node_modules/gatsby/node_modules/eslint-webpack-plugin/node_modules/schema-utils": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "license": "MIT", "peer": true, "dependencies": { "@types/json-schema": "^7.0.8", @@ -22459,8 +22217,7 @@ }, "node_modules/gatsby/node_modules/eslint/node_modules/@babel/code-frame": { "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "license": "MIT", "peer": true, "dependencies": { "@babel/highlight": "^7.10.4" @@ -22468,8 +22225,7 @@ }, "node_modules/gatsby/node_modules/eslint/node_modules/debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "license": "MIT", "peer": true, "dependencies": { "ms": "2.1.2" @@ -22485,8 +22241,7 @@ }, "node_modules/gatsby/node_modules/eslint/node_modules/eslint-utils": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "license": "MIT", "peer": true, "dependencies": { "eslint-visitor-keys": "^1.1.0" @@ -22500,8 +22255,7 @@ }, "node_modules/gatsby/node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "license": "Apache-2.0", "peer": true, "engines": { "node": ">=4" @@ -22509,8 +22263,7 @@ }, "node_modules/gatsby/node_modules/eslint/node_modules/ignore": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "license": "MIT", "peer": true, "engines": { "node": ">= 4" @@ -22518,8 +22271,7 @@ }, "node_modules/gatsby/node_modules/eslint/node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", "peer": true, "dependencies": { "ansi-regex": "^5.0.1" @@ -22530,8 +22282,7 @@ }, "node_modules/gatsby/node_modules/espree": { "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "license": "BSD-2-Clause", "peer": true, "dependencies": { "acorn": "^7.4.0", @@ -22544,8 +22295,7 @@ }, "node_modules/gatsby/node_modules/espree/node_modules/eslint-visitor-keys": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "license": "Apache-2.0", "peer": true, "engines": { "node": ">=4" @@ -22553,8 +22303,7 @@ }, "node_modules/gatsby/node_modules/estraverse": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", "peer": true, "engines": { "node": ">=4.0" @@ -22562,8 +22311,7 @@ }, "node_modules/gatsby/node_modules/fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "license": "MIT", "peer": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -22576,8 +22324,7 @@ }, "node_modules/gatsby/node_modules/glob-parent": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", "peer": true, "dependencies": { "is-glob": "^4.0.1" @@ -22588,8 +22335,7 @@ }, "node_modules/gatsby/node_modules/got": { "version": "11.8.2", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.2.tgz", - "integrity": "sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==", + "license": "MIT", "peer": true, "dependencies": { "@sindresorhus/is": "^4.0.0", @@ -22613,8 +22359,7 @@ }, "node_modules/gatsby/node_modules/graphql-compose": { "version": "7.25.1", - "resolved": "https://registry.npmjs.org/graphql-compose/-/graphql-compose-7.25.1.tgz", - "integrity": "sha512-TPXTe1BoQkMjp/MH93yA0SQo8PiXxJAv6Eo6K/+kpJELM9l2jZnd5PCduweuXFcKv+nH973wn/VYzYKDMQ9YoQ==", + "license": "MIT", "peer": true, "dependencies": { "graphql-type-json": "0.3.2", @@ -22626,14 +22371,12 @@ }, "node_modules/gatsby/node_modules/html-entities": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", - "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "license": "MIT", "peer": true }, "node_modules/gatsby/node_modules/jest-worker": { "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/node": "*", @@ -22646,8 +22389,7 @@ }, "node_modules/gatsby/node_modules/js-yaml": { "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", "peer": true, "dependencies": { "argparse": "^1.0.7", @@ -22659,8 +22401,7 @@ }, "node_modules/gatsby/node_modules/mimic-response": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "license": "MIT", "peer": true, "engines": { "node": ">=10" @@ -22671,14 +22412,12 @@ }, "node_modules/gatsby/node_modules/mitt": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", - "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==", + "license": "MIT", "peer": true }, "node_modules/gatsby/node_modules/object-path": { "version": "0.11.5", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.5.tgz", - "integrity": "sha512-jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg==", + "license": "MIT", "peer": true, "engines": { "node": ">= 10.12.0" @@ -22686,8 +22425,7 @@ }, "node_modules/gatsby/node_modules/postcss": { "version": "8.3.11", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", - "integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==", + "license": "MIT", "peer": true, "dependencies": { "nanoid": "^3.1.30", @@ -22704,8 +22442,7 @@ }, "node_modules/gatsby/node_modules/postcss-flexbugs-fixes": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", - "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "license": "MIT", "peer": true, "peerDependencies": { "postcss": "^8.1.4" @@ -22713,8 +22450,7 @@ }, "node_modules/gatsby/node_modules/resolve": { "version": "2.0.0-next.3", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", - "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", + "license": "MIT", "peer": true, "dependencies": { "is-core-module": "^2.2.0", @@ -22726,8 +22462,7 @@ }, "node_modules/gatsby/node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", "peer": true, "engines": { "node": ">=8" @@ -22735,8 +22470,7 @@ }, "node_modules/gatsby/node_modules/source-map": { "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "license": "BSD-3-Clause", "peer": true, "engines": { "node": ">= 8" @@ -22744,14 +22478,12 @@ }, "node_modules/gatsby/node_modules/sprintf-js": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "license": "BSD-3-Clause", "peer": true }, "node_modules/gatsby/node_modules/strip-ansi": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", "peer": true, "dependencies": { "ansi-regex": "^4.1.0" @@ -22762,8 +22494,7 @@ }, "node_modules/gatsby/node_modules/strip-ansi/node_modules/ansi-regex": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "license": "MIT", "peer": true, "engines": { "node": ">=6" @@ -22771,8 +22502,7 @@ }, "node_modules/gatsby/node_modules/tmp": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "license": "MIT", "peer": true, "dependencies": { "rimraf": "^3.0.0" @@ -22783,8 +22513,7 @@ }, "node_modules/gatsby/node_modules/type-fest": { "version": "0.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", - "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "license": "(MIT OR CC0-1.0)", "optional": true, "peer": true, "engines": { @@ -22796,8 +22525,7 @@ }, "node_modules/gatsby/node_modules/uuid": { "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", "peer": true, "bin": { "uuid": "dist/bin/uuid" @@ -23791,8 +23519,7 @@ }, "node_modules/graphql-subscriptions": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/graphql-subscriptions/-/graphql-subscriptions-1.2.1.tgz", - "integrity": "sha512-95yD/tKi24q8xYa7Q9rhQN16AYj5wPbrb8tmHGM3WRc9EBmWrG/0kkMl+tQG8wcEuE9ibR4zyOM31p5Sdr2v4g==", + "license": "MIT", "peer": true, "dependencies": { "iterall": "^1.3.0" @@ -24003,8 +23730,7 @@ }, "node_modules/has-cors": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", - "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=", + "license": "MIT", "peer": true }, "node_modules/has-flag": { @@ -24205,8 +23931,7 @@ }, "node_modules/hicat": { "version": "0.8.0", - "resolved": "https://registry.npmjs.org/hicat/-/hicat-0.8.0.tgz", - "integrity": "sha512-om8L9O5XwqeSdwl5NtHgrzK3wcF4fT9T4gb/NktoH8EyoZipas/tvUZLV48xT7fQfMYr9qvb0WEutqdf0LWSqA==", + "license": "MIT", "peer": true, "dependencies": { "highlight.js": "^10.4.1", @@ -24958,8 +24683,7 @@ }, "node_modules/inline-style-parser": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", + "license": "MIT", "peer": true }, "node_modules/inquirer": { @@ -25397,8 +25121,7 @@ }, "node_modules/is-invalid-path": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", - "integrity": "sha1-MHqFWzzxqTi0TqcNLGEQYFNxTzQ=", + "license": "MIT", "peer": true, "dependencies": { "is-glob": "^2.0.0" @@ -25409,8 +25132,7 @@ }, "node_modules/is-invalid-path/node_modules/is-extglob": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "license": "MIT", "peer": true, "engines": { "node": ">=0.10.0" @@ -25418,8 +25140,7 @@ }, "node_modules/is-invalid-path/node_modules/is-glob": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "license": "MIT", "peer": true, "dependencies": { "is-extglob": "^1.0.0" @@ -25713,14 +25434,12 @@ }, "node_modules/is-url": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", - "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", + "license": "MIT", "peer": true }, "node_modules/is-valid-path": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", - "integrity": "sha1-EQ+f90w39mPh7HkV60UfLbk6yd8=", + "license": "MIT", "peer": true, "dependencies": { "is-invalid-path": "^0.1.0" @@ -26515,8 +26234,7 @@ }, "node_modules/jose": { "version": "4.1.4", - "resolved": "https://registry.npmjs.org/jose/-/jose-4.1.4.tgz", - "integrity": "sha512-iCCOrCZuG+BjP3SsjTmJtgFZey1hwHMUqv9nBqFkdJtJ/jd193QgCl/u339IdyS+2opUklON+9VzGzmKaudsfg==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/panva" } @@ -26918,8 +26636,7 @@ }, "node_modules/jsx-ast-utils": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz", - "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==", + "license": "MIT", "peer": true, "dependencies": { "array-includes": "^3.1.3", @@ -27007,8 +26724,7 @@ }, "node_modules/knex": { "version": "0.95.14", - "resolved": "https://registry.npmjs.org/knex/-/knex-0.95.14.tgz", - "integrity": "sha512-j4qLjWySrC/JRRVtOpoR2LcS1yBOsd7Krc6mEukPvmTDX/w11pD52Pq9FYR56/kLXGeAV8jFdWBjsZFi1mscWg==", + "license": "MIT", "dependencies": { "colorette": "2.0.16", "commander": "^7.1.0", @@ -27053,8 +26769,7 @@ }, "node_modules/knex-schema-inspector": { "version": "1.6.4", - "resolved": "https://registry.npmjs.org/knex-schema-inspector/-/knex-schema-inspector-1.6.4.tgz", - "integrity": "sha512-OCmicnMAaC109heNx79S3aYzTK4B9n+8uQ8z4ZBdqr8DN2E+xP9hLMpxfZFZkHMjilSQy13PgzfgvbgFgRNGSg==", + "license": "MIT", "dependencies": { "lodash.flatten": "^4.4.0", "lodash.isnil": "^4.0.0" @@ -27062,8 +26777,7 @@ }, "node_modules/knex/node_modules/colorette": { "version": "2.0.16", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", - "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==" + "license": "MIT" }, "node_modules/knex/node_modules/resolve-from": { "version": "5.0.0", @@ -27130,14 +26844,12 @@ }, "node_modules/language-subtag-registry": { "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==", + "license": "ODC-By-1.0", "peer": true }, "node_modules/language-tags": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "license": "MIT", "peer": true, "dependencies": { "language-subtag-registry": "~0.3.2" @@ -27164,8 +26876,7 @@ }, "node_modules/ldap-filter": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.3.3.tgz", - "integrity": "sha1-KxTGiiqdQQTb28kQocqF/Riel5c=", + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" }, @@ -27175,8 +26886,7 @@ }, "node_modules/ldapjs": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/ldapjs/-/ldapjs-2.3.1.tgz", - "integrity": "sha512-kf0tHHLrpwKaBAQOhYHXgdeh2PkFuCCxWgLb1MRn67ZQVo787D2pij3mmHVZx193GIdM8xcfi8HF6AIYYnj0fQ==", + "license": "MIT", "dependencies": { "abstract-logging": "^2.0.0", "asn1": "^0.2.4", @@ -27441,9 +27151,8 @@ }, "node_modules/lint-staged": { "version": "11.2.6", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-11.2.6.tgz", - "integrity": "sha512-Vti55pUnpvPE0J9936lKl0ngVeTdSZpEdTNhASbkaWX7J5R9OEifo1INBGQuGW4zmy6OG+TcWPJ3m5yuy5Q8Tg==", "dev": true, + "license": "MIT", "dependencies": { "cli-truncate": "2.1.0", "colorette": "^1.4.0", @@ -27891,9 +27600,8 @@ }, "node_modules/lmdb-store": { "version": "1.6.10", - "resolved": "https://registry.npmjs.org/lmdb-store/-/lmdb-store-1.6.10.tgz", - "integrity": "sha512-eON9oD8NLM3DpJ+mQfzw24Pd/gVDxEaXmi+L53j092Oqc3C+pc1G6/a2bmmG9kAUfiwdd5tQMvhDOVpodpkaPA==", "hasInstallScript": true, + "license": "MIT", "peer": true, "dependencies": { "nan": "^2.14.2", @@ -27974,8 +27682,7 @@ }, "node_modules/lock": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/lock/-/lock-1.1.0.tgz", - "integrity": "sha1-UxV0mdFlOxNspmRRBx/KYVcD+lU=", + "license": "MIT", "peer": true }, "node_modules/lodash": { @@ -28784,9 +28491,8 @@ }, "node_modules/marked": { "version": "3.0.8", - "resolved": "https://registry.npmjs.org/marked/-/marked-3.0.8.tgz", - "integrity": "sha512-0gVrAjo5m0VZSJb4rpL59K1unJAMb/hm8HRXqasD8VeC8m91ytDPMritgFSlKonfdt+rRYYpP/JfLxgIX8yoSw==", "dev": true, + "license": "MIT", "bin": { "marked": "bin/marked" }, @@ -28837,8 +28543,7 @@ }, "node_modules/mdast-util-from-markdown": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.0.4.tgz", - "integrity": "sha512-BlL42o885QO+6o43ceoc6KBdp/bi9oYyamj0hUbeu730yhP1WDC7m2XYSBfmQkOb0TdoHSAJ3de3SMqse69u+g==", + "license": "MIT", "peer": true, "dependencies": { "@types/mdast": "^3.0.0", @@ -28861,8 +28566,7 @@ }, "node_modules/mdast-util-mdx": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz", - "integrity": "sha512-leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw==", + "license": "MIT", "peer": true, "dependencies": { "mdast-util-mdx-expression": "^1.0.0", @@ -28876,8 +28580,7 @@ }, "node_modules/mdast-util-mdx-expression": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.1.1.tgz", - "integrity": "sha512-RDLRkBFmBKCJl6/fQdxxKL2BqNtoPFoNBmQAlj5ZNKOijIWRKjdhPkeufsUOaexLj+78mhJc+L7d1MYka8/LdQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/estree-jsx": "^0.0.1" @@ -28889,8 +28592,7 @@ }, "node_modules/mdast-util-mdx-jsx": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.1.1.tgz", - "integrity": "sha512-C4W4hXmagipaeMwi5O8y+lVWE4qP2MDxfKlIh0lZN6MZWSPpQTK5RPwKBH4DdYHorgjbV2rKk84rNWlRtvoZCg==", + "license": "MIT", "peer": true, "dependencies": { "@types/estree-jsx": "^0.0.1", @@ -28909,8 +28611,7 @@ }, "node_modules/mdast-util-mdx-jsx/node_modules/character-entities-html4": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", "peer": true, "funding": { "type": "github", @@ -28919,8 +28620,7 @@ }, "node_modules/mdast-util-mdx-jsx/node_modules/character-entities-legacy": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", "peer": true, "funding": { "type": "github", @@ -28929,8 +28629,7 @@ }, "node_modules/mdast-util-mdx-jsx/node_modules/stringify-entities": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.2.tgz", - "integrity": "sha512-MTxTVcEkorNtBbNpoFJPEh0kKdM6+QbMjLbaxmvaPMmayOXdr/AIVIIJX7FReUVweRBFJfZepK4A4AKgwuFpMQ==", + "license": "MIT", "peer": true, "dependencies": { "character-entities-html4": "^2.0.0", @@ -28943,8 +28642,7 @@ }, "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-is": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz", - "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==", + "license": "MIT", "peer": true, "funding": { "type": "opencollective", @@ -28953,8 +28651,7 @@ }, "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-remove-position": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz", - "integrity": "sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -28967,8 +28664,7 @@ }, "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-visit": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz", - "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -28982,8 +28678,7 @@ }, "node_modules/mdast-util-mdx-jsx/node_modules/unist-util-visit-parents": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz", - "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -28996,8 +28691,7 @@ }, "node_modules/mdast-util-mdxjs-esm": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.1.1.tgz", - "integrity": "sha512-IpHNNMubCt6ue2FIQasx1ByvETglnqc7A3XvIc0Yyql1hNI73SEGa044dZG6jeJQE8boBdTn8nxs3DjQLvVN1w==", + "license": "MIT", "peer": true, "dependencies": { "@types/estree-jsx": "^0.0.1", @@ -29012,8 +28706,7 @@ }, "node_modules/mdast-util-to-markdown": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.4.tgz", - "integrity": "sha512-Wive3NvrNS4OY5yYKBADdK1QSlbJUZyZ2ssanITUzNQ7sxMfBANTVjLrAA9BFXshaeG9G77xpOK/z+TTret5Hg==", + "license": "MIT", "peer": true, "dependencies": { "@types/mdast": "^3.0.0", @@ -29031,8 +28724,7 @@ }, "node_modules/mdast-util-to-markdown/node_modules/longest-streak": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.1.tgz", - "integrity": "sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==", + "license": "MIT", "peer": true, "funding": { "type": "github", @@ -29041,8 +28733,7 @@ }, "node_modules/mdast-util-to-markdown/node_modules/unist-util-is": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz", - "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==", + "license": "MIT", "peer": true, "funding": { "type": "opencollective", @@ -29051,8 +28742,7 @@ }, "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz", - "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -29066,8 +28756,7 @@ }, "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit-parents": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz", - "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -29080,8 +28769,7 @@ }, "node_modules/mdast-util-to-string": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz", - "integrity": "sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==", + "license": "MIT", "peer": true, "funding": { "type": "opencollective", @@ -29454,8 +29142,6 @@ }, "node_modules/micromark-extension-mdx-expression": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.2.tgz", - "integrity": "sha512-KbkM9D9x/ZOV6gLwaN8izl2ZMI3sg+C4JLuUSmd8zJ4Z2d3mSWrznJRLuXkZcyN9lLaRm4Dz2VPjae3AkC5X1A==", "funding": [ { "type": "GitHub Sponsors", @@ -29466,6 +29152,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "peer": true, "dependencies": { "micromark-factory-mdx-expression": "^1.0.0", @@ -29479,8 +29166,7 @@ }, "node_modules/micromark-extension-mdx-jsx": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.2.tgz", - "integrity": "sha512-MBppeDuXEBIL1uo4B/bL5eJ1q3m5pXzdzIWpOnJuzzBZF+S+9zbb5WnS2K/LEVQeoyiLzOuoteU4SFPuGJhhWw==", + "license": "MIT", "peer": true, "dependencies": { "@types/acorn": "^4.0.0", @@ -29500,8 +29186,7 @@ }, "node_modules/micromark-extension-mdx-md": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz", - "integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==", + "license": "MIT", "peer": true, "dependencies": { "micromark-util-types": "^1.0.0" @@ -29513,8 +29198,7 @@ }, "node_modules/micromark-extension-mdxjs": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz", - "integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==", + "license": "MIT", "peer": true, "dependencies": { "acorn": "^8.0.0", @@ -29533,8 +29217,7 @@ }, "node_modules/micromark-extension-mdxjs-esm": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.2.tgz", - "integrity": "sha512-bIaxblNIM+CCaJvp3L/V+168l79iuNmxEiTU6i3vB0YuDW+rumV64BFMxvhfRDxaJxQE1zD5vTPdyLBbW4efGA==", + "license": "MIT", "peer": true, "dependencies": { "micromark-core-commonmark": "^1.0.0", @@ -29592,8 +29275,6 @@ }, "node_modules/micromark-factory-mdx-expression": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.4.tgz", - "integrity": "sha512-1mS1Cg/GmvvafgHQvxz4OqhcO1JGwzzTuGh1C8NIUrmnr6/3A1dJiAphHz7kJKI/b9WIr69Q8VswuwyWo576yQ==", "funding": [ { "type": "GitHub Sponsors", @@ -29604,6 +29285,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "peer": true, "dependencies": { "micromark-factory-space": "^1.0.0", @@ -29766,8 +29448,6 @@ }, "node_modules/micromark-util-decode-string": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.1.tgz", - "integrity": "sha512-Wf3H6jLaO3iIlHEvblESXaKAr72nK7JtBbLLICPwuZc3eJkMcp4j8rJ5Xv1VbQWMCWWDvKUbVUbE2MfQNznwTA==", "funding": [ { "type": "GitHub Sponsors", @@ -29778,6 +29458,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "peer": true, "dependencies": { "micromark-util-character": "^1.0.0", @@ -29802,8 +29483,6 @@ }, "node_modules/micromark-util-events-to-acorn": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.0.4.tgz", - "integrity": "sha512-dpo8ecREK5s/KMph7jJ46RLM6g7N21CMc9LAJQbDLdbQnTpijigkSJPTIfLXZ+h5wdXlcsQ+b6ufAE9v76AdgA==", "funding": [ { "type": "GitHub Sponsors", @@ -29814,6 +29493,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "peer": true, "dependencies": { "@types/acorn": "^4.0.0", @@ -29826,8 +29506,7 @@ }, "node_modules/micromark-util-events-to-acorn/node_modules/@types/estree": { "version": "0.0.50", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", - "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "license": "MIT", "peer": true }, "node_modules/micromark-util-html-tag-name": { @@ -29986,8 +29665,7 @@ }, "node_modules/mime": { "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "license": "MIT", "bin": { "mime": "cli.js" }, @@ -30454,8 +30132,7 @@ }, "node_modules/msgpackr": { "version": "1.4.7", - "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.4.7.tgz", - "integrity": "sha512-bhC8Ed1au3L3oHaR/fe4lk4w7PLGFcWQ5XY/Tk9N6tzDRz8YndjCG68TD8zcvYZoxNtw767eF/7VpaTpU9kf9w==", + "license": "MIT", "optional": true, "peer": true, "optionalDependencies": { @@ -30464,9 +30141,8 @@ }, "node_modules/msgpackr-extract": { "version": "1.0.15", - "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-1.0.15.tgz", - "integrity": "sha512-vgJgzFva0/4/mt84wXf3CRCDPHKqiqk5t7/kVSjk/V2IvwSjoStHhxyq/b2+VrWcch3sxiNQOJEWXgI86Fm7AQ==", "hasInstallScript": true, + "license": "MIT", "optional": true, "peer": true, "dependencies": { @@ -30734,8 +30410,7 @@ }, "node_modules/native-url": { "version": "0.2.6", - "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", - "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", + "license": "Apache-2.0", "peer": true, "dependencies": { "querystring": "^0.2.0" @@ -30865,8 +30540,7 @@ }, "node_modules/node-eta": { "version": "0.9.0", - "resolved": "https://registry.npmjs.org/node-eta/-/node-eta-0.9.0.tgz", - "integrity": "sha1-n7CwmbzSoCGUDmA8ZCVNwAPZp6g=", + "license": "MIT", "peer": true }, "node_modules/node-exceptions": { @@ -30933,8 +30607,7 @@ }, "node_modules/node-gyp-build": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz", - "integrity": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==", + "license": "MIT", "peer": true, "bin": { "node-gyp-build": "bin.js", @@ -31167,8 +30840,7 @@ }, "node_modules/node-object-hash": { "version": "2.3.10", - "resolved": "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.10.tgz", - "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -32038,8 +31710,7 @@ }, "node_modules/object.entries": { "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "license": "MIT", "peer": true, "dependencies": { "call-bind": "^1.0.2", @@ -32052,8 +31723,7 @@ }, "node_modules/object.fromentries": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "license": "MIT", "peer": true, "dependencies": { "call-bind": "^1.0.2", @@ -32084,8 +31754,7 @@ }, "node_modules/object.hasown": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz", - "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==", + "license": "MIT", "peer": true, "dependencies": { "define-properties": "^1.1.3", @@ -32217,8 +31886,7 @@ }, "node_modules/openid-client": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/openid-client/-/openid-client-5.0.2.tgz", - "integrity": "sha512-Z3fuzy5S/ohIBonXdTFYAKIjMAf0ycRMW0Rs1cXSH1UBJDB2CJTcVR5u7MPlPui5lA1f+mQ9DktPNEwrYVoY+A==", + "license": "MIT", "dependencies": { "jose": "^4.1.0", "lru-cache": "^6.0.0", @@ -32319,18 +31987,16 @@ }, "node_modules/oracledb": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/oracledb/-/oracledb-5.3.0.tgz", - "integrity": "sha512-HMJzQ6lCf287ztvvehTEmjCWA21FQ3RMvM+mgoqd4i8pkREuqFWO+y3ovsGR9moJUg4T0xjcwS8rl4mggWPxmg==", "dev": true, "hasInstallScript": true, + "license": "Apache-2.0", "engines": { "node": ">=10.16" } }, "node_modules/ordered-binary": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.1.3.tgz", - "integrity": "sha512-tDTls+KllrZKJrqRXUYJtIcWIyoQycP7cVN7kzNNnhHKF2bMKHflcAQK+pF2Eb1iVaQodHxqZQr0yv4HWLGBhQ==", + "license": "MIT", "peer": true }, "node_modules/original": { @@ -32506,8 +32172,7 @@ }, "node_modules/p-throttle": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/p-throttle/-/p-throttle-4.1.1.tgz", - "integrity": "sha512-TuU8Ato+pRTPJoDzYD4s7ocJYcNSEZRvlxoq3hcPI2kZDZ49IQ1Wkj7/gDJc3X7XiEAAvRGtDzdXJI0tC3IL1g==", + "license": "MIT", "peer": true, "engines": { "node": ">=10" @@ -32911,8 +32576,7 @@ }, "node_modules/parse-entities": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-3.1.0.tgz", - "integrity": "sha512-xf2yeHbsfg1vJySsQelVwgtI/67eAndVU05skrr/XN6KFMoVVA95BYrW8y78OfW4jqcuHwB7tlMlLkvbq4WbHQ==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "character-entities": "^2.0.0", @@ -32929,8 +32593,7 @@ }, "node_modules/parse-entities/node_modules/character-entities": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.1.tgz", - "integrity": "sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -32938,8 +32601,7 @@ }, "node_modules/parse-entities/node_modules/character-entities-legacy": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -32947,8 +32609,7 @@ }, "node_modules/parse-entities/node_modules/character-reference-invalid": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -32956,8 +32617,7 @@ }, "node_modules/parse-entities/node_modules/is-alphabetical": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.0.tgz", - "integrity": "sha512-5OV8Toyq3oh4eq6sbWTYzlGdnMT/DPI5I0zxUBxjiigQsZycpkKF3kskkao3JyYGuYDHvhgJF+DrjMQp9SX86w==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -32965,8 +32625,7 @@ }, "node_modules/parse-entities/node_modules/is-alphanumerical": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.0.tgz", - "integrity": "sha512-t+2GlJ+hO9yagJ+jU3+HSh80VKvz/3cG2cxbGGm4S0hjKuhWQXgPVUVOZz3tqZzMjhmphZ+1TIJTlRZRoe6GCQ==", + "license": "MIT", "dependencies": { "is-alphabetical": "^2.0.0", "is-decimal": "^2.0.0" @@ -32978,8 +32637,7 @@ }, "node_modules/parse-entities/node_modules/is-decimal": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.0.tgz", - "integrity": "sha512-QfrfjQV0LjoWQ1K1XSoEZkTAzSa14RKVMa5zg3SdAfzEmQzRM4+tbSFWb78creCeA9rNBzaZal92opi1TwPWZw==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -32987,8 +32645,7 @@ }, "node_modules/parse-entities/node_modules/is-hexadecimal": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.0.tgz", - "integrity": "sha512-vGOtYkiaxwIiR0+Ng/zNId+ZZehGfINwTzdrDqc6iubbnQWhnPuYymOzOKUDqa2cSl59yHnEh2h6MvRLQsyNug==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -33048,6 +32705,11 @@ "query-string": "^6.13.8" } }, + "node_modules/parse-srcset": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, "node_modules/parse-url": { "version": "6.0.0", "license": "MIT", @@ -33071,14 +32733,12 @@ }, "node_modules/parseqs": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz", - "integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==", + "license": "MIT", "peer": true }, "node_modules/parseuri": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz", - "integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==", + "license": "MIT", "peer": true }, "node_modules/parseurl": { @@ -33548,6 +33208,31 @@ } } }, + "node_modules/pinia/node_modules/vue-demi": { + "version": "0.11.4", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, "node_modules/pinkie": { "version": "2.0.4", "devOptional": true, @@ -34792,8 +34477,6 @@ }, "node_modules/precond": { "version": "0.2.3", - "resolved": "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz", - "integrity": "sha1-qpWRvKokkj8eD0hJ0kD0fvwQdaw=", "engines": { "node": ">= 0.6" } @@ -34983,8 +34666,7 @@ }, "node_modules/proper-lockfile": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", - "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "retry": "^0.12.0", @@ -36115,8 +35797,7 @@ }, "node_modules/redux": { "version": "4.0.5", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz", - "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==", + "license": "MIT", "peer": true, "dependencies": { "loose-envify": "^1.4.0", @@ -36253,8 +35934,7 @@ }, "node_modules/remark-mdx": { "version": "2.0.0-rc.1", - "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.0.0-rc.1.tgz", - "integrity": "sha512-y3cj3wDwpXTE1boMco/nsquHj2noK0mtnXwBC8FJ/CtU06y66jOBWX1kLknluBl06pYbxtx1ypAOHKvjgT4vsA==", + "license": "MIT", "peer": true, "dependencies": { "mdast-util-mdx": "^1.0.0", @@ -36267,8 +35947,7 @@ }, "node_modules/remark-mdxjs": { "version": "2.0.0-next.8", - "resolved": "https://registry.npmjs.org/remark-mdxjs/-/remark-mdxjs-2.0.0-next.8.tgz", - "integrity": "sha512-Z/+0eWc7pBEABwg3a5ptL+vCTWHYMFnYzpLoJxTm2muBSk8XyB/CL+tEJ6SV3Q/fScHX2dtG4JRcGSpbZFLazQ==", + "license": "MIT", "peer": true, "dependencies": { "@babel/core": "7.10.5", @@ -36284,8 +35963,7 @@ }, "node_modules/remark-mdxjs/node_modules/@babel/core": { "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.10.5.tgz", - "integrity": "sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==", + "license": "MIT", "peer": true, "dependencies": { "@babel/code-frame": "^7.10.4", @@ -36315,14 +35993,12 @@ }, "node_modules/remark-mdxjs/node_modules/@babel/helper-plugin-utils": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", - "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==", + "license": "MIT", "peer": true }, "node_modules/remark-mdxjs/node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz", - "integrity": "sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==", + "license": "MIT", "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4", @@ -36335,8 +36011,7 @@ }, "node_modules/remark-mdxjs/node_modules/@babel/plugin-syntax-jsx": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz", - "integrity": "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==", + "license": "MIT", "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -36347,8 +36022,7 @@ }, "node_modules/remark-mdxjs/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "peer": true, "bin": { "semver": "bin/semver" @@ -36356,8 +36030,7 @@ }, "node_modules/remark-mdxjs/node_modules/source-map": { "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "license": "BSD-3-Clause", "peer": true, "engines": { "node": ">=0.10.0" @@ -36365,8 +36038,7 @@ }, "node_modules/remark-parse": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-6.0.3.tgz", - "integrity": "sha512-QbDXWN4HfKTUC0hHa4teU463KclLAnwpn/FBn87j9cKYJWWawbiLgMfP2Q4XwhxxuuuOxHlw+pSN0OKuJwyVvg==", + "license": "MIT", "dependencies": { "collapse-white-space": "^1.0.2", "is-alphabetical": "^1.0.0", @@ -36387,8 +36059,7 @@ }, "node_modules/remark-parse/node_modules/parse-entities": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz", - "integrity": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==", + "license": "MIT", "dependencies": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", @@ -36400,8 +36071,7 @@ }, "node_modules/remark-stringify": { "version": "8.1.1", - "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-8.1.1.tgz", - "integrity": "sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A==", + "license": "MIT", "peer": true, "dependencies": { "ccount": "^1.0.0", @@ -36426,8 +36096,7 @@ }, "node_modules/remark-stringify/node_modules/markdown-table": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", - "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", + "license": "MIT", "peer": true, "dependencies": { "repeat-string": "^1.0.0" @@ -36439,8 +36108,7 @@ }, "node_modules/remark-stringify/node_modules/mdast-util-compact": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-2.0.1.tgz", - "integrity": "sha512-7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA==", + "license": "MIT", "peer": true, "dependencies": { "unist-util-visit": "^2.0.0" @@ -36452,8 +36120,7 @@ }, "node_modules/remark-stringify/node_modules/parse-entities": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", - "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "license": "MIT", "peer": true, "dependencies": { "character-entities": "^1.0.0", @@ -36470,8 +36137,7 @@ }, "node_modules/remark-stringify/node_modules/stringify-entities": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-3.1.0.tgz", - "integrity": "sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg==", + "license": "MIT", "peer": true, "dependencies": { "character-entities-html4": "^1.0.0", @@ -36485,8 +36151,7 @@ }, "node_modules/remark-stringify/node_modules/unist-util-visit": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", - "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -36500,8 +36165,7 @@ }, "node_modules/remark-stringify/node_modules/unist-util-visit-parents": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", - "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -37220,8 +36884,7 @@ }, "node_modules/rollup-plugin-typescript2/node_modules/@rollup/pluginutils": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.1.1.tgz", - "integrity": "sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ==", + "license": "MIT", "dependencies": { "estree-walker": "^2.0.1", "picomatch": "^2.2.2" @@ -37232,8 +36895,7 @@ }, "node_modules/rollup-plugin-typescript2/node_modules/fs-extra": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", @@ -37245,8 +36907,7 @@ }, "node_modules/rollup-plugin-typescript2/node_modules/jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "license": "MIT", "optionalDependencies": { "graceful-fs": "^4.1.6" } @@ -37258,8 +36919,7 @@ }, "node_modules/rollup-plugin-typescript2/node_modules/universalify": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", "engines": { "node": ">= 4.0.0" } @@ -37367,11 +37027,117 @@ "version": "2.1.2", "license": "MIT" }, + "node_modules/sanitize-html": { + "version": "2.5.3", + "dev": true, + "license": "MIT", + "dependencies": { + "deepmerge": "^4.2.2", + "escape-string-regexp": "^4.0.0", + "htmlparser2": "^6.0.0", + "is-plain-object": "^5.0.0", + "parse-srcset": "^1.0.2", + "postcss": "^8.3.11" + } + }, + "node_modules/sanitize-html/node_modules/dom-serializer": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/sanitize-html/node_modules/domelementtype": { + "version": "2.2.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/sanitize-html/node_modules/domhandler": { + "version": "4.2.2", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/sanitize-html/node_modules/domutils": { + "version": "2.8.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/sanitize-html/node_modules/entities": { + "version": "2.2.0", + "dev": true, + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/sanitize-html/node_modules/htmlparser2": { + "version": "6.1.0", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/sanitize-html/node_modules/postcss": { + "version": "8.3.11", + "dev": true, + "license": "MIT", + "dependencies": { + "nanoid": "^3.1.30", + "picocolors": "^1.0.0", + "source-map-js": "^0.6.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, "node_modules/sass": { "version": "1.43.4", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.43.4.tgz", - "integrity": "sha512-/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg==", "dev": true, + "license": "MIT", "dependencies": { "chokidar": ">=3.0.0 <4.0.0" }, @@ -37821,10 +37587,9 @@ }, "node_modules/simple-git-hooks": { "version": "2.7.0", - "resolved": "https://registry.npmjs.org/simple-git-hooks/-/simple-git-hooks-2.7.0.tgz", - "integrity": "sha512-nQe6ASMO9zn5/htIrU37xEIHGr9E6wikXelLbOeTcfsX2O++DHaVug7RSQoq+kO7DvZTH37WA5gW49hN9HTDmQ==", "dev": true, "hasInstallScript": true, + "license": "MIT", "bin": { "simple-git-hooks": "cli.js" } @@ -37846,8 +37611,7 @@ }, "node_modules/single-trailing-newline": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/single-trailing-newline/-/single-trailing-newline-1.0.0.tgz", - "integrity": "sha1-gfCtKtZFGBlFyAlSpcFBSZLulmQ=", + "license": "MIT", "peer": true, "dependencies": { "detect-newline": "^1.0.3" @@ -37855,8 +37619,7 @@ }, "node_modules/single-trailing-newline/node_modules/detect-newline": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-1.0.3.tgz", - "integrity": "sha1-6XsQA4d9cMCa8a81v63/Fo3kkg0=", + "license": "MIT", "peer": true, "dependencies": { "get-stdin": "^4.0.1", @@ -37871,8 +37634,7 @@ }, "node_modules/single-trailing-newline/node_modules/get-stdin": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "license": "MIT", "peer": true, "engines": { "node": ">=0.10.0" @@ -37912,8 +37674,7 @@ }, "node_modules/slugify": { "version": "1.6.2", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.2.tgz", - "integrity": "sha512-XMtI8qD84LwCpthLMBHlIhcrj10cgA+U/Ot8G6FD6uFuWZtMfKK75JO7l81nzpFJsPlsW6LT+VKqWQJW3+6New==", + "license": "MIT", "engines": { "node": ">=8.0.0" } @@ -38109,8 +37870,7 @@ }, "node_modules/socket.io": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-3.1.2.tgz", - "integrity": "sha512-JubKZnTQ4Z8G4IZWtaAZSiRP3I/inpy8c/Bsx2jrwGrTbKeVU5xd6qkKMHpChYeM3dWZSO0QACiGK+obhBNwYw==", + "license": "MIT", "dependencies": { "@types/cookie": "^0.4.0", "@types/cors": "^2.8.8", @@ -38132,8 +37892,7 @@ }, "node_modules/socket.io-client": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-3.1.3.tgz", - "integrity": "sha512-4sIGOGOmCg3AOgGi7EEr6ZkTZRkrXwub70bBB/F0JSkMOUFpA77WsL87o34DffQQ31PkbMUIadGOk+3tx1KGbw==", + "license": "MIT", "peer": true, "dependencies": { "@types/component-emitter": "^1.2.10", @@ -38631,8 +38390,7 @@ }, "node_modules/stackframe": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", - "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==", + "license": "MIT", "peer": true }, "node_modules/standard-as-callback": { @@ -38923,8 +38681,7 @@ }, "node_modules/string-natural-compare": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", - "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", + "license": "MIT", "peer": true }, "node_modules/string-similarity": { @@ -38953,8 +38710,7 @@ }, "node_modules/string.prototype.matchall": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", - "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "license": "MIT", "peer": true, "dependencies": { "call-bind": "^1.0.2", @@ -39192,8 +38948,7 @@ }, "node_modules/style-to-object": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", - "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "license": "MIT", "peer": true, "dependencies": { "inline-style-parser": "0.1.1" @@ -40156,9 +39911,8 @@ }, "node_modules/stylelint-config-standard": { "version": "23.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-23.0.0.tgz", - "integrity": "sha512-8PDlk+nWuc1T66nVaODTdVodN0pjuE5TBlopi39Lt9EM36YJsRhqttMyUhnS78oc/59Q6n8iw2GJB4QcoFqtRg==", "dev": true, + "license": "MIT", "dependencies": { "stylelint-config-recommended": "^6.0.0" }, @@ -40220,21 +39974,18 @@ }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/stylelint/node_modules/hosted-git-info": { "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/stylelint/node_modules/meow": { "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", @@ -40258,9 +40009,8 @@ }, "node_modules/stylelint/node_modules/postcss": { "version": "8.3.11", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", - "integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==", "dev": true, + "license": "MIT", "dependencies": { "nanoid": "^3.1.30", "picocolors": "^1.0.0", @@ -40276,9 +40026,8 @@ }, "node_modules/stylelint/node_modules/postcss-safe-parser": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=12.0" }, @@ -40292,9 +40041,8 @@ }, "node_modules/stylelint/node_modules/read-pkg": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, + "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", @@ -40307,9 +40055,8 @@ }, "node_modules/stylelint/node_modules/read-pkg-up": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, + "license": "MIT", "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", @@ -40324,18 +40071,16 @@ }, "node_modules/stylelint/node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/stylelint/node_modules/read-pkg/node_modules/normalize-package-data": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -40345,36 +40090,32 @@ }, "node_modules/stylelint/node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/stylelint/node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/stylelint/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/stylelint/node_modules/type-fest": { "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -40982,9 +40723,8 @@ }, "node_modules/tedious": { "version": "13.2.0", - "resolved": "https://registry.npmjs.org/tedious/-/tedious-13.2.0.tgz", - "integrity": "sha512-MC6BsOV5uXeYj4vHvU22N4VHZeFtqmqHAPvDuvfpojnOq/DDd9VfyT4e6vyQ/yTpdSMHWIB06eEJp8u3qEWSHg==", "devOptional": true, + "license": "MIT", "dependencies": { "@azure/identity": "^1.5.2", "@azure/keyvault-keys": "^4.3.0", @@ -41629,9 +41369,8 @@ }, "node_modules/ts-node": { "version": "10.4.0", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.4.0.tgz", - "integrity": "sha512-g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==", "dev": true, + "license": "MIT", "dependencies": { "@cspotcode/source-map-support": "0.7.0", "@tsconfig/node10": "^1.0.7", @@ -42054,8 +41793,7 @@ }, "node_modules/unified": { "version": "8.4.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", - "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", + "license": "MIT", "peer": true, "dependencies": { "bail": "^1.0.0", @@ -42071,8 +41809,7 @@ }, "node_modules/unified/node_modules/is-plain-obj": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "license": "MIT", "peer": true, "engines": { "node": ">=8" @@ -42134,8 +41871,7 @@ }, "node_modules/unist-util-is": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", - "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "license": "MIT", "peer": true, "funding": { "type": "opencollective", @@ -42144,8 +41880,7 @@ }, "node_modules/unist-util-position-from-estree": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz", - "integrity": "sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0" @@ -42157,8 +41892,7 @@ }, "node_modules/unist-util-remove": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz", - "integrity": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==", + "license": "MIT", "peer": true, "dependencies": { "unist-util-is": "^4.0.0" @@ -42181,8 +41915,7 @@ }, "node_modules/unist-util-stringify-position": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz", - "integrity": "sha512-SdfAl8fsDclywZpfMDTVDxA2V7LjtRDTOFd44wUJamgl6OlVngsqWjxvermMYf60elWHbxhuRCZml7AnuXCaSA==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -42705,11 +42438,10 @@ }, "node_modules/vasync": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/vasync/-/vasync-2.2.0.tgz", - "integrity": "sha1-z951GGChWCLbOxMrxZsRakra8Bs=", "engines": [ "node >=0.6.0" ], + "license": "MIT", "dependencies": { "verror": "1.10.0" } @@ -42736,8 +42468,7 @@ }, "node_modules/vfile": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", - "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -42760,8 +42491,7 @@ }, "node_modules/vfile-message": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.0.2.tgz", - "integrity": "sha512-UUjZYIOg9lDRwwiBAuezLIsu9KlXntdxwG+nXnjuQAHvBpcX3x0eN8h+I7TkY5nkCXj+cWVp4ZqebtGBvok8ww==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^3.0.0" @@ -42773,8 +42503,7 @@ }, "node_modules/vfile/node_modules/unist-util-stringify-position": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", - "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.2" @@ -42786,8 +42515,7 @@ }, "node_modules/vfile/node_modules/vfile-message": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", - "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/unist": "^2.0.0", @@ -42837,9 +42565,8 @@ }, "node_modules/vite-plugin-md": { "version": "0.11.4", - "resolved": "https://registry.npmjs.org/vite-plugin-md/-/vite-plugin-md-0.11.4.tgz", - "integrity": "sha512-t24rdVSB72k8xeLcuMhwl0ku5hvsQkt7NfVNG1LEaTOykbXTgwcGD8OUTmryOsGGhCw2DuCZJvTs+qK07J7Gug==", "dev": true, + "license": "MIT", "dependencies": { "@rollup/pluginutils": "^4.1.1", "@types/markdown-it": "^12.2.3", @@ -42867,9 +42594,8 @@ }, "node_modules/vite/node_modules/postcss": { "version": "8.3.11", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", - "integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==", "dev": true, + "license": "MIT", "dependencies": { "nanoid": "^3.1.30", "picocolors": "^1.0.0", @@ -42910,32 +42636,6 @@ "@vue/shared": "3.2.22" } }, - "node_modules/vue-demi": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.12.1.tgz", - "integrity": "sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==", - "dev": true, - "hasInstallScript": true, - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } - } - }, "node_modules/vue-eslint-parser": { "version": "7.11.0", "dev": true, @@ -43680,8 +43380,7 @@ }, "node_modules/weak-lru-cache": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.1.3.tgz", - "integrity": "sha512-5LDIv+sr6uzT94Hhcq7Qv7gt3jxol4iMWUqOgJSLYbB5oO7bTSMqIBtKsytm8N2BufYOdJw86/qu+SDfbo/wKQ==", + "license": "MIT", "peer": true }, "node_modules/web-streams-polyfill": { @@ -45091,8 +44790,6 @@ }, "node_modules/xmlhttprequest-ssl": { "version": "1.6.3", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz", - "integrity": "sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==", "peer": true, "engines": { "node": ">=0.4.0" @@ -45188,8 +44885,7 @@ }, "node_modules/yeast": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", - "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=", + "license": "MIT", "peer": true }, "node_modules/yn": { @@ -45211,8 +44907,7 @@ }, "node_modules/yoga-layout-prebuilt": { "version": "1.10.0", - "resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz", - "integrity": "sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==", + "license": "MIT", "peer": true, "dependencies": { "@types/yoga-layout": "1.9.2" @@ -45223,8 +44918,7 @@ }, "node_modules/yurnalist": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/yurnalist/-/yurnalist-2.1.0.tgz", - "integrity": "sha512-PgrBqosQLM3gN2xBFIMDLACRTV9c365VqityKKpSTWpwR+U4LAFR3rSVyEoscWlu3EzX9+Y0I86GXUKxpHFl6w==", + "license": "BSD-2-Clause", "peer": true, "dependencies": { "chalk": "^2.4.2", @@ -45239,8 +44933,7 @@ }, "node_modules/yurnalist/node_modules/ansi-regex": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "license": "MIT", "peer": true, "engines": { "node": ">=6" @@ -45248,8 +44941,7 @@ }, "node_modules/yurnalist/node_modules/ansi-styles": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", "peer": true, "dependencies": { "color-convert": "^1.9.0" @@ -45260,8 +44952,7 @@ }, "node_modules/yurnalist/node_modules/chalk": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", "peer": true, "dependencies": { "ansi-styles": "^3.2.1", @@ -45274,8 +44965,7 @@ }, "node_modules/yurnalist/node_modules/color-convert": { "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", "peer": true, "dependencies": { "color-name": "1.1.3" @@ -45283,14 +44973,12 @@ }, "node_modules/yurnalist/node_modules/color-name": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "license": "MIT", "peer": true }, "node_modules/yurnalist/node_modules/escape-string-regexp": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "license": "MIT", "peer": true, "engines": { "node": ">=0.8.0" @@ -45298,8 +44986,7 @@ }, "node_modules/yurnalist/node_modules/has-flag": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "license": "MIT", "peer": true, "engines": { "node": ">=4" @@ -45307,8 +44994,7 @@ }, "node_modules/yurnalist/node_modules/strip-ansi": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", "peer": true, "dependencies": { "ansi-regex": "^4.1.0" @@ -45319,8 +45005,7 @@ }, "node_modules/yurnalist/node_modules/supports-color": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", "peer": true, "dependencies": { "has-flag": "^3.0.0" @@ -45373,8 +45058,7 @@ }, "node_modules/zwitch": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz", - "integrity": "sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==", + "license": "MIT", "peer": true, "funding": { "type": "github", @@ -46123,16 +45807,12 @@ }, "@aws-crypto/ie11-detection": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-2.0.0.tgz", - "integrity": "sha512-pkVXf/dq6PITJ0jzYZ69VhL8VFOFoPZLZqtU/12SGnzYuJOOGNfF41q9GxdI1yqC8R13Rq3jOLKDFpUJFT5eTA==", "requires": { "tslib": "^1.11.1" } }, "@aws-crypto/sha256-browser": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-2.0.0.tgz", - "integrity": "sha512-rYXOQ8BFOaqMEHJrLHul/25ckWH6GTJtdLSajhlqGMx0PmSueAuvboCuZCTqEKlxR8CQOwRarxYMZZSYlhRA1A==", "requires": { "@aws-crypto/ie11-detection": "^2.0.0", "@aws-crypto/sha256-js": "^2.0.0", @@ -46146,8 +45826,6 @@ }, "@aws-crypto/sha256-js": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-2.0.0.tgz", - "integrity": "sha512-VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==", "requires": { "@aws-crypto/util": "^2.0.0", "@aws-sdk/types": "^3.1.0", @@ -46156,16 +45834,12 @@ }, "@aws-crypto/supports-web-crypto": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-2.0.0.tgz", - "integrity": "sha512-Ge7WQ3E0OC7FHYprsZV3h0QIcpdyJLvIeg+uTuHqRYm8D6qCFJoiC+edSzSyFiHtZf+NOQDJ1q46qxjtzIY2nA==", "requires": { "tslib": "^1.11.1" } }, "@aws-crypto/util": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-2.0.0.tgz", - "integrity": "sha512-YDooyH83m2P5A3h6lNH7hm6mIP93sU/dtzRmXIgtO4BCB7SvtX8ysVKQAE8tVky2DQ3HHxPCjNTuUe7YoAMrNQ==", "requires": { "@aws-sdk/types": "^3.1.0", "@aws-sdk/util-utf8-browser": "^3.0.0", @@ -46174,24 +45848,18 @@ }, "@aws-sdk/abort-controller": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.40.0.tgz", - "integrity": "sha512-S7LzLvNuwuf0q7r4q7zqGzxd/W2xYsn8cpZ90MMb3ObolhbkLySrikUJujmXae8k+2/KFCOr+FVC0YLrATSUgQ==", "requires": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/client-ses": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-ses/-/client-ses-3.40.0.tgz", - "integrity": "sha512-SZIwpvX0zGgJ87OtnbBdLYG3FkUOW6I55fPVQA+eX/lnTywtKBO+Y8nNES306S53BzxgUuWAza8K4chPzIr0UA==", "requires": { "@aws-crypto/sha256-browser": "2.0.0", "@aws-crypto/sha256-js": "2.0.0", @@ -46230,21 +45898,15 @@ }, "dependencies": { "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "version": "2.2.0" }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/client-sso": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.40.0.tgz", - "integrity": "sha512-eFQ4yFg8RlPaldv/ja2K3pUUyXauGbo4GJPlbPKYoquwW785au8qECKSl3iqBmUklj6WmdW1rmtlQk2OUcyYSw==", "requires": { "@aws-crypto/sha256-browser": "2.0.0", "@aws-crypto/sha256-js": "2.0.0", @@ -46277,16 +45939,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/client-sts": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.40.0.tgz", - "integrity": "sha512-7jBlb1uyq2c0bFqi4ZVnEMNzLTodvIZKoxjh1LYA8OZISbMsDjTxFOYOmuyOhuPy0fLfLL3KRLtengJ23zs3QQ==", "requires": { "@aws-crypto/sha256-browser": "2.0.0", "@aws-crypto/sha256-js": "2.0.0", @@ -46324,21 +45982,15 @@ }, "dependencies": { "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "version": "2.2.0" }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/config-resolver": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.40.0.tgz", - "integrity": "sha512-QYy6J2k31QL6J74hPBfptnLW1kQYdN+xjwH4UQ1mv7EUhRoJN9ZY2soStJowFy4at6IIOOVWbyG5dyqvrbEovg==", "requires": { "@aws-sdk/signature-v4": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -46347,16 +45999,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/credential-provider-env": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.40.0.tgz", - "integrity": "sha512-qHZdf2vxhzZkSygjw2I4SEYFL2dMZxxYvO4QlkqQouKY81OVxs/j69oiNCjPasQzGz5jaZZKI8xEAIfkSyr1lg==", "requires": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -46364,16 +46012,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/credential-provider-imds": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.40.0.tgz", - "integrity": "sha512-Ty/wVa+BQrCFrP06AGl5S1CeLifDt68YrlYXUnkRn603SX4DvxBgVO7XFeDH58G8ziDCiqxfmVl4yjbncPPeSw==", "requires": { "@aws-sdk/node-config-provider": "3.40.0", "@aws-sdk/property-provider": "3.40.0", @@ -46383,16 +46027,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/credential-provider-ini": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.40.0.tgz", - "integrity": "sha512-lyTlgItJ+wPWIkcnkpmZTG+ApCwZBDjLzCPzhFOG1vT1wb0pF3KyJGmjWaW9C6s84rvWwGv1bY3/KBo92KtcjA==", "requires": { "@aws-sdk/credential-provider-env": "3.40.0", "@aws-sdk/credential-provider-imds": "3.40.0", @@ -46406,16 +46046,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/credential-provider-node": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.40.0.tgz", - "integrity": "sha512-TANFmUqZwXd2ytA4Ji8IJDC8g42EnogjeIX+ypea/sImY5L7sQpd/sxQlcpIOJlr/6cGL3VhLGh2EGHXEJQEYA==", "requires": { "@aws-sdk/credential-provider-env": "3.40.0", "@aws-sdk/credential-provider-imds": "3.40.0", @@ -46431,16 +46067,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/credential-provider-process": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.40.0.tgz", - "integrity": "sha512-qsaNCDesW2GasDbzpeOA371gxugi05JWxt3EKonLbUfkGKBK7kmmL6EgLIxZuNm2/Ve4RS07PKp8yBGm4xIx9w==", "requires": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/shared-ini-file-loader": "3.37.0", @@ -46450,16 +46082,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/credential-provider-sso": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.40.0.tgz", - "integrity": "sha512-8XOz1cDsRvmb6UyLKersi+kLx2Bo4nXpsLZDbTuobEqMwtzIIZKW3C8n8icKpiqq1xhJ6hyT80on+HJ8ykrFKA==", "requires": { "@aws-sdk/client-sso": "3.40.0", "@aws-sdk/property-provider": "3.40.0", @@ -46470,16 +46098,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/credential-provider-web-identity": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.40.0.tgz", - "integrity": "sha512-A1KT6Ft3k5B6bU2I2jXS4fSoWbWftEysrxT3zyuzhMbsstsHBJ/J9mEsQ4lgZyr6DXEqn7HD3MbdEoaBN2b3sg==", "requires": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -46487,16 +46111,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/fetch-http-handler": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.40.0.tgz", - "integrity": "sha512-w1HiZromoU+/bbEo89uO81l6UO/M+c2uOMnXntZqe6t3ZHUUUo3AbvhKh0QGVFqRQa+Oi0+95KqWmTHa72/9Iw==", "requires": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/querystring-builder": "3.40.0", @@ -46506,16 +46126,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/hash-node": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.40.0.tgz", - "integrity": "sha512-yOXXK85DdGDktdnQtXgMdaVKii4wtMjEhJ1mrvx2A9nMFNaPhxvERkVVIUKSWlJRa9ZujOw5jWOx8d2R51/Kjg==", "requires": { "@aws-sdk/types": "3.40.0", "@aws-sdk/util-buffer-from": "3.37.0", @@ -46523,47 +46139,35 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/invalid-dependency": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.40.0.tgz", - "integrity": "sha512-axIWtDwCBDDqEgAJipX1FB1ZNpWYXquVwKDMo+7G+ftPBZ4FEq4M1ELhXJL3hhNJ9ZmCQzv+4F6Wnt8dwuzUaQ==", "requires": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/is-array-buffer": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.37.0.tgz", - "integrity": "sha512-XLjA/a6AuGnCvcJZLsMTy2jxF2upgGhqCCkoIJgLlzzXHSihur13KcmPvW/zcaGnCRj0SvKWXiJHl4vDlW75VQ==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/middleware-content-length": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.40.0.tgz", - "integrity": "sha512-sybAJb8v7I/vvL08R3+TI/XDAg9gybQTZ2treC24Ap4+jAOz4QBTHJPMKaUlEeFlMUcq4rj6/u2897ebYH6opw==", "requires": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -46571,16 +46175,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/middleware-host-header": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.40.0.tgz", - "integrity": "sha512-/wocR7JFOLM7/+BQM1DgAd6KCFYcdxYu1P7AhI451GlVNuYa5f89zh7p0gt3SRC6monI5lXgpL7RudhDm8fTrA==", "requires": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -46588,32 +46188,24 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/middleware-logger": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.40.0.tgz", - "integrity": "sha512-19kx0Xg5ymVRKoupmhdmfTBkROcv3DZj508agpyG2YAo0abOObMlIP4Jltg0VD4PhNjGzNh0jFGJnvhjdwv4/A==", "requires": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/middleware-retry": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.40.0.tgz", - "integrity": "sha512-SMUJrukugLL7YJE5X8B2ToukxMWMPwnf7jAFr84ptycCe8bdWv8x8klQ3EtVWpyqochtNlbTi6J/tTQBniUX7A==", "requires": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/service-error-classification": "3.40.0", @@ -46623,21 +46215,15 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" }, "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + "version": "8.3.2" } } }, "@aws-sdk/middleware-sdk-sts": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.40.0.tgz", - "integrity": "sha512-TcrbCvj1PkabFZiNczT3yePZtuEm2fAIw1OVnQyLcF2KW+p62Hv5YkK4MPOfx3LA/0lzjOUO1RNl2x7gzV443Q==", "requires": { "@aws-sdk/middleware-signing": "3.40.0", "@aws-sdk/property-provider": "3.40.0", @@ -46648,32 +46234,24 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/middleware-serde": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.40.0.tgz", - "integrity": "sha512-uOWfZjlAoBy6xPqp0d4ka83WNNbEVCWn9WwfqBUXThyoTdTooYSpXe5y2YzN0BJa8b+tEZTyWpgamnBpFLp47g==", "requires": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/middleware-signing": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.40.0.tgz", - "integrity": "sha512-RqK5nPbfma0qInMvjtpVkDYY/KkFS6EKlOv3DWTdxbXJ4YuOxgKiuUromhmBUoyjFag0JO7LUWod07H+/DawoA==", "requires": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/protocol-http": "3.40.0", @@ -46683,31 +46261,23 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/middleware-stack": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.40.0.tgz", - "integrity": "sha512-hby9HvESUYJxpdALX+6Dn2LPmS5jtMVurGB/+j3MWOvIcDYB4bcSXgVRvXzYnTKwbSupIdbX9zOE2ZAx2SJpUQ==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/middleware-user-agent": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.40.0.tgz", - "integrity": "sha512-dzC2fxWnanetFJ1oYgil8df3N36bR1yc/OCOpbdfQNiUk1FrXiCXqH5rHNO8zCvnwJAj8GHFwpFGd9a2Qube2w==", "requires": { "@aws-sdk/protocol-http": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -46715,16 +46285,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/node-config-provider": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.40.0.tgz", - "integrity": "sha512-AmokjgUDECG8osoMfdRsPNweqI+L1pn4bYGk5iTLmzbBi0o4ot0U1FdX8Rf0qJZZwS4t1TXc3s8/PDVknmPxKg==", "requires": { "@aws-sdk/property-provider": "3.40.0", "@aws-sdk/shared-ini-file-loader": "3.37.0", @@ -46733,16 +46299,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/node-http-handler": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.40.0.tgz", - "integrity": "sha512-qjda6IbxDhbYr8NHmrMurKkbjgLUkfTMVgagDErDK24Nm3Dn5VaO6J4n6c0Q4OLHlmFaRcUfZSTrOo5DAubqCw==", "requires": { "@aws-sdk/abort-controller": "3.40.0", "@aws-sdk/protocol-http": "3.40.0", @@ -46752,48 +46314,36 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/property-provider": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.40.0.tgz", - "integrity": "sha512-Mx4lkShjsYRwW9ujHA1pcnuubrWQ4kF5/DXWNfUiXuSIO/0Lojp1qTLheyBm4vzkJIlx5umyP6NvRAUkEHSN4Q==", "requires": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/protocol-http": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.40.0.tgz", - "integrity": "sha512-f4ea7/HZkjpvGBrnRIuzc/bhrExWrgDv7eulj4htPukZGHdTqSJD3Jk8lEXWvFuX2vUKQDGhEhCDsqup7YWJQQ==", "requires": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/querystring-builder": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.40.0.tgz", - "integrity": "sha512-gO24oipnNaxJRBXB7lhLfa96vIMOd8gtMBqJTjelTjS2e1ZP1YY12CNKKTWwafSk8Ge021erZAG/YTOaXGpv+g==", "requires": { "@aws-sdk/types": "3.40.0", "@aws-sdk/util-uri-escape": "3.37.0", @@ -46801,52 +46351,38 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/querystring-parser": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.40.0.tgz", - "integrity": "sha512-XZIyaKQIiZAM6zelCBcsLHhVDOLafi7XIOd3jy6SymGN8ajj3HqUJ/vdQ5G6ISTk18OrqgqcCOI9oNzv+nrBcA==", "requires": { "@aws-sdk/types": "3.40.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/service-error-classification": { - "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.40.0.tgz", - "integrity": "sha512-c8btKmkvjXczWudXubGdbO3JgmjySBUVC/gCrZDNfwNGsG8RYJJQYYcnmt1gWjelUZsgMDl/2PIzxTlxVF91rA==" + "version": "3.40.0" }, "@aws-sdk/shared-ini-file-loader": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.37.0.tgz", - "integrity": "sha512-+vRBSlfa48R9KL7DpQt3dsu5/+5atjRgoCISblWo3SLpjrx41pKcjKneo7a1u0aP1Xc2oG2TfIyqTWZuOXsmEQ==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/signature-v4": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.40.0.tgz", - "integrity": "sha512-Q1GNZJRCS3W2qsRtDsX/b6EOSfMXfr6TW46N3LnLTGYZ3KAN2SOSJ1DsW59AuGpEZyRmOhJ9L/Q5U403+bZMXQ==", "requires": { "@aws-sdk/is-array-buffer": "3.37.0", "@aws-sdk/types": "3.40.0", @@ -46856,16 +46392,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/smithy-client": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.40.0.tgz", - "integrity": "sha512-6x6uvmfhFpkCiT1O/SsFWRyyqs3ZHMB1hVypn9XfT1/XSrfVLhcbBtnX1/UGPkQvA1GJGo5Pkxv3odQfUw7rUg==", "requires": { "@aws-sdk/middleware-stack": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -46873,21 +46405,15 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/types": { - "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.40.0.tgz", - "integrity": "sha512-KpILcfvRaL88TLvo3SY4OuCCg90SvcNLPyjDwUuBqiOyWODjrKShHtAPJzej4CLp92lofh+ul0UnBfV9Jb/5PA==" + "version": "3.40.0" }, "@aws-sdk/url-parser": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.40.0.tgz", - "integrity": "sha512-HwNV+HX7bHgLk5FzTOgdXANsC0SeVz5PMC4Nh+TLz2IoeQnrw4H8dsA4YNonncjern5oC5veKRjQeOoCL5SlSQ==", "requires": { "@aws-sdk/querystring-parser": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -46895,169 +46421,125 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-base64-browser": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.37.0.tgz", - "integrity": "sha512-o4s/rHVm5k8eC/T7grJQINyYA/mKfDmEWKMA9wk5iBroXlI2rUm7x649TBk5hzoddufk/mffEeNz/1wM7yTmlg==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-base64-node": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.37.0.tgz", - "integrity": "sha512-1UPxly1GPrGZtlIWvbNCDIAund4Oyp8cFi9neA43TeNACvrmEQu/nG01pDbOoo0ENoVSVJrNAVBeqKEpqjH2GA==", "requires": { "@aws-sdk/util-buffer-from": "3.37.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-body-length-browser": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.37.0.tgz", - "integrity": "sha512-tClmH1uYelqWT43xxmnOsVFbCQJiIwizp6y4E109G2LIof07inxrO0L8nbwBpjhugVplx6NZr9IaqTFqbdM1gA==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-body-length-node": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.37.0.tgz", - "integrity": "sha512-aY3mXdbEajruRi9CHgq/heM89R+Gectj/Xrs1naewmamaN8NJrvjDm3s+cw//lqqSOW903LYHXDgm7wvCzUnFA==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-buffer-from": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.37.0.tgz", - "integrity": "sha512-aa3SBwjLwImuJoE4+hxDIWQ9REz3UFb3p7KFPe9qopdXb/yB12RTcbrXVb4whUux4i4mO6KRij0ZNjFZrjrKPg==", "requires": { "@aws-sdk/is-array-buffer": "3.37.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-config-provider": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.40.0.tgz", - "integrity": "sha512-NjZGrA4mqhpr6gkVCAUweurP0Z9d3vFyXJCtulC0BFbpKAnKCf/crSK56NwUaNhAEMCkSuBvjRFzkbfT+HO8bA==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-credentials": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-credentials/-/util-credentials-3.37.0.tgz", - "integrity": "sha512-zcLhSZDKgBLhUjSU5HoQpuQiP3v8oE86NmV/tiZVPEaO6YVULEAB2Cfj1hpM/b/JXWzjSHfT06KXT7QUODKS+A==", "requires": { "@aws-sdk/shared-ini-file-loader": "3.37.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-hex-encoding": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.37.0.tgz", - "integrity": "sha512-tn5UpfaeM+rZWqynoNqB8lwtcAXil5YYO3HLGH9himpWAdft/2Z7LK6bsYDpctaAI1WHgMDcL0bw3Id04ZUbhA==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-locate-window": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.37.0.tgz", - "integrity": "sha512-NvDCfOhLLVHp27oGUUs8EVirhz91aX5gdxGS7J/sh5PF0cNN8rwaR1vSLR7BxPmJHMO7NH7i9EwiELfLfYcq6g==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-uri-escape": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.37.0.tgz", - "integrity": "sha512-8pKf4YJTELP5lm/CEgYw2atyJBB1RWWqFa0sZx6YJmTlOtLF5G6raUdAi4iDa2hldGt2B6IAdIIyuusT8zeU8Q==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-user-agent-browser": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.40.0.tgz", - "integrity": "sha512-C69sTI26bV2EprTv3DTXu9XP7kD9Wu4YVPBzqztOYArd2GDYw3w+jS8SEg3XRbjAKY/mOPZ2Thw4StjpZlWZiA==", "requires": { "@aws-sdk/types": "3.40.0", "bowser": "^2.11.0", @@ -47065,16 +46547,12 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-user-agent-node": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.40.0.tgz", - "integrity": "sha512-cjIzd0hRZFTTh7iLJD6Bciu++Em1iaM1clyG02xRl0JD5DEtDSR1zO02uu+AeM7GSLGOxIvwOkK2j8ySPAOmBA==", "requires": { "@aws-sdk/node-config-provider": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -47082,47 +46560,35 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-utf8-browser": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.37.0.tgz", - "integrity": "sha512-tuiOxzfqet1kKGYzlgpMGfhr64AHJnYsFx2jZiH/O6Yq8XQg43ryjQlbJlim/K/XHGNzY0R+nabeJg34q3Ua1g==", "requires": { "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-utf8-node": { "version": "3.37.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.37.0.tgz", - "integrity": "sha512-fUAgd7UTCULL36j9/vnXHxVhxvswnq23mYgTCIT8NQ7wHN30q2a89ym1e9DwGeQkJEBOkOcKLn6nsMsN7YQMDQ==", "requires": { "@aws-sdk/util-buffer-from": "3.37.0", "tslib": "^2.3.0" }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, "@aws-sdk/util-waiter": { "version": "3.40.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.40.0.tgz", - "integrity": "sha512-jdxwNEZdID49ZvyAnxaeNm5w2moIfMLOwj/q6TxKlxYoXMs16FQWkhyfGue0vEASzchS49ewbyt+KBqpT31Ebg==", "requires": { "@aws-sdk/abort-controller": "3.40.0", "@aws-sdk/types": "3.40.0", @@ -47130,9 +46596,7 @@ }, "dependencies": { "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.1" } } }, @@ -47511,8 +46975,6 @@ }, "@babel/generator": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", - "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", "requires": { "@babel/types": "^7.16.0", "jsesc": "^2.5.1", @@ -47526,8 +46988,6 @@ }, "@babel/helper-annotate-as-pure": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz", - "integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==", "requires": { "@babel/types": "^7.16.0" } @@ -47555,8 +47015,6 @@ }, "@babel/helper-create-class-features-plugin": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz", - "integrity": "sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==", "requires": { "@babel/helper-annotate-as-pure": "^7.16.0", "@babel/helper-function-name": "^7.16.0", @@ -47599,8 +47057,6 @@ }, "@babel/helper-function-name": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", - "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", "requires": { "@babel/helper-get-function-arity": "^7.16.0", "@babel/template": "^7.16.0", @@ -47609,32 +47065,24 @@ }, "@babel/helper-get-function-arity": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", - "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", "requires": { "@babel/types": "^7.16.0" } }, "@babel/helper-hoist-variables": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", - "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", "requires": { "@babel/types": "^7.16.0" } }, "@babel/helper-member-expression-to-functions": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", - "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", "requires": { "@babel/types": "^7.16.0" } }, "@babel/helper-module-imports": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", - "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", "requires": { "@babel/types": "^7.16.0" } @@ -47654,8 +47102,6 @@ }, "@babel/helper-optimise-call-expression": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", - "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", "requires": { "@babel/types": "^7.16.0" } @@ -47673,8 +47119,6 @@ }, "@babel/helper-replace-supers": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", - "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", "requires": { "@babel/helper-member-expression-to-functions": "^7.16.0", "@babel/helper-optimise-call-expression": "^7.16.0", @@ -47696,8 +47140,6 @@ }, "@babel/helper-split-export-declaration": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", - "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", "requires": { "@babel/types": "^7.16.0" } @@ -47727,8 +47169,6 @@ }, "@babel/highlight": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", - "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", "requires": { "@babel/helper-validator-identifier": "^7.15.7", "chalk": "^2.0.0", @@ -47773,9 +47213,7 @@ } }, "@babel/parser": { - "version": "7.16.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.2.tgz", - "integrity": "sha512-RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw==" + "version": "7.16.2" }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.15.4", @@ -47966,8 +47404,6 @@ }, "@babel/plugin-syntax-jsx": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.0.tgz", - "integrity": "sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==", "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -48022,8 +47458,6 @@ }, "@babel/plugin-syntax-typescript": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz", - "integrity": "sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==", "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -48195,8 +47629,6 @@ }, "@babel/plugin-transform-react-display-name": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.0.tgz", - "integrity": "sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==", "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" @@ -48204,8 +47636,6 @@ }, "@babel/plugin-transform-react-jsx": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.0.tgz", - "integrity": "sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==", "peer": true, "requires": { "@babel/helper-annotate-as-pure": "^7.16.0", @@ -48217,8 +47647,6 @@ }, "@babel/plugin-transform-react-jsx-development": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.0.tgz", - "integrity": "sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==", "peer": true, "requires": { "@babel/plugin-transform-react-jsx": "^7.16.0" @@ -48226,8 +47654,6 @@ }, "@babel/plugin-transform-react-pure-annotations": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.0.tgz", - "integrity": "sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==", "peer": true, "requires": { "@babel/helper-annotate-as-pure": "^7.16.0", @@ -48295,8 +47721,6 @@ }, "@babel/plugin-transform-typescript": { "version": "7.16.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz", - "integrity": "sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg==", "peer": true, "requires": { "@babel/helper-create-class-features-plugin": "^7.16.0", @@ -48412,8 +47836,6 @@ }, "@babel/preset-react": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.0.tgz", - "integrity": "sha512-d31IFW2bLRB28uL1WoElyro8RH5l6531XfxMtCeCmp6RVAF1uTfxxUA0LH1tXl+psZdwfmIbwoG4U5VwgbhtLw==", "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", @@ -48426,8 +47848,6 @@ }, "@babel/preset-typescript": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.0.tgz", - "integrity": "sha512-txegdrZYgO9DlPbv+9QOVpMnKbOtezsLHWsnsRF4AjbSIsVaujrq1qg8HK0mxQpWv0jnejt0yEoW1uWpvbrDTg==", "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5", @@ -48443,8 +47863,6 @@ }, "@babel/runtime-corejs3": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.0.tgz", - "integrity": "sha512-Oi2qwQ21X7/d9gn3WiwkDTJmq3TQtYNz89lRnoFy8VeZpWlsyXvzSwiRrRZ8cXluvSwqKxqHJ6dBd9Rv+p0ZGQ==", "peer": true, "requires": { "core-js-pure": "^3.19.0", @@ -48453,14 +47871,10 @@ }, "@babel/standalone": { "version": "7.16.2", - "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.16.2.tgz", - "integrity": "sha512-Cc0b/YJapYV1o+lhevV2FCr0lkbGbejA/iRWH5S5aZCF/AeAVVRcIS491omYMNbf+Z9SCDgczUu8Kx8WGCnr2g==", "peer": true }, "@babel/template": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", - "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", "requires": { "@babel/code-frame": "^7.16.0", "@babel/parser": "^7.16.0", @@ -48469,8 +47883,6 @@ "dependencies": { "@babel/code-frame": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", - "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", "requires": { "@babel/highlight": "^7.16.0" } @@ -48479,8 +47891,6 @@ }, "@babel/traverse": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.0.tgz", - "integrity": "sha512-qQ84jIs1aRQxaGaxSysII9TuDaguZ5yVrEuC0BN2vcPlalwfLovVmCjbFDPECPXcYM/wLvNFfp8uDOliLxIoUQ==", "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -48495,8 +47905,6 @@ "dependencies": { "@babel/code-frame": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", - "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", "requires": { "@babel/highlight": "^7.16.0" } @@ -48508,8 +47916,6 @@ }, "@babel/types": { "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", - "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", "requires": { "@babel/helper-validator-identifier": "^7.15.7", "to-fast-properties": "^2.0.0" @@ -48574,6 +47980,7 @@ "apexcharts": "3.30.0", "axios": "0.24.0", "base-64": "1.0.0", + "caret-pos": "*", "codemirror": "5.64.0", "copyfiles": "2.4.1", "cropperjs": "1.5.12", @@ -48618,8 +48025,6 @@ }, "mime": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", "dev": true }, "p-queue": { @@ -49067,8 +48472,6 @@ }, "@eslint/eslintrc": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.4.tgz", - "integrity": "sha512-h8Vx6MdxwWI2WM8/zREHMoqdgLNXEL4QX3MWSVMdyNJGvXVOs+6lp+m2hc3FnuMHDc4poxFNI20vCk0OmI4G0Q==", "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -49082,9 +48485,7 @@ }, "dependencies": { "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + "version": "4.0.6" } } }, @@ -49108,8 +48509,6 @@ }, "@fullcalendar/common": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/common/-/common-5.10.1.tgz", - "integrity": "sha512-EumKIJcQTvQdTs75/9dmeREFgjcRVWzqHJS1Xvlz5mNsmB+w9EINCHETRjChtAQg1WD/lTQyVj4sHsKO7vCMSw==", "dev": true, "requires": { "tslib": "^2.1.0" @@ -49117,16 +48516,12 @@ "dependencies": { "tslib": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", "dev": true } } }, "@fullcalendar/core": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/core/-/core-5.10.1.tgz", - "integrity": "sha512-8sVuC6ywXV+cxqsqTZaR1hgUqeyjVed20NyZ7lGW9AY0kma1GIEwLgqPS5Q6uVhHyin68lmgecKfJCwhxENE8w==", "dev": true, "requires": { "@fullcalendar/common": "~5.10.1", @@ -49142,8 +48537,6 @@ }, "@fullcalendar/daygrid": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz", - "integrity": "sha512-sfUMP+rew0krsBffgNcWWKhBCiyytGfRKZJoc64E8ohX7VWjPcPZuB1xgO5U4wPLmNkT0rZiHoGeQGTXw1+ZKg==", "dev": true, "requires": { "@fullcalendar/common": "~5.10.1", @@ -49158,8 +48551,6 @@ }, "@fullcalendar/interaction": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/interaction/-/interaction-5.10.1.tgz", - "integrity": "sha512-H1g1QeXg7yXtUcKmVtfg7uzm5R5ElFTvYniiXU+8kJda69IDg7Lee+Y7UDv5dvLb5/HxO86RhPVxRtcOQ8XdXw==", "dev": true, "requires": { "@fullcalendar/common": "~5.10.1", @@ -49174,8 +48565,6 @@ }, "@fullcalendar/list": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/list/-/list-5.10.1.tgz", - "integrity": "sha512-sB+AzM9P1nzGIzwVFNN8Zbocg5lkVQftyuJAZtULgu9o9e1rH/Aqsxt9Itf00N3WmMOh8H1LlnRpZF5kGu/j2w==", "dev": true, "requires": { "@fullcalendar/common": "~5.10.1", @@ -49190,8 +48579,6 @@ }, "@fullcalendar/timegrid": { "version": "5.10.1", - "resolved": "https://registry.npmjs.org/@fullcalendar/timegrid/-/timegrid-5.10.1.tgz", - "integrity": "sha512-0O0m+JzFBlg8gxYr/rIjZViRlbndCtjZlDjjIylQHFBeWC32e3cpHEavKGbTIBLN8SDilUYAJnE21abSqC2G/w==", "dev": true, "requires": { "@fullcalendar/common": "~5.10.1", @@ -49589,26 +48976,18 @@ }, "@hapi/address": { "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", - "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==", "peer": true }, "@hapi/bourne": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", - "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", "peer": true }, "@hapi/hoek": { "version": "8.5.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", - "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==", "peer": true }, "@hapi/joi": { "version": "15.1.1", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", - "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", "peer": true, "requires": { "@hapi/address": "2.x.x", @@ -49619,8 +48998,6 @@ }, "@hapi/topo": { "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", "peer": true, "requires": { "@hapi/hoek": "^8.3.0" @@ -50945,8 +50322,6 @@ }, "@mdx-js/util": { "version": "2.0.0-next.8", - "resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-2.0.0-next.8.tgz", - "integrity": "sha512-T0BcXmNzEunFkuxrO8BFw44htvTPuAoKbLvTG41otyZBDV1Rs+JMddcUuaP5vXpTWtgD3grhcrPEwyx88RUumQ==", "peer": true }, "@microsoft/fetch-event-source": { @@ -51616,8 +50991,6 @@ }, "@turist/fetch": { "version": "7.1.7", - "resolved": "https://registry.npmjs.org/@turist/fetch/-/fetch-7.1.7.tgz", - "integrity": "sha512-XP20kvfyMNlWdPVQXyuzA40LoCHbbJptikt7W+TlZ5sS+NNjk70xjXCtHBLEudp7li3JldXEFSIUzpW1a0WEhA==", "peer": true, "requires": { "@types/node-fetch": "2" @@ -51625,14 +50998,10 @@ }, "@turist/time": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/@turist/time/-/time-0.0.2.tgz", - "integrity": "sha512-qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ==", "peer": true }, "@types/acorn": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", - "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", "peer": true, "requires": { "@types/estree": "*" @@ -51748,8 +51117,6 @@ }, "@types/common-tags": { "version": "1.8.1", - "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", - "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==", "peer": true }, "@types/component-emitter": { @@ -51858,8 +51225,6 @@ }, "@types/estree-jsx": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-0.0.1.tgz", - "integrity": "sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==", "peer": true, "requires": { "@types/estree": "*" @@ -52007,8 +51372,6 @@ }, "@types/json-patch": { "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/json-patch/-/json-patch-0.0.30.tgz", - "integrity": "sha512-MhCUjojzDhVLnZnxwPwa+rETFRDQ0ffjxYdrqOP6TBO2O0/Z64PV5tNeYApo4bc4y4frbWOrRwv/eEkXlI13Rw==", "peer": true }, "@types/json-schema": { @@ -52042,8 +51405,6 @@ }, "@types/ldapjs": { "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@types/ldapjs/-/ldapjs-2.2.2.tgz", - "integrity": "sha512-U5HdnwIZ5uZa+f3usxdqgyfNmOROxOxXvQdQtsu6sKo8fte5vej9br2csHxPvXreAbAO1bs8/rdEzvCLpi67nQ==", "dev": true, "requires": { "@types/node": "*" @@ -52099,14 +51460,10 @@ }, "@types/marked": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/marked/-/marked-3.0.2.tgz", - "integrity": "sha512-mGYI9qFs+i5eYaytWKBbtEMbIkrXGKuhsDpDcj70ogKS2gk1NmgEy9Z3VEKz922Lfms6eITXXqv5idlX7C/irw==", "dev": true }, "@types/marked-terminal": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@types/marked-terminal/-/marked-terminal-3.1.3.tgz", - "integrity": "sha512-dKgOLKlI5zFb2jTbRcyQqbdrHxeU74DCOkVIZtsoB2sc1ctXZ1iB2uxG2jjAuzoLdvwHP065ijN6Q8HecWdWYg==", "dev": true, "requires": { "@types/marked": "^3", @@ -52159,8 +51516,6 @@ }, "@types/mdast": { "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", - "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", "peer": true, "requires": { "@types/unist": "*" @@ -52276,8 +51631,6 @@ }, "@types/prop-types": { "version": "15.7.4", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", - "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==", "peer": true }, "@types/q": { @@ -52300,8 +51653,6 @@ }, "@types/reach__router": { "version": "1.3.9", - "resolved": "https://registry.npmjs.org/@types/reach__router/-/reach__router-1.3.9.tgz", - "integrity": "sha512-N6rqQqTTAV/zKLfK3iq9Ww3wqCEhTZvsilhl0zI09zETdVq1QGmJH6+/xnj8AFUWIrle2Cqo+PGM/Ltr1vBb9w==", "peer": true, "requires": { "@types/react": "*" @@ -52309,8 +51660,6 @@ }, "@types/react": { "version": "17.0.33", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.33.tgz", - "integrity": "sha512-pLWntxXpDPaU+RTAuSGWGSEL2FRTNyRQOjSWDke/rxRg14ncsZvx8AKWMWZqvc1UOaJIAoObdZhAWvRaHFi5rw==", "peer": true, "requires": { "@types/prop-types": "*", @@ -52338,10 +51687,60 @@ "@types/node": "*" } }, + "@types/sanitize-html": { + "version": "2.5.0", + "dev": true, + "requires": { + "htmlparser2": "^6.0.0" + }, + "dependencies": { + "dom-serializer": { + "version": "1.3.2", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.2.0", + "dev": true + }, + "domhandler": { + "version": "4.2.2", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "entities": { + "version": "2.2.0", + "dev": true + }, + "htmlparser2": { + "version": "6.1.0", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + } + } + }, "@types/scheduler": { "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", "peer": true }, "@types/semver": { @@ -52520,8 +51919,6 @@ }, "@types/yoga-layout": { "version": "1.9.2", - "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", - "integrity": "sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==", "peer": true }, "@types/zen-observable": { @@ -52804,8 +52201,6 @@ "dependencies": { "postcss": { "version": "8.3.11", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", - "integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==", "requires": { "nanoid": "^3.1.30", "picocolors": "^1.0.0", @@ -54663,9 +54058,7 @@ } }, "abstract-logging": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/abstract-logging/-/abstract-logging-2.0.1.tgz", - "integrity": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==" + "version": "2.0.1" }, "accepts": { "version": "1.3.7", @@ -54982,8 +54375,6 @@ }, "arch": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", "peer": true }, "are-we-there-yet": { @@ -55030,8 +54421,6 @@ }, "aria-query": { "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", "peer": true, "requires": { "@babel/runtime": "^7.10.2", @@ -55102,8 +54491,6 @@ }, "array.prototype.flatmap": { "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", - "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", "peer": true, "requires": { "call-bind": "^1.0.0", @@ -55170,8 +54557,6 @@ }, "ast-types-flow": { "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=", "peer": true }, "astral-regex": { @@ -55233,8 +54618,6 @@ }, "async-retry-ng": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/async-retry-ng/-/async-retry-ng-2.0.1.tgz", - "integrity": "sha512-iitlc2murdQ3/A5Re3CcplQBEf7vOmFrFQ6RFn3+/+zZUyIHYkZnnEziMSa6YIb2Bs2EJEPZWReTxjHqvQbDbw==", "peer": true }, "asynckit": { @@ -55331,8 +54714,6 @@ }, "axe-core": { "version": "4.3.5", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz", - "integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==", "peer": true }, "axios": { @@ -55343,14 +54724,10 @@ }, "axobject-query": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", "peer": true }, "babel-eslint": { "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", "peer": true, "requires": { "@babel/code-frame": "^7.0.0", @@ -55363,8 +54740,6 @@ "dependencies": { "eslint-visitor-keys": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "peer": true } } @@ -55453,8 +54828,6 @@ }, "babel-plugin-macros": { "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", "peer": true, "requires": { "@babel/runtime": "^7.7.2", @@ -55464,8 +54837,6 @@ "dependencies": { "cosmiconfig": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", "peer": true, "requires": { "@types/parse-json": "^4.0.0", @@ -55505,8 +54876,6 @@ }, "babel-plugin-remove-graphql-queries": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.1.0.tgz", - "integrity": "sha512-KfHdBJ1GnCuAtvzJ1ujzDB9mMtK+t8iMSBzYOGAacHBXJxXIxMdHvPd1tbqmyx/PjyZPgh8Khq3XWxHDPje7QQ==", "peer": true, "requires": { "@babel/runtime": "^7.15.4", @@ -55515,8 +54884,6 @@ }, "babel-plugin-transform-react-remove-prop-types": { "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", "peer": true }, "babel-preset-current-node-syntax": { @@ -55539,8 +54906,6 @@ }, "babel-preset-gatsby": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.1.0.tgz", - "integrity": "sha512-hRUDWDugEApfZIBOO8S3i5m+J9a+x1T5E68OO35ExnI5kpRCQ3K36CN2FAUsIYzWDLe0s5h4gJRB/W9SyzkvVA==", "peer": true, "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", @@ -55574,8 +54939,6 @@ }, "backoff": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz", - "integrity": "sha1-9hbtqdPktmuMp/ynn2lXIsX44m8=", "requires": { "precond": "0.2" } @@ -55643,8 +55006,6 @@ }, "better-queue": { "version": "3.8.10", - "resolved": "https://registry.npmjs.org/better-queue/-/better-queue-3.8.10.tgz", - "integrity": "sha512-e3gwNZgDCnNWl0An0Tz6sUjKDV9m6aB+K9Xg//vYeo8+KiH8pWhLFxkawcXhm6FpM//GfD9IQv/kmvWCAVVpKA==", "peer": true, "requires": { "better-queue-memory": "^1.0.1", @@ -55654,8 +55015,6 @@ }, "better-queue-memory": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/better-queue-memory/-/better-queue-memory-1.0.4.tgz", - "integrity": "sha512-SWg5wFIShYffEmJpI6LgbL8/3Dqhku7xI1oEiy6FroP9DbcZlG0ZDjxvPdP9t7hTGW40IpIcC6zVoGT1oxjOuA==", "peer": true }, "big.js": { @@ -55748,9 +55107,7 @@ "version": "1.0.0" }, "bowser": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", - "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" + "version": "2.11.0" }, "boxen": { "version": "4.2.0", @@ -55867,8 +55224,6 @@ }, "browserslist": { "version": "4.17.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.6.tgz", - "integrity": "sha512-uPgz3vyRTlEiCv4ee9KlsKgo2V6qPk7Jsn0KAn2OBqbqKo3iNcPEC1Ti6J4dwnz+aIRfEEEuOzC9IBk8tXUomw==", "requires": { "caniuse-lite": "^1.0.30001274", "electron-to-chromium": "^1.3.886", @@ -56126,9 +55481,7 @@ } }, "caniuse-lite": { - "version": "1.0.30001274", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001274.tgz", - "integrity": "sha512-+Nkvv0fHyhISkiMIjnyjmf5YJcQ1IQHZN6U9TLUMroWR38FNwpsC51Gb68yueafX1V6ifOisInSgP9WJFS13ew==" + "version": "1.0.30001274" }, "cardinal": { "version": "2.1.1", @@ -56137,6 +55490,12 @@ "redeyed": "~2.1.0" } }, + "caret-pos": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caret-pos/-/caret-pos-2.0.0.tgz", + "integrity": "sha512-cOIiBS1SjzXg+LXSiQAzGg89dHDKq/y4c30+tB5hkVN7GbtXh1BNypOmjti4LwAWQrvP4y+bNG7RJFxLGoL3bA==", + "dev": true + }, "caseless": { "version": "0.12.0", "dev": true @@ -56422,8 +55781,6 @@ }, "clipboardy": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz", - "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==", "peer": true, "requires": { "arch": "^2.1.1", @@ -56433,8 +55790,6 @@ "dependencies": { "cross-spawn": { "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "peer": true, "requires": { "nice-try": "^1.0.4", @@ -56446,8 +55801,6 @@ }, "execa": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "peer": true, "requires": { "cross-spawn": "^6.0.0", @@ -56461,8 +55814,6 @@ }, "get-stream": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "peer": true, "requires": { "pump": "^3.0.0" @@ -56470,14 +55821,10 @@ }, "is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "peer": true }, "npm-run-path": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", "peer": true, "requires": { "path-key": "^2.0.0" @@ -56485,20 +55832,14 @@ }, "path-key": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "peer": true }, "semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "peer": true }, "shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "peer": true, "requires": { "shebang-regex": "^1.0.0" @@ -56506,14 +55847,10 @@ }, "shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "peer": true }, "which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "peer": true, "requires": { "isexe": "^2.0.0" @@ -56838,8 +56175,6 @@ }, "confusing-browser-globals": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", - "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==", "peer": true }, "connect-history-api-fallback": { @@ -56944,8 +56279,6 @@ }, "contentful-management": { "version": "7.45.0", - "resolved": "https://registry.npmjs.org/contentful-management/-/contentful-management-7.45.0.tgz", - "integrity": "sha512-EV61fjenq9ym38Sn45g2xoKdh2Tfup3fYekglNLhxPOpNkdmJPyGmsk1fo5STYTynyN/njbRjj1Rtdla0sKebQ==", "peer": true, "requires": { "@types/json-patch": "0.0.30", @@ -56958,8 +56291,6 @@ "dependencies": { "axios": { "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", "peer": true, "requires": { "follow-redirects": "^1.14.0" @@ -56967,16 +56298,12 @@ }, "type-fest": { "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "peer": true } } }, "contentful-sdk-core": { "version": "6.10.3", - "resolved": "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.10.3.tgz", - "integrity": "sha512-IUBkAU1sJuVaEa2Nv1NKK5ImqpBZ5Q3EmaCFmMZx/UHKa+i98nDCSTUBOL1aJnpZ/s3AaSramsh73VQ4aK2kyA==", "peer": true, "requires": { "fast-copy": "^2.1.0", @@ -57075,8 +56402,6 @@ }, "convert-hrtime": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", - "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", "peer": true }, "convert-source-map": { @@ -57415,8 +56740,6 @@ }, "core-js-pure": { "version": "3.19.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.0.tgz", - "integrity": "sha512-UEQk8AxyCYvNAs6baNoPqDADv7BX0AmBLGxVsrAifPPx/C8EAzV4Q+2ZUJqVzfI2TQQEZITnwUkWcHpgc/IubQ==", "peer": true }, "core-util-is": { @@ -57524,8 +56847,6 @@ }, "create-gatsby": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.1.0.tgz", - "integrity": "sha512-tGBabM9/jUPfHvJ5NyLdLtfGlq5OFpkMgxn+yVYAXyFTf/PqdZ+TauG+YAxAUaVGcP3/BmP64IJLANspJrsWRQ==", "peer": true, "requires": { "@babel/runtime": "^7.15.4" @@ -58271,8 +57592,6 @@ }, "csstype": { "version": "3.0.9", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", - "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==", "peer": true }, "csv": { @@ -58320,8 +57639,6 @@ }, "damerau-levenshtein": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz", - "integrity": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==", "peer": true }, "dargs": { @@ -58846,6 +58163,7 @@ "@types/nodemailer": "6.4.4", "@types/object-hash": "2.2.1", "@types/qs": "6.9.7", + "@types/sanitize-html": "^2.5.0", "@types/sharp": "0.29.4", "@types/stream-json": "1.7.1", "@types/supertest": "2.0.11", @@ -58898,6 +58216,7 @@ "liquidjs": "^9.25.0", "lodash": "^4.17.21", "macos-release": "^2.4.1", + "marked": "^4.0.3", "memcached": "^2.2.2", "mime-types": "^2.1.31", "ms": "^2.1.3", @@ -58920,6 +58239,7 @@ "rate-limiter-flexible": "^2.2.2", "resolve-cwd": "^3.0.0", "rollup": "^2.52.1", + "sanitize-html": "^2.5.3", "sharp": "^0.29.0", "sqlite3": "^5.0.2", "stream-json": "^1.7.1", @@ -58970,6 +58290,9 @@ "through": "^2.3.6" } }, + "marked": { + "version": "4.0.3" + }, "ms": { "version": "2.1.3" }, @@ -59188,9 +58511,7 @@ "version": "2.7.4" }, "electron-to-chromium": { - "version": "1.3.886", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.886.tgz", - "integrity": "sha512-+vYdeBosI63VkCtNWnEVFjgNd/IZwvnsWkKyPtWAvrhA+XfByKoBJcbsMgudVU/bUcGAF9Xp3aXn96voWlc3oQ==" + "version": "1.3.886" }, "elegant-spinner": { "version": "1.0.1", @@ -59275,8 +58596,6 @@ }, "engine.io-client": { "version": "4.1.4", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-4.1.4.tgz", - "integrity": "sha512-843fqAdKeUMFqKi1sSjnR11tJ4wi8sIefu6+JC1OzkkJBmjtc/gM/rZ53tJfu5Iae/3gApm5veoS+v+gtT0+Fg==", "peer": true, "requires": { "base64-arraybuffer": "0.1.4", @@ -59293,8 +58612,6 @@ "dependencies": { "ws": { "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", "peer": true, "requires": {} } @@ -59371,8 +58688,6 @@ }, "error-stack-parser": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", - "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", "peer": true, "requires": { "stackframe": "^1.1.1" @@ -59609,9 +58924,7 @@ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" }, "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + "version": "4.0.6" } } }, @@ -59848,14 +59161,10 @@ }, "estree-util-is-identifier-name": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.0.tgz", - "integrity": "sha512-aXXZFVMnBBDRP81vS4YtAYJ0hUkgEsXea7lNKWCOeaAquGb1Jm2rcONPB5fpzwgbNxulTvrWuKnp9UElUGAKeQ==", "peer": true }, "estree-util-visit": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.1.0.tgz", - "integrity": "sha512-3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ==", "peer": true, "requires": { "@types/estree-jsx": "^0.0.1", @@ -60225,8 +59534,6 @@ }, "fast-copy": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-2.1.1.tgz", - "integrity": "sha512-Qod3DdRgFZ8GUIM6ygeoZYpQ0QLW9cf/FS9KhhjlYggcSZXWAemAw8BOCO5LuYCrR3Uj3qXDVTUzOUwG8C7beQ==", "peer": true }, "fast-deep-equal": { @@ -60284,9 +59591,7 @@ } }, "fast-xml-parser": { - "version": "3.19.0", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz", - "integrity": "sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg==" + "version": "3.19.0" }, "fastest-levenshtein": { "version": "1.0.12" @@ -60807,8 +60112,6 @@ }, "fraction.js": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", - "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", "peer": true }, "fragment-cache": { @@ -60999,8 +60302,6 @@ }, "gatsby": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.1.0.tgz", - "integrity": "sha512-P0qjThvYxhJGZP8UoTdDUE8bH6T/UUQZpN+XhtLtqIAbInrsJncaNhM0CLrlhVQgYya13MCW5Dy+ZGqzAOMs5g==", "peer": true, "requires": { "@babel/code-frame": "^7.14.0", @@ -61156,8 +60457,6 @@ "dependencies": { "@eslint/eslintrc": { "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", "peer": true, "requires": { "ajv": "^6.12.4", @@ -61173,8 +60472,6 @@ "dependencies": { "debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "peer": true, "requires": { "ms": "2.1.2" @@ -61182,16 +60479,12 @@ }, "ignore": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "peer": true } } }, "@humanwhocodes/config-array": { "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", - "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", "peer": true, "requires": { "@humanwhocodes/object-schema": "^1.2.0", @@ -61201,8 +60494,6 @@ "dependencies": { "debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "peer": true, "requires": { "ms": "2.1.2" @@ -61212,8 +60503,6 @@ }, "@pmmmwh/react-refresh-webpack-plugin": { "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", - "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", "peer": true, "requires": { "ansi-html": "^0.0.7", @@ -61226,14 +60515,10 @@ }, "@sindresorhus/is": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz", - "integrity": "sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw==", "peer": true }, "@typescript-eslint/eslint-plugin": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", - "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", "peer": true, "requires": { "@typescript-eslint/experimental-utils": "4.33.0", @@ -61248,8 +60533,6 @@ "dependencies": { "debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "peer": true, "requires": { "ms": "2.1.2" @@ -61259,8 +60542,6 @@ }, "@typescript-eslint/experimental-utils": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", - "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", "peer": true, "requires": { "@types/json-schema": "^7.0.7", @@ -61273,8 +60554,6 @@ }, "@typescript-eslint/parser": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", - "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", "peer": true, "requires": { "@typescript-eslint/scope-manager": "4.33.0", @@ -61285,8 +60564,6 @@ "dependencies": { "debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "peer": true, "requires": { "ms": "2.1.2" @@ -61296,8 +60573,6 @@ }, "@typescript-eslint/scope-manager": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", - "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", "peer": true, "requires": { "@typescript-eslint/types": "4.33.0", @@ -61306,14 +60581,10 @@ }, "@typescript-eslint/types": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", - "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", "peer": true }, "@typescript-eslint/typescript-estree": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", - "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", "peer": true, "requires": { "@typescript-eslint/types": "4.33.0", @@ -61327,8 +60598,6 @@ "dependencies": { "debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "peer": true, "requires": { "ms": "2.1.2" @@ -61338,8 +60607,6 @@ }, "@typescript-eslint/visitor-keys": { "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", - "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", "peer": true, "requires": { "@typescript-eslint/types": "4.33.0", @@ -61348,14 +60615,10 @@ }, "acorn": { "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "peer": true }, "argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "peer": true, "requires": { "sprintf-js": "~1.0.2" @@ -61363,14 +60626,10 @@ }, "arrify": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", "peer": true }, "autoprefixer": { "version": "10.4.0", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.0.tgz", - "integrity": "sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==", "peer": true, "requires": { "browserslist": "^4.17.5", @@ -61383,8 +60642,6 @@ }, "axios": { "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", "peer": true, "requires": { "follow-redirects": "^1.14.0" @@ -61392,26 +60649,18 @@ }, "cacheable-lookup": { "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", "peer": true }, "cookie": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", "peer": true }, "date-fns": { "version": "2.25.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.25.0.tgz", - "integrity": "sha512-ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w==", "peer": true }, "debug": { "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "peer": true, "requires": { "ms": "^2.1.1" @@ -61419,8 +60668,6 @@ }, "decompress-response": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "peer": true, "requires": { "mimic-response": "^3.1.0" @@ -61428,20 +60675,14 @@ }, "dotenv": { "version": "8.6.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", - "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", "peer": true }, "emoji-regex": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "peer": true }, "eslint": { "version": "7.32.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", - "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", "peer": true, "requires": { "@babel/code-frame": "7.12.11", @@ -61488,8 +60729,6 @@ "dependencies": { "@babel/code-frame": { "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "peer": true, "requires": { "@babel/highlight": "^7.10.4" @@ -61497,8 +60736,6 @@ }, "debug": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "peer": true, "requires": { "ms": "2.1.2" @@ -61506,8 +60743,6 @@ }, "eslint-utils": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "peer": true, "requires": { "eslint-visitor-keys": "^1.1.0" @@ -61515,22 +60750,16 @@ "dependencies": { "eslint-visitor-keys": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "peer": true } } }, "ignore": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "peer": true }, "strip-ansi": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "peer": true, "requires": { "ansi-regex": "^5.0.1" @@ -61540,8 +60769,6 @@ }, "eslint-config-react-app": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", - "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", "peer": true, "requires": { "confusing-browser-globals": "^1.0.10" @@ -61549,8 +60776,6 @@ }, "eslint-plugin-flowtype": { "version": "5.10.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.10.0.tgz", - "integrity": "sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==", "peer": true, "requires": { "lodash": "^4.17.15", @@ -61559,8 +60784,6 @@ }, "eslint-plugin-jsx-a11y": { "version": "6.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", - "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", "peer": true, "requires": { "@babel/runtime": "^7.11.2", @@ -61578,8 +60801,6 @@ }, "eslint-plugin-react": { "version": "7.26.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.26.1.tgz", - "integrity": "sha512-Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ==", "peer": true, "requires": { "array-includes": "^3.1.3", @@ -61600,8 +60821,6 @@ "dependencies": { "doctrine": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "peer": true, "requires": { "esutils": "^2.0.2" @@ -61609,29 +60828,21 @@ }, "semver": { "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "peer": true } } }, "eslint-plugin-react-hooks": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz", - "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==", "peer": true, "requires": {} }, "eslint-visitor-keys": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "peer": true }, "eslint-webpack-plugin": { "version": "2.5.4", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.4.tgz", - "integrity": "sha512-7rYh0m76KyKSDE+B+2PUQrlNS4HJ51t3WKpkJg6vo2jFMbEPTG99cBV0Dm7LXSHucN4WGCG65wQcRiTFrj7iWw==", "peer": true, "requires": { "@types/eslint": "^7.2.6", @@ -61644,8 +60855,6 @@ "dependencies": { "schema-utils": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "peer": true, "requires": { "@types/json-schema": "^7.0.8", @@ -61657,8 +60866,6 @@ }, "espree": { "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", "peer": true, "requires": { "acorn": "^7.4.0", @@ -61668,22 +60875,16 @@ "dependencies": { "eslint-visitor-keys": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "peer": true } } }, "estraverse": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "peer": true }, "fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", "peer": true, "requires": { "graceful-fs": "^4.2.0", @@ -61693,8 +60894,6 @@ }, "glob-parent": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "peer": true, "requires": { "is-glob": "^4.0.1" @@ -61702,8 +60901,6 @@ }, "got": { "version": "11.8.2", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.2.tgz", - "integrity": "sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==", "peer": true, "requires": { "@sindresorhus/is": "^4.0.0", @@ -61721,8 +60918,6 @@ }, "graphql-compose": { "version": "7.25.1", - "resolved": "https://registry.npmjs.org/graphql-compose/-/graphql-compose-7.25.1.tgz", - "integrity": "sha512-TPXTe1BoQkMjp/MH93yA0SQo8PiXxJAv6Eo6K/+kpJELM9l2jZnd5PCduweuXFcKv+nH973wn/VYzYKDMQ9YoQ==", "peer": true, "requires": { "graphql-type-json": "0.3.2", @@ -61731,14 +60926,10 @@ }, "html-entities": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", - "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", "peer": true }, "jest-worker": { "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", "peer": true, "requires": { "@types/node": "*", @@ -61748,8 +60939,6 @@ }, "js-yaml": { "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "peer": true, "requires": { "argparse": "^1.0.7", @@ -61758,26 +60947,18 @@ }, "mimic-response": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "peer": true }, "mitt": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", - "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==", "peer": true }, "object-path": { "version": "0.11.5", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.5.tgz", - "integrity": "sha512-jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg==", "peer": true }, "postcss": { "version": "8.3.11", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", - "integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==", "peer": true, "requires": { "nanoid": "^3.1.30", @@ -61787,15 +60968,11 @@ }, "postcss-flexbugs-fixes": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", - "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", "peer": true, "requires": {} }, "resolve": { "version": "2.0.0-next.3", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", - "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", "peer": true, "requires": { "is-core-module": "^2.2.0", @@ -61804,26 +60981,18 @@ }, "resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "peer": true }, "source-map": { "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", "peer": true }, "sprintf-js": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "peer": true }, "strip-ansi": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "peer": true, "requires": { "ansi-regex": "^4.1.0" @@ -61831,16 +61000,12 @@ "dependencies": { "ansi-regex": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "peer": true } } }, "tmp": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "peer": true, "requires": { "rimraf": "^3.0.0" @@ -61848,23 +61013,17 @@ }, "type-fest": { "version": "0.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", - "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", "optional": true, "peer": true }, "uuid": { "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "peer": true } } }, "gatsby-cli": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.1.0.tgz", - "integrity": "sha512-OTXkUHYdv8af4rQm4AJy6fnKyGNVLol3h3vfFESa7+h/7xgXHdO/2lQukMfvvzkTIPhqbvSqab/thd3xJhgKGw==", "peer": true, "requires": { "@babel/code-frame": "^7.14.0", @@ -61911,14 +61070,10 @@ "dependencies": { "ansi-regex": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "peer": true }, "boxen": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", "peer": true, "requires": { "ansi-align": "^3.0.0", @@ -61933,14 +61088,10 @@ }, "camelcase": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", "peer": true }, "cliui": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", "peer": true, "requires": { "string-width": "^4.2.0", @@ -61950,14 +61101,10 @@ "dependencies": { "ansi-regex": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "peer": true }, "strip-ansi": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "peer": true, "requires": { "ansi-regex": "^5.0.1" @@ -61965,8 +61112,6 @@ }, "wrap-ansi": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "peer": true, "requires": { "ansi-styles": "^4.0.0", @@ -61978,8 +61123,6 @@ }, "fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", "peer": true, "requires": { "graceful-fs": "^4.2.0", @@ -61989,8 +61132,6 @@ }, "hosted-git-info": { "version": "3.0.8", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz", - "integrity": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==", "peer": true, "requires": { "lru-cache": "^6.0.0" @@ -61998,14 +61139,10 @@ }, "source-map": { "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", "peer": true }, "strip-ansi": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "peer": true, "requires": { "ansi-regex": "^4.1.0" @@ -62013,14 +61150,10 @@ }, "y18n": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "peer": true }, "yargs": { "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", "peer": true, "requires": { "cliui": "^6.0.0", @@ -62038,8 +61171,6 @@ }, "yargs-parser": { "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", "peer": true, "requires": { "camelcase": "^5.0.0", @@ -62048,8 +61179,6 @@ "dependencies": { "camelcase": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "peer": true } } @@ -62074,32 +61203,22 @@ }, "dependencies": { "@sindresorhus/is": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz", - "integrity": "sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw==" + "version": "4.2.0" }, "cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + "version": "5.0.4" }, "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + "version": "2.0.0" }, "decompress-response": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "requires": { "mimic-response": "^3.1.0" } }, "fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -62108,8 +61227,6 @@ }, "got": { "version": "11.8.2", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.2.tgz", - "integrity": "sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==", "requires": { "@sindresorhus/is": "^4.0.0", "@szmarczak/http-timer": "^4.0.5", @@ -62125,14 +61242,10 @@ } }, "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + "version": "3.1.0" }, "tmp": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "requires": { "rimraf": "^3.0.0" } @@ -62141,8 +61254,6 @@ }, "gatsby-graphiql-explorer": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.1.0.tgz", - "integrity": "sha512-Gxr5Vv+Cmcxts/699FPnvp6t+xjtYUZsXyrJ4HoWEA8VU0h1KFVy56CtuZX8oMErTXMOkoueX89ty7b3ktJERw==", "peer": true, "requires": { "@babel/runtime": "^7.15.4" @@ -62150,8 +61261,6 @@ }, "gatsby-legacy-polyfills": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.1.0.tgz", - "integrity": "sha512-clDAz0Iv18bLPxfmg14YiL5nt/pCBUqFQcpswSUatfSo6O/PR3L5G8gRJNhgCVdaGp24opcOvh8y+sZWKza5rA==", "peer": true, "requires": { "@babel/runtime": "^7.15.4", @@ -62160,8 +61269,6 @@ "dependencies": { "core-js-compat": { "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", "peer": true, "requires": { "browserslist": "^4.16.3", @@ -62170,16 +61277,12 @@ }, "semver": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", "peer": true } } }, "gatsby-link": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.1.0.tgz", - "integrity": "sha512-igOvc/ks6XNwT4vpwViC3n7KthP16XlKWejvIZA8yLKIwkOszcgV5/PYMTri8e2C2xpUAeutTreBWfmRFNcWtw==", "peer": true, "requires": { "@babel/runtime": "^7.15.4", @@ -62189,8 +61292,6 @@ }, "gatsby-page-utils": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.1.0.tgz", - "integrity": "sha512-YxH3Pqa4u5cntwKS3IetQ7AiXDPg70em8VvXNG9JhCRF7M5koKOwZmEXhJpUoSXW8ajh5vgPX63OFlW/Ms+22Q==", "peer": true, "requires": { "@babel/runtime": "^7.15.4", @@ -62205,8 +61306,6 @@ }, "gatsby-plugin-page-creator": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.1.0.tgz", - "integrity": "sha512-siVmgl9pNQ6tq90Po/RTQJWEo5m0IeUHrxClEi3RMM2bzG1xmRmRM/qIlHp0LszReW+SfJIk/xXSnuhKBnr1Hw==", "peer": true, "requires": { "@babel/runtime": "^7.15.4", @@ -62224,8 +61323,6 @@ "dependencies": { "@sindresorhus/slugify": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.2.tgz", - "integrity": "sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==", "peer": true, "requires": { "@sindresorhus/transliterate": "^0.1.1", @@ -62234,8 +61331,6 @@ }, "@sindresorhus/transliterate": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-0.1.2.tgz", - "integrity": "sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==", "peer": true, "requires": { "escape-string-regexp": "^2.0.0", @@ -62244,8 +61339,6 @@ "dependencies": { "escape-string-regexp": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "peer": true } } @@ -62254,8 +61347,6 @@ }, "gatsby-plugin-typescript": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.1.0.tgz", - "integrity": "sha512-9GNlaZ8F/lmC8zVANygnnjitv23hBpui5T2/DR2asREWE+sasJ0wDzuY4E9R+sARrJEYoo5XLoIUs66tp8rLEQ==", "peer": true, "requires": { "@babel/core": "^7.15.5", @@ -62269,8 +61360,6 @@ }, "gatsby-plugin-utils": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-2.1.0.tgz", - "integrity": "sha512-sJZWsiLhYOuBN56LCX2Qy2ZDoQvqlY1TntXH8ns+zZHzglvVR28xI/iQEP7bVhzmkMX47i+E87o1/EET0RuK4A==", "peer": true, "requires": { "@babel/runtime": "^7.15.4", @@ -62279,8 +61368,6 @@ }, "gatsby-react-router-scroll": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.1.0.tgz", - "integrity": "sha512-hIFhYFScalUremdj8OfRow2U7E0+ULt5QgVsKsyPV7NbM1876iAZZhyzxK83jvoULKmhm2TyEgdVavylMCO3uA==", "peer": true, "requires": { "@babel/runtime": "^7.15.4" @@ -62288,8 +61375,6 @@ }, "gatsby-recipes": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-1.1.0.tgz", - "integrity": "sha512-9eRkQSZZK574J7Wg8nrt1MKrcoZ63sfMVk6MXAnipBTxb+YCzSfkTWmNC81HxVeHbsVB2XcVnSQGEb/Ho2m4MQ==", "peer": true, "requires": { "@babel/core": "^7.15.5", @@ -62355,8 +61440,6 @@ "dependencies": { "@jest/types": { "version": "25.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz", - "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==", "peer": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.0", @@ -62367,8 +61450,6 @@ }, "@types/istanbul-reports": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", - "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", "peer": true, "requires": { "@types/istanbul-lib-coverage": "*", @@ -62377,8 +61458,6 @@ }, "@types/yargs": { "version": "15.0.14", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", - "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", "peer": true, "requires": { "@types/yargs-parser": "*" @@ -62386,8 +61465,6 @@ }, "chalk": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "peer": true, "requires": { "ansi-styles": "^4.1.0", @@ -62396,20 +61473,14 @@ }, "diff-sequences": { "version": "25.2.6", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz", - "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==", "peer": true }, "dotenv": { "version": "8.6.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", - "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", "peer": true }, "fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", "peer": true, "requires": { "graceful-fs": "^4.2.0", @@ -62419,8 +61490,6 @@ }, "graphql-compose": { "version": "7.25.1", - "resolved": "https://registry.npmjs.org/graphql-compose/-/graphql-compose-7.25.1.tgz", - "integrity": "sha512-TPXTe1BoQkMjp/MH93yA0SQo8PiXxJAv6Eo6K/+kpJELM9l2jZnd5PCduweuXFcKv+nH973wn/VYzYKDMQ9YoQ==", "peer": true, "requires": { "graphql-type-json": "0.3.2", @@ -62429,8 +61498,6 @@ }, "jest-diff": { "version": "25.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz", - "integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==", "peer": true, "requires": { "chalk": "^3.0.0", @@ -62441,20 +61508,14 @@ }, "jest-get-type": { "version": "25.2.6", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz", - "integrity": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==", "peer": true }, "mitt": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", - "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==", "peer": true }, "mkdirp": { "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", "peer": true, "requires": { "minimist": "^1.2.5" @@ -62462,14 +61523,10 @@ }, "object-path": { "version": "0.11.5", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.5.tgz", - "integrity": "sha512-jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg==", "peer": true }, "pretty-format": { "version": "25.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz", - "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==", "peer": true, "requires": { "@jest/types": "^25.5.0", @@ -62480,20 +61537,14 @@ }, "react-is": { "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "peer": true }, "resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "peer": true }, "unist-util-visit": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", - "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -62503,8 +61554,6 @@ }, "unist-util-visit-parents": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", - "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -62534,22 +61583,16 @@ }, "dependencies": { "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + "version": "0.14.0" }, "@szmarczak/http-timer": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", "requires": { "defer-to-connect": "^1.0.1" } }, "cacheable-request": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", "requires": { "clone-response": "^1.0.2", "get-stream": "^5.1.0", @@ -62562,8 +61605,6 @@ "dependencies": { "get-stream": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "requires": { "pump": "^3.0.0" } @@ -62572,21 +61613,15 @@ }, "decompress-response": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", "requires": { "mimic-response": "^1.0.0" } }, "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + "version": "1.1.3" }, "fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -62595,16 +61630,12 @@ }, "get-stream": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "requires": { "pump": "^3.0.0" } }, "got": { "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", "requires": { "@sindresorhus/is": "^0.14.0", "@szmarczak/http-timer": "^1.1.2", @@ -62620,59 +61651,41 @@ }, "dependencies": { "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + "version": "1.0.1" } } }, "json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + "version": "3.0.0" }, "keyv": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", "requires": { "json-buffer": "3.0.0" } }, "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + "version": "1.0.1" }, "normalize-url": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", - "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" + "version": "4.5.1" }, "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + "version": "1.1.0" }, "responselike": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", "requires": { "lowercase-keys": "^1.0.0" }, "dependencies": { "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + "version": "1.0.1" } } }, "to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + "version": "1.0.0" } } }, @@ -62695,8 +61708,6 @@ }, "gatsby-telemetry": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.1.0.tgz", - "integrity": "sha512-XoKh80BROhmtqbFXDhKxr66vYqxt23PfANqUhyFugHFfW+ETx33kTOS8t9IY23icrsqoo780vcx0nVFRjidWEg==", "peer": true, "requires": { "@babel/code-frame": "^7.14.0", @@ -62716,8 +61727,6 @@ "dependencies": { "fs-extra": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", "peer": true, "requires": { "graceful-fs": "^4.2.0", @@ -62729,8 +61738,6 @@ }, "gatsby-worker": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.1.0.tgz", - "integrity": "sha512-+Ezi+lO+3bwPIgoGlcP7YAVFpn3iI8E44SwbFOvq9Mrfikdy81iWfOHAXB8TVJ6f0H0vATyJ9EoOAF0bZJWouQ==", "peer": true, "requires": { "@babel/core": "^7.15.5", @@ -63394,8 +62401,6 @@ }, "graphql-subscriptions": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/graphql-subscriptions/-/graphql-subscriptions-1.2.1.tgz", - "integrity": "sha512-95yD/tKi24q8xYa7Q9rhQN16AYj5wPbrb8tmHGM3WRc9EBmWrG/0kkMl+tQG8wcEuE9ibR4zyOM31p5Sdr2v4g==", "peer": true, "requires": { "iterall": "^1.3.0" @@ -63533,8 +62538,6 @@ }, "has-cors": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", - "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=", "peer": true }, "has-flag": { @@ -63659,8 +62662,6 @@ }, "hicat": { "version": "0.8.0", - "resolved": "https://registry.npmjs.org/hicat/-/hicat-0.8.0.tgz", - "integrity": "sha512-om8L9O5XwqeSdwl5NtHgrzK3wcF4fT9T4gb/NktoH8EyoZipas/tvUZLV48xT7fQfMYr9qvb0WEutqdf0LWSqA==", "peer": true, "requires": { "highlight.js": "^10.4.1", @@ -64194,8 +63195,6 @@ }, "inline-style-parser": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", "peer": true }, "inquirer": { @@ -64443,8 +63442,6 @@ }, "is-invalid-path": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", - "integrity": "sha1-MHqFWzzxqTi0TqcNLGEQYFNxTzQ=", "peer": true, "requires": { "is-glob": "^2.0.0" @@ -64452,14 +63449,10 @@ "dependencies": { "is-extglob": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", "peer": true }, "is-glob": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", "peer": true, "requires": { "is-extglob": "^1.0.0" @@ -64622,14 +63615,10 @@ }, "is-url": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", - "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", "peer": true }, "is-valid-path": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", - "integrity": "sha1-EQ+f90w39mPh7HkV60UfLbk6yd8=", "peer": true, "requires": { "is-invalid-path": "^0.1.0" @@ -65192,9 +64181,7 @@ } }, "jose": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/jose/-/jose-4.1.4.tgz", - "integrity": "sha512-iCCOrCZuG+BjP3SsjTmJtgFZey1hwHMUqv9nBqFkdJtJ/jd193QgCl/u339IdyS+2opUklON+9VzGzmKaudsfg==" + "version": "4.1.4" }, "js-tokens": { "version": "4.0.0" @@ -65472,8 +64459,6 @@ }, "jsx-ast-utils": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz", - "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==", "peer": true, "requires": { "array-includes": "^3.1.3", @@ -65538,8 +64523,6 @@ }, "knex": { "version": "0.95.14", - "resolved": "https://registry.npmjs.org/knex/-/knex-0.95.14.tgz", - "integrity": "sha512-j4qLjWySrC/JRRVtOpoR2LcS1yBOsd7Krc6mEukPvmTDX/w11pD52Pq9FYR56/kLXGeAV8jFdWBjsZFi1mscWg==", "requires": { "colorette": "2.0.16", "commander": "^7.1.0", @@ -65557,9 +64540,7 @@ }, "dependencies": { "colorette": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", - "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==" + "version": "2.0.16" }, "resolve-from": { "version": "5.0.0" @@ -65568,8 +64549,6 @@ }, "knex-schema-inspector": { "version": "1.6.4", - "resolved": "https://registry.npmjs.org/knex-schema-inspector/-/knex-schema-inspector-1.6.4.tgz", - "integrity": "sha512-OCmicnMAaC109heNx79S3aYzTK4B9n+8uQ8z4ZBdqr8DN2E+xP9hLMpxfZFZkHMjilSQy13PgzfgvbgFgRNGSg==", "requires": { "lodash.flatten": "^4.4.0", "lodash.isnil": "^4.0.0" @@ -65603,14 +64582,10 @@ }, "language-subtag-registry": { "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==", "peer": true }, "language-tags": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", "peer": true, "requires": { "language-subtag-registry": "~0.3.2" @@ -65632,16 +64607,12 @@ }, "ldap-filter": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.3.3.tgz", - "integrity": "sha1-KxTGiiqdQQTb28kQocqF/Riel5c=", "requires": { "assert-plus": "^1.0.0" } }, "ldapjs": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/ldapjs/-/ldapjs-2.3.1.tgz", - "integrity": "sha512-kf0tHHLrpwKaBAQOhYHXgdeh2PkFuCCxWgLb1MRn67ZQVo787D2pij3mmHVZx193GIdM8xcfi8HF6AIYYnj0fQ==", "requires": { "abstract-logging": "^2.0.0", "asn1": "^0.2.4", @@ -65845,8 +64816,6 @@ }, "lint-staged": { "version": "11.2.6", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-11.2.6.tgz", - "integrity": "sha512-Vti55pUnpvPE0J9936lKl0ngVeTdSZpEdTNhASbkaWX7J5R9OEifo1INBGQuGW4zmy6OG+TcWPJ3m5yuy5Q8Tg==", "dev": true, "requires": { "cli-truncate": "2.1.0", @@ -66138,8 +65107,6 @@ }, "lmdb-store": { "version": "1.6.10", - "resolved": "https://registry.npmjs.org/lmdb-store/-/lmdb-store-1.6.10.tgz", - "integrity": "sha512-eON9oD8NLM3DpJ+mQfzw24Pd/gVDxEaXmi+L53j092Oqc3C+pc1G6/a2bmmG9kAUfiwdd5tQMvhDOVpodpkaPA==", "peer": true, "requires": { "msgpackr": "^1.4.7", @@ -66197,8 +65164,6 @@ }, "lock": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/lock/-/lock-1.1.0.tgz", - "integrity": "sha1-UxV0mdFlOxNspmRRBx/KYVcD+lU=", "peer": true }, "lodash": { @@ -66775,8 +65740,6 @@ }, "marked": { "version": "3.0.8", - "resolved": "https://registry.npmjs.org/marked/-/marked-3.0.8.tgz", - "integrity": "sha512-0gVrAjo5m0VZSJb4rpL59K1unJAMb/hm8HRXqasD8VeC8m91ytDPMritgFSlKonfdt+rRYYpP/JfLxgIX8yoSw==", "dev": true }, "mathml-tag-names": { @@ -66804,8 +65767,6 @@ }, "mdast-util-from-markdown": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.0.4.tgz", - "integrity": "sha512-BlL42o885QO+6o43ceoc6KBdp/bi9oYyamj0hUbeu730yhP1WDC7m2XYSBfmQkOb0TdoHSAJ3de3SMqse69u+g==", "peer": true, "requires": { "@types/mdast": "^3.0.0", @@ -66824,8 +65785,6 @@ }, "mdast-util-mdx": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz", - "integrity": "sha512-leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw==", "peer": true, "requires": { "mdast-util-mdx-expression": "^1.0.0", @@ -66835,8 +65794,6 @@ }, "mdast-util-mdx-expression": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.1.1.tgz", - "integrity": "sha512-RDLRkBFmBKCJl6/fQdxxKL2BqNtoPFoNBmQAlj5ZNKOijIWRKjdhPkeufsUOaexLj+78mhJc+L7d1MYka8/LdQ==", "peer": true, "requires": { "@types/estree-jsx": "^0.0.1" @@ -66844,8 +65801,6 @@ }, "mdast-util-mdx-jsx": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.1.1.tgz", - "integrity": "sha512-C4W4hXmagipaeMwi5O8y+lVWE4qP2MDxfKlIh0lZN6MZWSPpQTK5RPwKBH4DdYHorgjbV2rKk84rNWlRtvoZCg==", "peer": true, "requires": { "@types/estree-jsx": "^0.0.1", @@ -66860,20 +65815,14 @@ "dependencies": { "character-entities-html4": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", "peer": true }, "character-entities-legacy": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", "peer": true }, "stringify-entities": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.2.tgz", - "integrity": "sha512-MTxTVcEkorNtBbNpoFJPEh0kKdM6+QbMjLbaxmvaPMmayOXdr/AIVIIJX7FReUVweRBFJfZepK4A4AKgwuFpMQ==", "peer": true, "requires": { "character-entities-html4": "^2.0.0", @@ -66882,14 +65831,10 @@ }, "unist-util-is": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz", - "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==", "peer": true }, "unist-util-remove-position": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz", - "integrity": "sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -66898,8 +65843,6 @@ }, "unist-util-visit": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz", - "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -66909,8 +65852,6 @@ }, "unist-util-visit-parents": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz", - "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -66921,8 +65862,6 @@ }, "mdast-util-mdxjs-esm": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.1.1.tgz", - "integrity": "sha512-IpHNNMubCt6ue2FIQasx1ByvETglnqc7A3XvIc0Yyql1hNI73SEGa044dZG6jeJQE8boBdTn8nxs3DjQLvVN1w==", "peer": true, "requires": { "@types/estree-jsx": "^0.0.1", @@ -66933,8 +65872,6 @@ }, "mdast-util-to-markdown": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.4.tgz", - "integrity": "sha512-Wive3NvrNS4OY5yYKBADdK1QSlbJUZyZ2ssanITUzNQ7sxMfBANTVjLrAA9BFXshaeG9G77xpOK/z+TTret5Hg==", "peer": true, "requires": { "@types/mdast": "^3.0.0", @@ -66948,20 +65885,14 @@ "dependencies": { "longest-streak": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.1.tgz", - "integrity": "sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==", "peer": true }, "unist-util-is": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz", - "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==", "peer": true }, "unist-util-visit": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz", - "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -66971,8 +65902,6 @@ }, "unist-util-visit-parents": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz", - "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -66983,8 +65912,6 @@ }, "mdast-util-to-string": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz", - "integrity": "sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==", "peer": true }, "mdn-data": { @@ -67240,8 +66167,6 @@ }, "micromark-extension-mdx-expression": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.2.tgz", - "integrity": "sha512-KbkM9D9x/ZOV6gLwaN8izl2ZMI3sg+C4JLuUSmd8zJ4Z2d3mSWrznJRLuXkZcyN9lLaRm4Dz2VPjae3AkC5X1A==", "peer": true, "requires": { "micromark-factory-mdx-expression": "^1.0.0", @@ -67255,8 +66180,6 @@ }, "micromark-extension-mdx-jsx": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.2.tgz", - "integrity": "sha512-MBppeDuXEBIL1uo4B/bL5eJ1q3m5pXzdzIWpOnJuzzBZF+S+9zbb5WnS2K/LEVQeoyiLzOuoteU4SFPuGJhhWw==", "peer": true, "requires": { "@types/acorn": "^4.0.0", @@ -67272,8 +66195,6 @@ }, "micromark-extension-mdx-md": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz", - "integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==", "peer": true, "requires": { "micromark-util-types": "^1.0.0" @@ -67281,8 +66202,6 @@ }, "micromark-extension-mdxjs": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz", - "integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==", "peer": true, "requires": { "acorn": "^8.0.0", @@ -67297,8 +66216,6 @@ }, "micromark-extension-mdxjs-esm": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.2.tgz", - "integrity": "sha512-bIaxblNIM+CCaJvp3L/V+168l79iuNmxEiTU6i3vB0YuDW+rumV64BFMxvhfRDxaJxQE1zD5vTPdyLBbW4efGA==", "peer": true, "requires": { "micromark-core-commonmark": "^1.0.0", @@ -67330,8 +66247,6 @@ }, "micromark-factory-mdx-expression": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.4.tgz", - "integrity": "sha512-1mS1Cg/GmvvafgHQvxz4OqhcO1JGwzzTuGh1C8NIUrmnr6/3A1dJiAphHz7kJKI/b9WIr69Q8VswuwyWo576yQ==", "peer": true, "requires": { "micromark-factory-space": "^1.0.0", @@ -67406,8 +66321,6 @@ }, "micromark-util-decode-string": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.1.tgz", - "integrity": "sha512-Wf3H6jLaO3iIlHEvblESXaKAr72nK7JtBbLLICPwuZc3eJkMcp4j8rJ5Xv1VbQWMCWWDvKUbVUbE2MfQNznwTA==", "peer": true, "requires": { "micromark-util-character": "^1.0.0", @@ -67421,8 +66334,6 @@ }, "micromark-util-events-to-acorn": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.0.4.tgz", - "integrity": "sha512-dpo8ecREK5s/KMph7jJ46RLM6g7N21CMc9LAJQbDLdbQnTpijigkSJPTIfLXZ+h5wdXlcsQ+b6ufAE9v76AdgA==", "peer": true, "requires": { "@types/acorn": "^4.0.0", @@ -67435,8 +66346,6 @@ "dependencies": { "@types/estree": { "version": "0.0.50", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", - "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", "peer": true } } @@ -67505,9 +66414,7 @@ } }, "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + "version": "2.6.0" }, "mime-db": { "version": "1.50.0" @@ -67822,8 +66729,6 @@ }, "msgpackr": { "version": "1.4.7", - "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.4.7.tgz", - "integrity": "sha512-bhC8Ed1au3L3oHaR/fe4lk4w7PLGFcWQ5XY/Tk9N6tzDRz8YndjCG68TD8zcvYZoxNtw767eF/7VpaTpU9kf9w==", "optional": true, "peer": true, "requires": { @@ -67832,8 +66737,6 @@ }, "msgpackr-extract": { "version": "1.0.15", - "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-1.0.15.tgz", - "integrity": "sha512-vgJgzFva0/4/mt84wXf3CRCDPHKqiqk5t7/kVSjk/V2IvwSjoStHhxyq/b2+VrWcch3sxiNQOJEWXgI86Fm7AQ==", "optional": true, "peer": true, "requires": { @@ -68047,8 +66950,6 @@ }, "native-url": { "version": "0.2.6", - "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", - "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", "peer": true, "requires": { "querystring": "^0.2.0" @@ -68147,8 +67048,6 @@ }, "node-eta": { "version": "0.9.0", - "resolved": "https://registry.npmjs.org/node-eta/-/node-eta-0.9.0.tgz", - "integrity": "sha1-n7CwmbzSoCGUDmA8ZCVNwAPZp6g=", "peer": true }, "node-exceptions": { @@ -68273,8 +67172,6 @@ }, "node-gyp-build": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz", - "integrity": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==", "peer": true }, "node-int64": { @@ -68378,9 +67275,7 @@ "dev": true }, "node-object-hash": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.10.tgz", - "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" + "version": "2.3.10" }, "node-pre-gyp": { "version": "0.11.0", @@ -68958,8 +67853,6 @@ }, "object.entries": { "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", "peer": true, "requires": { "call-bind": "^1.0.2", @@ -68969,8 +67862,6 @@ }, "object.fromentries": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", "peer": true, "requires": { "call-bind": "^1.0.2", @@ -68988,8 +67879,6 @@ }, "object.hasown": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz", - "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==", "peer": true, "requires": { "define-properties": "^1.1.3", @@ -69069,8 +67958,6 @@ }, "openid-client": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/openid-client/-/openid-client-5.0.2.tgz", - "integrity": "sha512-Z3fuzy5S/ohIBonXdTFYAKIjMAf0ycRMW0Rs1cXSH1UBJDB2CJTcVR5u7MPlPui5lA1f+mQ9DktPNEwrYVoY+A==", "requires": { "jose": "^4.1.0", "lru-cache": "^6.0.0", @@ -69138,14 +68025,10 @@ }, "oracledb": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/oracledb/-/oracledb-5.3.0.tgz", - "integrity": "sha512-HMJzQ6lCf287ztvvehTEmjCWA21FQ3RMvM+mgoqd4i8pkREuqFWO+y3ovsGR9moJUg4T0xjcwS8rl4mggWPxmg==", "dev": true }, "ordered-binary": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.1.3.tgz", - "integrity": "sha512-tDTls+KllrZKJrqRXUYJtIcWIyoQycP7cVN7kzNNnhHKF2bMKHflcAQK+pF2Eb1iVaQodHxqZQr0yv4HWLGBhQ==", "peer": true }, "original": { @@ -69246,8 +68129,6 @@ }, "p-throttle": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/p-throttle/-/p-throttle-4.1.1.tgz", - "integrity": "sha512-TuU8Ato+pRTPJoDzYD4s7ocJYcNSEZRvlxoq3hcPI2kZDZ49IQ1Wkj7/gDJc3X7XiEAAvRGtDzdXJI0tC3IL1g==", "peer": true }, "p-timeout": { @@ -69537,8 +68418,6 @@ }, "parse-entities": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-3.1.0.tgz", - "integrity": "sha512-xf2yeHbsfg1vJySsQelVwgtI/67eAndVU05skrr/XN6KFMoVVA95BYrW8y78OfW4jqcuHwB7tlMlLkvbq4WbHQ==", "requires": { "@types/unist": "^2.0.0", "character-entities": "^2.0.0", @@ -69550,43 +68429,29 @@ }, "dependencies": { "character-entities": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.1.tgz", - "integrity": "sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==" + "version": "2.0.1" }, "character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==" + "version": "3.0.0" }, "character-reference-invalid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==" + "version": "2.0.1" }, "is-alphabetical": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.0.tgz", - "integrity": "sha512-5OV8Toyq3oh4eq6sbWTYzlGdnMT/DPI5I0zxUBxjiigQsZycpkKF3kskkao3JyYGuYDHvhgJF+DrjMQp9SX86w==" + "version": "2.0.0" }, "is-alphanumerical": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.0.tgz", - "integrity": "sha512-t+2GlJ+hO9yagJ+jU3+HSh80VKvz/3cG2cxbGGm4S0hjKuhWQXgPVUVOZz3tqZzMjhmphZ+1TIJTlRZRoe6GCQ==", "requires": { "is-alphabetical": "^2.0.0", "is-decimal": "^2.0.0" } }, "is-decimal": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.0.tgz", - "integrity": "sha512-QfrfjQV0LjoWQ1K1XSoEZkTAzSa14RKVMa5zg3SdAfzEmQzRM4+tbSFWb78creCeA9rNBzaZal92opi1TwPWZw==" + "version": "2.0.0" }, "is-hexadecimal": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.0.tgz", - "integrity": "sha512-vGOtYkiaxwIiR0+Ng/zNId+ZZehGfINwTzdrDqc6iubbnQWhnPuYymOzOKUDqa2cSl59yHnEh2h6MvRLQsyNug==" + "version": "2.0.0" } } }, @@ -69624,6 +68489,10 @@ "query-string": "^6.13.8" } }, + "parse-srcset": { + "version": "1.0.2", + "dev": true + }, "parse-url": { "version": "6.0.0", "requires": { @@ -69644,14 +68513,10 @@ }, "parseqs": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz", - "integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==", "peer": true }, "parseuri": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz", - "integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==", "peer": true }, "parseurl": { @@ -69959,6 +68824,13 @@ "requires": { "@vue/devtools-api": "^6.0.0-beta.20.1", "vue-demi": "*" + }, + "dependencies": { + "vue-demi": { + "version": "0.11.4", + "dev": true, + "requires": {} + } } }, "pinkie": { @@ -70859,9 +69731,7 @@ } }, "precond": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz", - "integrity": "sha1-qpWRvKokkj8eD0hJ0kD0fvwQdaw=" + "version": "0.2.3" }, "prelude-ls": { "version": "1.2.1" @@ -70976,8 +69846,6 @@ }, "proper-lockfile": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", - "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", "requires": { "graceful-fs": "^4.2.4", "retry": "^0.12.0", @@ -71760,8 +70628,6 @@ }, "redux": { "version": "4.0.5", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz", - "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==", "peer": true, "requires": { "loose-envify": "^1.4.0", @@ -71850,8 +70716,6 @@ }, "remark-mdx": { "version": "2.0.0-rc.1", - "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.0.0-rc.1.tgz", - "integrity": "sha512-y3cj3wDwpXTE1boMco/nsquHj2noK0mtnXwBC8FJ/CtU06y66jOBWX1kLknluBl06pYbxtx1ypAOHKvjgT4vsA==", "peer": true, "requires": { "mdast-util-mdx": "^1.0.0", @@ -71860,8 +70724,6 @@ }, "remark-mdxjs": { "version": "2.0.0-next.8", - "resolved": "https://registry.npmjs.org/remark-mdxjs/-/remark-mdxjs-2.0.0-next.8.tgz", - "integrity": "sha512-Z/+0eWc7pBEABwg3a5ptL+vCTWHYMFnYzpLoJxTm2muBSk8XyB/CL+tEJ6SV3Q/fScHX2dtG4JRcGSpbZFLazQ==", "peer": true, "requires": { "@babel/core": "7.10.5", @@ -71873,8 +70735,6 @@ "dependencies": { "@babel/core": { "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.10.5.tgz", - "integrity": "sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==", "peer": true, "requires": { "@babel/code-frame": "^7.10.4", @@ -71897,14 +70757,10 @@ }, "@babel/helper-plugin-utils": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", - "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==", "peer": true }, "@babel/plugin-proposal-object-rest-spread": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz", - "integrity": "sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==", "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -71914,8 +70770,6 @@ }, "@babel/plugin-syntax-jsx": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz", - "integrity": "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==", "peer": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -71923,22 +70777,16 @@ }, "semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "peer": true }, "source-map": { "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "peer": true } } }, "remark-parse": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-6.0.3.tgz", - "integrity": "sha512-QbDXWN4HfKTUC0hHa4teU463KclLAnwpn/FBn87j9cKYJWWawbiLgMfP2Q4XwhxxuuuOxHlw+pSN0OKuJwyVvg==", "requires": { "collapse-white-space": "^1.0.2", "is-alphabetical": "^1.0.0", @@ -71959,8 +70807,6 @@ "dependencies": { "parse-entities": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz", - "integrity": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==", "requires": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", @@ -71974,8 +70820,6 @@ }, "remark-stringify": { "version": "8.1.1", - "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-8.1.1.tgz", - "integrity": "sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A==", "peer": true, "requires": { "ccount": "^1.0.0", @@ -71996,8 +70840,6 @@ "dependencies": { "markdown-table": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", - "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", "peer": true, "requires": { "repeat-string": "^1.0.0" @@ -72005,8 +70847,6 @@ }, "mdast-util-compact": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-2.0.1.tgz", - "integrity": "sha512-7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA==", "peer": true, "requires": { "unist-util-visit": "^2.0.0" @@ -72014,8 +70854,6 @@ }, "parse-entities": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", - "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", "peer": true, "requires": { "character-entities": "^1.0.0", @@ -72028,8 +70866,6 @@ }, "stringify-entities": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-3.1.0.tgz", - "integrity": "sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg==", "peer": true, "requires": { "character-entities-html4": "^1.0.0", @@ -72039,8 +70875,6 @@ }, "unist-util-visit": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", - "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -72050,8 +70884,6 @@ }, "unist-util-visit-parents": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", - "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -72518,8 +71350,6 @@ "dependencies": { "@rollup/pluginutils": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.1.1.tgz", - "integrity": "sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ==", "requires": { "estree-walker": "^2.0.1", "picomatch": "^2.2.2" @@ -72527,8 +71357,6 @@ }, "fs-extra": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", @@ -72537,8 +71365,6 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" } @@ -72549,9 +71375,7 @@ "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" }, "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "version": "0.1.2" } } }, @@ -72624,10 +71448,74 @@ "safer-buffer": { "version": "2.1.2" }, + "sanitize-html": { + "version": "2.5.3", + "dev": true, + "requires": { + "deepmerge": "^4.2.2", + "escape-string-regexp": "^4.0.0", + "htmlparser2": "^6.0.0", + "is-plain-object": "^5.0.0", + "parse-srcset": "^1.0.2", + "postcss": "^8.3.11" + }, + "dependencies": { + "dom-serializer": { + "version": "1.3.2", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.2.0", + "dev": true + }, + "domhandler": { + "version": "4.2.2", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "entities": { + "version": "2.2.0", + "dev": true + }, + "htmlparser2": { + "version": "6.1.0", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "postcss": { + "version": "8.3.11", + "dev": true, + "requires": { + "nanoid": "^3.1.30", + "picocolors": "^1.0.0", + "source-map-js": "^0.6.2" + } + } + } + }, "sass": { "version": "1.43.4", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.43.4.tgz", - "integrity": "sha512-/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg==", "dev": true, "requires": { "chokidar": ">=3.0.0 <4.0.0" @@ -72940,8 +71828,6 @@ }, "simple-git-hooks": { "version": "2.7.0", - "resolved": "https://registry.npmjs.org/simple-git-hooks/-/simple-git-hooks-2.7.0.tgz", - "integrity": "sha512-nQe6ASMO9zn5/htIrU37xEIHGr9E6wikXelLbOeTcfsX2O++DHaVug7RSQoq+kO7DvZTH37WA5gW49hN9HTDmQ==", "dev": true }, "simple-lru-cache": { @@ -72961,8 +71847,6 @@ }, "single-trailing-newline": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/single-trailing-newline/-/single-trailing-newline-1.0.0.tgz", - "integrity": "sha1-gfCtKtZFGBlFyAlSpcFBSZLulmQ=", "peer": true, "requires": { "detect-newline": "^1.0.3" @@ -72970,8 +71854,6 @@ "dependencies": { "detect-newline": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-1.0.3.tgz", - "integrity": "sha1-6XsQA4d9cMCa8a81v63/Fo3kkg0=", "peer": true, "requires": { "get-stdin": "^4.0.1", @@ -72980,8 +71862,6 @@ }, "get-stdin": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", "peer": true } } @@ -73006,9 +71886,7 @@ "dev": true }, "slugify": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.2.tgz", - "integrity": "sha512-XMtI8qD84LwCpthLMBHlIhcrj10cgA+U/Ot8G6FD6uFuWZtMfKK75JO7l81nzpFJsPlsW6LT+VKqWQJW3+6New==" + "version": "1.6.2" }, "smart-buffer": { "version": "4.2.0", @@ -73140,8 +72018,6 @@ }, "socket.io": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-3.1.2.tgz", - "integrity": "sha512-JubKZnTQ4Z8G4IZWtaAZSiRP3I/inpy8c/Bsx2jrwGrTbKeVU5xd6qkKMHpChYeM3dWZSO0QACiGK+obhBNwYw==", "requires": { "@types/cookie": "^0.4.0", "@types/cors": "^2.8.8", @@ -73159,8 +72035,6 @@ }, "socket.io-client": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-3.1.3.tgz", - "integrity": "sha512-4sIGOGOmCg3AOgGi7EEr6ZkTZRkrXwub70bBB/F0JSkMOUFpA77WsL87o34DffQQ31PkbMUIadGOk+3tx1KGbw==", "peer": true, "requires": { "@types/component-emitter": "^1.2.10", @@ -73511,8 +72385,6 @@ }, "stackframe": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", - "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==", "peer": true }, "standard-as-callback": { @@ -73722,8 +72594,6 @@ }, "string-natural-compare": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", - "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", "peer": true }, "string-similarity": { @@ -73747,8 +72617,6 @@ }, "string.prototype.matchall": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", - "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", "peer": true, "requires": { "call-bind": "^1.0.2", @@ -73892,8 +72760,6 @@ }, "style-to-object": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", - "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", "peer": true, "requires": { "inline-style-parser": "0.1.1" @@ -73971,20 +72837,14 @@ "dependencies": { "balanced-match": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, "hosted-git-info": { "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "meow": { "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, "requires": { "@types/minimist": "^1.2.0", @@ -74003,8 +72863,6 @@ }, "postcss": { "version": "8.3.11", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", - "integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==", "dev": true, "requires": { "nanoid": "^3.1.30", @@ -74014,15 +72872,11 @@ }, "postcss-safe-parser": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, "requires": {} }, "read-pkg": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, "requires": { "@types/normalize-package-data": "^2.4.0", @@ -74033,8 +72887,6 @@ "dependencies": { "normalize-package-data": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", @@ -74045,16 +72897,12 @@ }, "type-fest": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true } } }, "read-pkg-up": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, "requires": { "find-up": "^4.1.0", @@ -74064,28 +72912,20 @@ "dependencies": { "type-fest": { "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true } } }, "resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true }, "semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "type-fest": { "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true } } @@ -74691,8 +73531,6 @@ }, "stylelint-config-standard": { "version": "23.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-23.0.0.tgz", - "integrity": "sha512-8PDlk+nWuc1T66nVaODTdVodN0pjuE5TBlopi39Lt9EM36YJsRhqttMyUhnS78oc/59Q6n8iw2GJB4QcoFqtRg==", "dev": true, "requires": { "stylelint-config-recommended": "^6.0.0" @@ -75158,8 +73996,6 @@ }, "tedious": { "version": "13.2.0", - "resolved": "https://registry.npmjs.org/tedious/-/tedious-13.2.0.tgz", - "integrity": "sha512-MC6BsOV5uXeYj4vHvU22N4VHZeFtqmqHAPvDuvfpojnOq/DDd9VfyT4e6vyQ/yTpdSMHWIB06eEJp8u3qEWSHg==", "devOptional": true, "requires": { "@azure/identity": "^1.5.2", @@ -75555,8 +74391,6 @@ }, "ts-node": { "version": "10.4.0", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.4.0.tgz", - "integrity": "sha512-g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==", "dev": true, "requires": { "@cspotcode/source-map-support": "0.7.0", @@ -75816,8 +74650,6 @@ }, "unified": { "version": "8.4.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", - "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", "peer": true, "requires": { "bail": "^1.0.0", @@ -75829,8 +74661,6 @@ "dependencies": { "is-plain-obj": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", "peer": true } } @@ -75877,14 +74707,10 @@ }, "unist-util-is": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", - "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", "peer": true }, "unist-util-position-from-estree": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz", - "integrity": "sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==", "peer": true, "requires": { "@types/unist": "^2.0.0" @@ -75892,8 +74718,6 @@ }, "unist-util-remove": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz", - "integrity": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==", "peer": true, "requires": { "unist-util-is": "^4.0.0" @@ -75907,8 +74731,6 @@ }, "unist-util-stringify-position": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz", - "integrity": "sha512-SdfAl8fsDclywZpfMDTVDxA2V7LjtRDTOFd44wUJamgl6OlVngsqWjxvermMYf60elWHbxhuRCZml7AnuXCaSA==", "requires": { "@types/unist": "^2.0.0" } @@ -76267,8 +75089,6 @@ }, "vasync": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/vasync/-/vasync-2.2.0.tgz", - "integrity": "sha1-z951GGChWCLbOxMrxZsRakra8Bs=", "requires": { "verror": "1.10.0" } @@ -76286,8 +75106,6 @@ }, "vfile": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", - "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -76298,8 +75116,6 @@ "dependencies": { "unist-util-stringify-position": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", - "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", "peer": true, "requires": { "@types/unist": "^2.0.2" @@ -76307,8 +75123,6 @@ }, "vfile-message": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", - "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", "peer": true, "requires": { "@types/unist": "^2.0.0", @@ -76322,8 +75136,6 @@ }, "vfile-message": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.0.2.tgz", - "integrity": "sha512-UUjZYIOg9lDRwwiBAuezLIsu9KlXntdxwG+nXnjuQAHvBpcX3x0eN8h+I7TkY5nkCXj+cWVp4ZqebtGBvok8ww==", "requires": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^3.0.0" @@ -76344,8 +75156,6 @@ "dependencies": { "postcss": { "version": "8.3.11", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", - "integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==", "dev": true, "requires": { "nanoid": "^3.1.30", @@ -76357,8 +75167,6 @@ }, "vite-plugin-md": { "version": "0.11.4", - "resolved": "https://registry.npmjs.org/vite-plugin-md/-/vite-plugin-md-0.11.4.tgz", - "integrity": "sha512-t24rdVSB72k8xeLcuMhwl0ku5hvsQkt7NfVNG1LEaTOykbXTgwcGD8OUTmryOsGGhCw2DuCZJvTs+qK07J7Gug==", "dev": true, "requires": { "@rollup/pluginutils": "^4.1.1", @@ -76402,13 +75210,6 @@ "@vue/shared": "3.2.22" } }, - "vue-demi": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.12.1.tgz", - "integrity": "sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==", - "dev": true, - "requires": {} - }, "vue-eslint-parser": { "version": "7.11.0", "dev": true, @@ -76947,8 +75748,6 @@ }, "weak-lru-cache": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.1.3.tgz", - "integrity": "sha512-5LDIv+sr6uzT94Hhcq7Qv7gt3jxol4iMWUqOgJSLYbB5oO7bTSMqIBtKsytm8N2BufYOdJw86/qu+SDfbo/wKQ==", "peer": true }, "web-streams-polyfill": { @@ -77927,8 +76726,6 @@ }, "xmlhttprequest-ssl": { "version": "1.6.3", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz", - "integrity": "sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==", "peer": true }, "xss": { @@ -77985,8 +76782,6 @@ }, "yeast": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", - "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=", "peer": true }, "yn": { @@ -77997,8 +76792,6 @@ }, "yoga-layout-prebuilt": { "version": "1.10.0", - "resolved": "https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz", - "integrity": "sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==", "peer": true, "requires": { "@types/yoga-layout": "1.9.2" @@ -78006,8 +76799,6 @@ }, "yurnalist": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/yurnalist/-/yurnalist-2.1.0.tgz", - "integrity": "sha512-PgrBqosQLM3gN2xBFIMDLACRTV9c365VqityKKpSTWpwR+U4LAFR3rSVyEoscWlu3EzX9+Y0I86GXUKxpHFl6w==", "peer": true, "requires": { "chalk": "^2.4.2", @@ -78019,14 +76810,10 @@ "dependencies": { "ansi-regex": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "peer": true }, "ansi-styles": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "peer": true, "requires": { "color-convert": "^1.9.0" @@ -78034,8 +76821,6 @@ }, "chalk": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "peer": true, "requires": { "ansi-styles": "^3.2.1", @@ -78045,8 +76830,6 @@ }, "color-convert": { "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "peer": true, "requires": { "color-name": "1.1.3" @@ -78054,26 +76837,18 @@ }, "color-name": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "peer": true }, "escape-string-regexp": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "peer": true }, "has-flag": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "peer": true }, "strip-ansi": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "peer": true, "requires": { "ansi-regex": "^4.1.0" @@ -78081,8 +76856,6 @@ }, "supports-color": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "peer": true, "requires": { "has-flag": "^3.0.0" @@ -78123,8 +76896,6 @@ }, "zwitch": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz", - "integrity": "sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==", "peer": true } } diff --git a/packages/shared/src/types/index.ts b/packages/shared/src/types/index.ts index ac813c6745..a883e1378f 100644 --- a/packages/shared/src/types/index.ts +++ b/packages/shared/src/types/index.ts @@ -12,6 +12,7 @@ export * from './items'; export * from './layouts'; export * from './misc'; export * from './modules'; +export * from './notifications'; export * from './panels'; export * from './permissions'; export * from './presets'; diff --git a/packages/shared/src/types/notifications.ts b/packages/shared/src/types/notifications.ts new file mode 100644 index 0000000000..48034c920e --- /dev/null +++ b/packages/shared/src/types/notifications.ts @@ -0,0 +1,10 @@ +export type Notification = { + id: string; + timestamp: string; + recipient: string; + sender: string | null; + subject: string; + message: string | null; + collection: string | null; + item: string | null; +};