all repos — caroster @ aef70f94e89ffd14d07d7782737ed76fa5157b3c

[Octree] Group carpool to your event https://caroster.io

⬆️  Upgrade to Strapi 3.1.4, remove buggy documentation plugin
Tim Izzo tim@octree.ch
Fri, 21 Aug 2020 18:08:57 +0200
commit

aef70f94e89ffd14d07d7782737ed76fa5157b3c

parent

d9cdeb2d4bc547e6fbbf5c0ec98357727393ce81

6 files changed, 902 insertions(+), 3153 deletions(-)

jump to
M config/server.jsconfig/server.js

@@ -2,4 +2,9 @@ module.exports = ({env}) => ({

host: env('HOST', '0.0.0.0'), port: env.int('PORT', 1337), url: env('STRAPI_URL', ''), + admin: { + auth: { + secret: env('ADMIN_JWT_SECRET'), + }, + }, });
D extensions/documentation/config/settings.json

@@ -1,49 +0,0 @@

-{ - "openapi": "3.0.0", - "info": { - "version": "1.0.0", - "title": "Documentation de l'API Caroster", - "description": "", - "termsOfService": "YOUR_TERMS_OF_SERVICE_URL", - "contact": { - "name": "Octree", - "email": "sysadmin@octree.ch", - "url": "octree.ch" - }, - "license": { - "name": "Apache 2.0", - "url": "https://www.apache.org/licenses/LICENSE-2.0.html" - } - }, - "x-strapi-config": { - "path": "/documentation", - "showGeneratedFiles": true, - "pluginsForWhichToGenerateDoc": [] - }, - "servers": [ - { - "url": "http://localhost:1337", - "description": "Development server" - }, - { - "url": "https://caroster.dev.octr.ee", - "description": "Test server" - }, - { - "url": "https://caroster.io", - "description": "Production server" - } - ], - "externalDocs": { - "description": "Find out more", - "url": "https://strapi.io/documentation/" - }, - "security": [ - { - "bearerAuth": [] - } - ], - "paths": {}, - "tags": [], - "components": {} -}
D extensions/documentation/documentation/1.0.0/full_documentation.json

@@ -1,2263 +0,0 @@

-{ - "openapi": "3.0.0", - "info": { - "version": "1.0.0", - "title": "Documentation de l'API Caroster", - "description": "", - "termsOfService": "YOUR_TERMS_OF_SERVICE_URL", - "contact": { - "name": "Octree", - "email": "sysadmin@octree.ch", - "url": "octree.ch" - }, - "license": { - "name": "Apache 2.0", - "url": "https://www.apache.org/licenses/LICENSE-2.0.html" - }, - "x-generation-date": "22.07.2020 08:14:36" - }, - "x-strapi-config": { - "path": "/documentation", - "showGeneratedFiles": true, - "generateDefaultResponse": true, - "pluginsForWhichToGenerateDoc": [] - }, - "servers": [ - { - "url": "http://localhost:1337", - "description": "Development server" - }, - { - "url": "https://caroster.dev.octr.ee", - "description": "Test server" - }, - { - "url": "https://caroster.io", - "description": "Production server" - } - ], - "externalDocs": { - "description": "Find out more", - "url": "https://strapi.io/documentation/" - }, - "security": [ - { - "bearerAuth": [] - } - ], - "paths": { - "/cars": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Car" - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Car" - ], - "parameters": [ - { - "name": "_limit", - "in": "query", - "required": false, - "description": "Maximum number of results possible", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "_sort", - "in": "query", - "required": false, - "description": "Sort according to a specific field.", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_start", - "in": "query", - "required": false, - "description": "Skip a specific number of entries (especially useful for pagination)", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "=", - "in": "query", - "required": false, - "description": "Get entries that matches exactly your input", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_ne", - "in": "query", - "required": false, - "description": "Get records that are not equals to something", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lt", - "in": "query", - "required": false, - "description": "Get record that are lower than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lte", - "in": "query", - "required": false, - "description": "Get records that are lower than or equal to a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gt", - "in": "query", - "required": false, - "description": "Get records that are greater than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gte", - "in": "query", - "required": false, - "description": "Get records that are greater than or equal a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_contains", - "in": "query", - "required": false, - "description": "Get records that contains a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_containss", - "in": "query", - "required": false, - "description": "Get records that contains (case sensitive) a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_in", - "in": "query", - "required": false, - "description": "Get records that matches any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - }, - { - "name": "_nin", - "in": "query", - "required": false, - "description": "Get records that doesn't match any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - } - ] - }, - "post": { - "deprecated": false, - "description": "Create a new record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Car" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Car" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewCar" - } - } - } - } - } - }, - "/cars/count": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "properties": { - "count": { - "type": "integer" - } - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Car" - ], - "parameters": [] - } - }, - "/cars/{id}": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Car" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Car" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "put": { - "deprecated": false, - "description": "Update a record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Car" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Car" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewCar" - } - } - } - }, - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "delete": { - "deprecated": false, - "description": "Delete a record", - "responses": { - "200": { - "description": "deletes a single record based on the ID supplied", - "content": { - "application/json": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Car" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - } - }, - "/events": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Event" - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "parameters": [ - { - "name": "_limit", - "in": "query", - "required": false, - "description": "Maximum number of results possible", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "_sort", - "in": "query", - "required": false, - "description": "Sort according to a specific field.", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_start", - "in": "query", - "required": false, - "description": "Skip a specific number of entries (especially useful for pagination)", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "=", - "in": "query", - "required": false, - "description": "Get entries that matches exactly your input", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_ne", - "in": "query", - "required": false, - "description": "Get records that are not equals to something", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lt", - "in": "query", - "required": false, - "description": "Get record that are lower than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lte", - "in": "query", - "required": false, - "description": "Get records that are lower than or equal to a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gt", - "in": "query", - "required": false, - "description": "Get records that are greater than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gte", - "in": "query", - "required": false, - "description": "Get records that are greater than or equal a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_contains", - "in": "query", - "required": false, - "description": "Get records that contains a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_containss", - "in": "query", - "required": false, - "description": "Get records that contains (case sensitive) a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_in", - "in": "query", - "required": false, - "description": "Get records that matches any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - }, - { - "name": "_nin", - "in": "query", - "required": false, - "description": "Get records that doesn't match any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - } - ] - }, - "post": { - "deprecated": false, - "description": "Create a new record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Event" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewEvent" - } - } - } - } - } - }, - "/events/count": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "properties": { - "count": { - "type": "integer" - } - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "parameters": [] - } - }, - "/events/{id}": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Event" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "put": { - "deprecated": false, - "description": "Update a record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Event" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewEvent" - } - } - } - }, - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "delete": { - "deprecated": false, - "description": "Delete a record", - "responses": { - "200": { - "description": "deletes a single record based on the ID supplied", - "content": { - "application/json": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Event" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - } - }, - "/pages": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Page" - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "parameters": [ - { - "name": "_limit", - "in": "query", - "required": false, - "description": "Maximum number of results possible", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "_sort", - "in": "query", - "required": false, - "description": "Sort according to a specific field.", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_start", - "in": "query", - "required": false, - "description": "Skip a specific number of entries (especially useful for pagination)", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "=", - "in": "query", - "required": false, - "description": "Get entries that matches exactly your input", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_ne", - "in": "query", - "required": false, - "description": "Get records that are not equals to something", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lt", - "in": "query", - "required": false, - "description": "Get record that are lower than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lte", - "in": "query", - "required": false, - "description": "Get records that are lower than or equal to a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gt", - "in": "query", - "required": false, - "description": "Get records that are greater than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gte", - "in": "query", - "required": false, - "description": "Get records that are greater than or equal a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_contains", - "in": "query", - "required": false, - "description": "Get records that contains a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_containss", - "in": "query", - "required": false, - "description": "Get records that contains (case sensitive) a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_in", - "in": "query", - "required": false, - "description": "Get records that matches any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - }, - { - "name": "_nin", - "in": "query", - "required": false, - "description": "Get records that doesn't match any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - } - ] - }, - "post": { - "deprecated": false, - "description": "Create a new record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Page" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewPage" - } - } - } - } - } - }, - "/pages/count": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "properties": { - "count": { - "type": "integer" - } - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "parameters": [] - } - }, - "/pages/{id}": { - "get": { - "deprecated": false, - "description": "", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Page" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "put": { - "deprecated": false, - "description": "Update a record", - "responses": { - "200": { - "description": "response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Page" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewPage" - } - } - } - }, - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - }, - "delete": { - "deprecated": false, - "description": "Delete a record", - "responses": { - "200": { - "description": "deletes a single record based on the ID supplied", - "content": { - "application/json": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Page" - ], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ] - } - }, - "/settings": { - "get": { - "deprecated": false, - "description": "Find all the settings's records", - "responses": { - "200": { - "description": "Retrieve settings document(s)", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Settings" - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Settings" - ], - "parameters": [ - { - "name": "_limit", - "in": "query", - "required": false, - "description": "Maximum number of results possible", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "_sort", - "in": "query", - "required": false, - "description": "Sort according to a specific field.", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_start", - "in": "query", - "required": false, - "description": "Skip a specific number of entries (especially useful for pagination)", - "schema": { - "type": "integer" - }, - "deprecated": false - }, - { - "name": "=", - "in": "query", - "required": false, - "description": "Get entries that matches exactly your input", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_ne", - "in": "query", - "required": false, - "description": "Get records that are not equals to something", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lt", - "in": "query", - "required": false, - "description": "Get record that are lower than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_lte", - "in": "query", - "required": false, - "description": "Get records that are lower than or equal to a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gt", - "in": "query", - "required": false, - "description": "Get records that are greater than a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_gte", - "in": "query", - "required": false, - "description": "Get records that are greater than or equal a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_contains", - "in": "query", - "required": false, - "description": "Get records that contains a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_containss", - "in": "query", - "required": false, - "description": "Get records that contains (case sensitive) a value", - "schema": { - "type": "string" - }, - "deprecated": false - }, - { - "name": "_in", - "in": "query", - "required": false, - "description": "Get records that matches any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - }, - { - "name": "_nin", - "in": "query", - "required": false, - "description": "Get records that doesn't match any value in the array of values", - "schema": { - "type": "array", - "items": { - "type": "string" - } - }, - "deprecated": false - } - ] - }, - "put": { - "deprecated": false, - "description": "Update a single settings record", - "responses": { - "200": { - "description": "Retrieve settings document(s)", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Settings" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Settings" - ], - "requestBody": { - "description": "", - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewSettings" - } - } - } - }, - "parameters": [] - }, - "delete": { - "deprecated": false, - "description": "Delete a single settings record", - "responses": { - "200": { - "description": "deletes a single settings based on the ID supplied", - "content": { - "application/json": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "default": { - "description": "unexpected error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "summary": "", - "tags": [ - "Settings" - ], - "parameters": [] - } - } - }, - "components": { - "schemas": { - "Car": { - "required": [ - "id", - "name", - "seats" - ], - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "seats": { - "type": "integer" - }, - "meeting": { - "type": "string" - }, - "departure": { - "type": "datetime" - }, - "phone_number": { - "type": "string" - }, - "details": { - "type": "string" - }, - "event": { - "required": [ - "id", - "name", - "email" - ], - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "email": { - "type": "string" - }, - "date": { - "type": "string" - }, - "address": { - "type": "string" - }, - "cars": { - "type": "array", - "items": { - "type": "string" - } - }, - "position": { - "type": "object" - }, - "waiting_list": { - "type": "object" - }, - "users": { - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "passengers": { - "type": "object" - } - } - }, - "NewCar": { - "required": [ - "name", - "seats" - ], - "properties": { - "name": { - "type": "string" - }, - "seats": { - "type": "integer" - }, - "meeting": { - "type": "string" - }, - "departure": { - "type": "datetime" - }, - "phone_number": { - "type": "string" - }, - "details": { - "type": "string" - }, - "event": { - "type": "string" - }, - "passengers": { - "type": "object" - } - } - }, - "Event": { - "required": [ - "id", - "name", - "email" - ], - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "email": { - "type": "string" - }, - "date": { - "type": "string" - }, - "address": { - "type": "string" - }, - "cars": { - "type": "array", - "items": { - "required": [ - "id", - "name", - "seats" - ], - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "seats": { - "type": "integer" - }, - "meeting": { - "type": "string" - }, - "departure": { - "type": "datetime" - }, - "phone_number": { - "type": "string" - }, - "details": { - "type": "string" - }, - "event": { - "type": "string" - }, - "passengers": { - "type": "object" - } - } - } - }, - "position": { - "type": "object" - }, - "waiting_list": { - "type": "object" - }, - "users": { - "type": "array", - "items": { - "required": [ - "id", - "username", - "email" - ], - "properties": { - "id": { - "type": "string" - }, - "username": { - "type": "string" - }, - "firstName": { - "type": "string" - }, - "lastName": { - "type": "string" - }, - "email": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "password": { - "type": "string" - }, - "resetPasswordToken": { - "type": "string" - }, - "confirmed": { - "type": "boolean" - }, - "blocked": { - "type": "boolean" - }, - "role": { - "type": "string" - }, - "events": { - "type": "array", - "items": { - "type": "string" - } - } - } - } - } - } - }, - "NewEvent": { - "required": [ - "name", - "email" - ], - "properties": { - "name": { - "type": "string" - }, - "email": { - "type": "string" - }, - "date": { - "type": "string" - }, - "address": { - "type": "string" - }, - "cars": { - "type": "array", - "items": { - "type": "string" - } - }, - "position": { - "type": "object" - }, - "waiting_list": { - "type": "object" - }, - "users": { - "type": "array", - "items": { - "type": "string" - } - } - } - }, - "Page": { - "required": [ - "id", - "name" - ], - "properties": { - "id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "content": { - "type": "string" - }, - "type": { - "type": "string", - "enum": [ - "tos" - ] - } - } - }, - "NewPage": { - "required": [ - "name" - ], - "properties": { - "name": { - "type": "string" - }, - "content": { - "type": "string" - }, - "type": { - "type": "string", - "enum": [ - "tos" - ] - } - } - }, - "Settings": { - "required": [ - "id" - ], - "properties": { - "id": { - "type": "string" - }, - "gtm_id": { - "type": "string" - }, - "about_link": { - "type": "string" - } - } - }, - "NewSettings": { - "properties": { - "gtm_id": { - "type": "string" - }, - "about_link": { - "type": "string" - } - } - }, - "Error": { - "required": [ - "code", - "message" - ], - "properties": { - "code": { - "type": "integer", - "format": "int32" - }, - "message": { - "type": "string" - } - } - } - }, - "securitySchemes": { - "bearerAuth": { - "type": "http", - "scheme": "bearer", - "bearerFormat": "JWT" - } - } - }, - "tags": [ - { - "name": "Car" - }, - { - "name": "Event" - }, - { - "name": "Page" - }, - { - "name": "Settings" - } - ] -}
D extensions/documentation/public/index.html

@@ -1,57 +0,0 @@

-<!-- HTML for static distribution bundle build --><!DOCTYPE html><html lang="en"><head> - <meta charset="UTF-8"> - <title>Swagger UI</title> - <link rel="stylesheet" type="text/css" href="/plugins/documentation/swagger-ui.css"> - <link rel="icon" type="image/png" href="/plugins/documentation/favicon-32x32.png" sizes="32x32"> - <link rel="icon" type="image/png" href="/plugins/documentation/favicon-16x16.png" sizes="16x16"> - <style> - html - { - box-sizing: border-box; - overflow: -moz-scrollbars-vertical; - overflow-y: scroll; - } - - *, - *:before, - *:after - { - box-sizing: inherit; - } - - body - { - margin:0; - background: #fafafa; - } - </style> - </head> - - <body> - <div id="swagger-ui"></div> - <script class="custom-swagger-ui"> - window.onload = function() { - const ui = SwaggerUIBundle({ - url: "https://petstore.swagger.io/v2/swagger.json", - spec: {"openapi":"3.0.0","info":{"version":"1.0.0","title":"Documentation de l'API Caroster","description":"","termsOfService":"YOUR_TERMS_OF_SERVICE_URL","contact":{"name":"Octree","email":"sysadmin@octree.ch","url":"octree.ch"},"license":{"name":"Apache 2.0","url":"https://www.apache.org/licenses/LICENSE-2.0.html"},"x-generation-date":"07/08/2020 12:13:00 PM"},"x-strapi-config":{"path":"/documentation","showGeneratedFiles":true,"generateDefaultResponse":true,"pluginsForWhichToGenerateDoc":[]},"servers":[{"url":"http://localhost:1337","description":"Development server"},{"url":"https://caroster.dev.octr.ee","description":"Test server"},{"url":"https://caroster.io","description":"Production server"}],"externalDocs":{"description":"Find out more","url":"https://strapi.io/documentation/"},"security":[{"bearerAuth":[]}],"paths":{"/cars":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Car"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Car"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Car"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Car"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCar"}}}}}},"/cars/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Car"],"parameters":[]}},"/cars/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Car"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Car"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Car"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Car"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCar"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Car"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/events":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Event"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Event"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Event"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Event"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewEvent"}}}}}},"/events/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Event"],"parameters":[]}},"/events/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Event"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Event"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Event"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Event"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewEvent"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Event"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/pages":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Page"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewPage"}}}}}},"/pages/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[]}},"/pages/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewPage"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/settings":{"get":{"deprecated":false,"description":"Find all the settings's records","responses":{"200":{"description":"Retrieve settings document(s)","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Settings"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Settings"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"put":{"deprecated":false,"description":"Update a single settings record","responses":{"200":{"description":"Retrieve settings document(s)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Settings"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Settings"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewSettings"}}}},"parameters":[]},"delete":{"deprecated":false,"description":"Delete a single settings record","responses":{"200":{"description":"deletes a single settings based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Settings"],"parameters":[]}}},"components":{"schemas":{"Car":{"required":["id","name","seats"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"seats":{"type":"integer"},"meeting":{"type":"string"},"departure":{"type":"datetime"},"phone_number":{"type":"string"},"details":{"type":"string"},"event":{"required":["id","name","email"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"date":{"type":"string"},"address":{"type":"string"},"cars":{"type":"array","items":{"type":"string"}},"position":{"type":"object"},"waiting_list":{"type":"object"}}},"passengers":{"type":"object"}}},"NewCar":{"required":["name","seats"],"properties":{"name":{"type":"string"},"seats":{"type":"integer"},"meeting":{"type":"string"},"departure":{"type":"datetime"},"phone_number":{"type":"string"},"details":{"type":"string"},"event":{"type":"string"},"passengers":{"type":"object"}}},"Event":{"required":["id","name","email"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"date":{"type":"string"},"address":{"type":"string"},"cars":{"type":"array","items":{"required":["id","name","seats"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"seats":{"type":"integer"},"meeting":{"type":"string"},"departure":{"type":"datetime"},"phone_number":{"type":"string"},"details":{"type":"string"},"event":{"type":"string"},"passengers":{"type":"object"}}}},"position":{"type":"object"},"waiting_list":{"type":"object"}}},"NewEvent":{"required":["name","email"],"properties":{"name":{"type":"string"},"email":{"type":"string"},"date":{"type":"string"},"address":{"type":"string"},"cars":{"type":"array","items":{"type":"string"}},"position":{"type":"object"},"waiting_list":{"type":"object"}}},"Page":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"content":{"type":"string"},"type":{"type":"string","enum":["tos"]}}},"NewPage":{"required":["name"],"properties":{"name":{"type":"string"},"content":{"type":"string"},"type":{"type":"string","enum":["tos"]}}},"Settings":{"required":["id"],"properties":{"id":{"type":"string"},"gtm_id":{"type":"string"}}},"NewSettings":{"properties":{"gtm_id":{"type":"string"}}},"Error":{"required":["code","message"],"properties":{"code":{"type":"integer","format":"int32"},"message":{"type":"string"}}}},"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}}},"tags":[{"name":"Car"},{"name":"Event"},{"name":"Page"},{"name":"Settings"}]}, - dom_id: '#swagger-ui', - docExpansion: "none", - deepLinking: true, - presets: [ - SwaggerUIBundle.presets.apis, - SwaggerUIStandalonePreset, - ], - plugins: [ - SwaggerUIBundle.plugins.DownloadUrl, - ], - layout: "StandaloneLayout", - }); - - window.ui = ui; - } - </script> - - <script src="/plugins/documentation/swagger-ui-bundle.js"> </script> - <script src="/plugins/documentation/swagger-ui-standalone-preset.js"> </script> - </body> -</html>
M package-lock.jsonpackage-lock.json

@@ -23,15 +23,15 @@ "semver": "^5.5.0"

} }, "@babel/core": { - "version": "7.11.1", - "resolved": "https://npm-8ee.hidora.com/@babel%2fcore/-/core-7.11.1.tgz", - "integrity": "sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ==", + "version": "7.11.4", + "resolved": "https://npm-8ee.hidora.com/@babel%2fcore/-/core-7.11.4.tgz", + "integrity": "sha512-5deljj5HlqRXN+5oJTY7Zs37iH3z3b++KjiKtIsJy1NrjOOVSEaJHEetLBhyu0aQOSNNZ/0IuEAan9GzRuDXHg==", "requires": { "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.11.0", + "@babel/generator": "^7.11.4", "@babel/helper-module-transforms": "^7.11.0", "@babel/helpers": "^7.10.4", - "@babel/parser": "^7.11.1", + "@babel/parser": "^7.11.4", "@babel/template": "^7.10.4", "@babel/traverse": "^7.11.0", "@babel/types": "^7.11.0",

@@ -45,6 +45,21 @@ "semver": "^5.4.1",

"source-map": "^0.5.0" }, "dependencies": { + "@babel/generator": { + "version": "7.11.4", + "resolved": "https://npm-8ee.hidora.com/@babel%2fgenerator/-/generator-7.11.4.tgz", + "integrity": "sha512-Rn26vueFx0eOoz7iifCN2UHT6rGtnkSGWSoDRIy8jZN3B91PzeSULbswfLoOWuTuAcNwpG/mxy+uCTDnZ9Mp1g==", + "requires": { + "@babel/types": "^7.11.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/parser": { + "version": "7.11.4", + "resolved": "https://npm-8ee.hidora.com/@babel%2fparser/-/parser-7.11.4.tgz", + "integrity": "sha512-MggwidiH+E9j5Sh8pbrX5sJvMcsqS5o+7iB42M9/k0CD63MjYbdP4nhSh7uB5wnv2/RVzTZFTxzF/kIa5mrCqA==" + }, "debug": { "version": "4.1.1", "resolved": "https://npm-8ee.hidora.com/debug/-/debug-4.1.1.tgz",

@@ -152,11 +167,10 @@ "lodash": "^4.17.19"

} }, "@babel/helper-explode-assignable-expression": { - "version": "7.10.4", - "resolved": "https://npm-8ee.hidora.com/@babel%2fhelper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz", - "integrity": "sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A==", + "version": "7.11.4", + "resolved": "https://npm-8ee.hidora.com/@babel%2fhelper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz", + "integrity": "sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ==", "requires": { - "@babel/traverse": "^7.10.4", "@babel/types": "^7.10.4" } },

@@ -238,14 +252,13 @@ "lodash": "^4.17.19"

} }, "@babel/helper-remap-async-to-generator": { - "version": "7.10.4", - "resolved": "https://npm-8ee.hidora.com/@babel%2fhelper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz", - "integrity": "sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg==", + "version": "7.11.4", + "resolved": "https://npm-8ee.hidora.com/@babel%2fhelper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz", + "integrity": "sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA==", "requires": { "@babel/helper-annotate-as-pure": "^7.10.4", "@babel/helper-wrap-function": "^7.10.4", "@babel/template": "^7.10.4", - "@babel/traverse": "^7.10.4", "@babel/types": "^7.10.4" } },

@@ -1070,14 +1083,14 @@ "to-fast-properties": "^2.0.0"

} }, "@buffetjs/core": { - "version": "3.1.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fcore/-/core-3.1.1.tgz", - "integrity": "sha512-NVcPBurN3AhDv7J565Qyqf6ES9/E9ILJkCtAXc+oHazJW0Q8EN2/ag84GFStP7RC09UZrS9isAM0OePwBTa8xA==", + "version": "3.2.1", + "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fcore/-/core-3.2.1.tgz", + "integrity": "sha512-ojoWjmEmq9l2U4U2Gro7sh85WRJEuFQlBLJvSv/fygqU+/1hpRoNYUWNWv3e3o4qjNocjrEdy163O8iKfwd8BQ==", "requires": { - "@buffetjs/hooks": "3.1.1", - "@buffetjs/icons": "3.1.1", - "@buffetjs/styles": "3.1.1", - "@buffetjs/utils": "3.1.1", + "@buffetjs/hooks": "3.2.1", + "@buffetjs/icons": "3.2.1", + "@buffetjs/styles": "3.2.1", + "@buffetjs/utils": "3.2.1", "@fortawesome/fontawesome-svg-core": "^1.2.25", "@fortawesome/free-regular-svg-icons": "^5.11.2", "@fortawesome/free-solid-svg-icons": "^5.11.2",

@@ -1086,35 +1099,36 @@ "invariant": "^2.2.4",

"moment": "^2.24.0", "rc-input-number": "^4.5.0", "react-dates": "^21.5.1", - "react-moment-proptypes": "^1.7.0" + "react-moment-proptypes": "^1.7.0", + "react-with-direction": "^1.3.1" } }, "@buffetjs/custom": { - "version": "3.1.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fcustom/-/custom-3.1.1.tgz", - "integrity": "sha512-wtfTfH105gPBv+Q3SgUVqt3YE+6T+bIpyLBsC+tpIQzcvTeiEHXajGz6G5wsUFTk1tdvYpy57BTo2jpjdYmPsw==", + "version": "3.2.1", + "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fcustom/-/custom-3.2.1.tgz", + "integrity": "sha512-jdqw5A3u8uIojgwA9ddi1V6rbR6AhghTy5h8ndSGljGH1mfrViJf5HF9TdHjJnpW3uyfwXh2LzZM6sH/aAwffA==", "requires": { - "@buffetjs/core": "3.1.1", - "@buffetjs/styles": "3.1.1", - "@buffetjs/utils": "3.1.1", + "@buffetjs/core": "3.2.1", + "@buffetjs/styles": "3.2.1", + "@buffetjs/utils": "3.2.1", "moment": "^2.24.0", "react-moment-proptypes": "^1.7.0" } }, "@buffetjs/hooks": { - "version": "3.1.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fhooks/-/hooks-3.1.1.tgz", - "integrity": "sha512-myoJlP60GY/dYjaYV723kDq5Jg0yGnfZUS1gnsSCSt7++zwLuiPefxjuFb+vlRj8LPAImlL4kNU5ZAA+2OLIWg==" + "version": "3.2.1", + "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fhooks/-/hooks-3.2.1.tgz", + "integrity": "sha512-+ckjVGxDy0/0IkF8Hv2bLGjf+pv0IqmmklrwQisTkBLBfhy85UCjHxitalAOn9d9jZHT6wjNjoiRjcVKd5zS8A==" }, "@buffetjs/icons": { - "version": "3.1.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2ficons/-/icons-3.1.1.tgz", - "integrity": "sha512-l0bgzjP9LsxCmUVvj2NKTacXkgeMd7cykzVO1zsG49Qco0UjyKF1IOLM8wkX5nrZ6Gy+FIPx9hkVPQGspYBxyQ==" + "version": "3.2.1", + "resolved": "https://npm-8ee.hidora.com/@buffetjs%2ficons/-/icons-3.2.1.tgz", + "integrity": "sha512-50rw19kCAsC3SOmcUSrXexZg3DEhmVYSDuPrctBdYZhsT07giGcz9yJtPLwF74nxHwr29lTDEJn7i6rAbz9xdg==" }, "@buffetjs/styles": { - "version": "3.1.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fstyles/-/styles-3.1.1.tgz", - "integrity": "sha512-zf6oxwl48GIUs1/VWHavXZPtzwXdwazFkVN4Yd4DZYf6t4xJxT0C3GGB1w/RJTOp9n+SYhjCQ/9e05GuaJaOfw==", + "version": "3.2.1", + "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fstyles/-/styles-3.2.1.tgz", + "integrity": "sha512-TkfzbCMj7w1jrowe25mQLM/LdXF+l9ogOj9lRrjfpSSGw4y9m6kEz6f3+73uMQROeyB7dg95CmlIniBeV/zMQQ==", "requires": { "@fortawesome/fontawesome-free": "^5.12.0", "@fortawesome/fontawesome-svg-core": "^1.2.22",

@@ -1125,9 +1139,9 @@ "react-dates": "^21.1.0"

} }, "@buffetjs/utils": { - "version": "3.1.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2futils/-/utils-3.1.1.tgz", - "integrity": "sha512-WKM6G2G53W3HOZwMVNfAs8lvyx3g69Ku+Gw1hVbM2uuGRxo9Pf27By2lYUyOug8tnxTf5An+mw3oTCsdYgzpAA==", + "version": "3.2.1", + "resolved": "https://npm-8ee.hidora.com/@buffetjs%2futils/-/utils-3.2.1.tgz", + "integrity": "sha512-hzN98LPkqNNTvr2iyp5h4UM06iSJ/fXyrVhneTcQBh8LWX9lMFXCttQJRZgRsBCjhcM16Zh6vn0Wv4LqN4bcxA==", "requires": { "yup": "^0.27.0" },

@@ -1145,6 +1159,14 @@ "synchronous-promise": "^2.0.6",

"toposort": "^2.0.2" } } + } + }, + "@casl/ability": { + "version": "4.1.5", + "resolved": "https://npm-8ee.hidora.com/@casl%2fability/-/ability-4.1.5.tgz", + "integrity": "sha512-9nY2ear3CfCi0ckRZ4V6dRiy+f0wxj/aUPkelmGrZuEJusXfhROKahRHFGxXf5xLi3oA10SS/vbSLK4RAy7ttA==", + "requires": { + "sift": "^13.0.0" } }, "@emotion/cache": {

@@ -1188,7 +1210,7 @@ "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="

}, "@emotion/is-prop-valid": { "version": "0.8.8", - "resolved": "https://npm-8ee.hidora.com/@emotion%2fis-prop-valid/-/is-prop-valid-0.8.8.tgz", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", "requires": { "@emotion/memoize": "0.7.4"

@@ -1196,7 +1218,7 @@ }

}, "@emotion/memoize": { "version": "0.7.4", - "resolved": "https://npm-8ee.hidora.com/@emotion%2fmemoize/-/memoize-0.7.4.tgz", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" }, "@emotion/serialize": {

@@ -1225,12 +1247,12 @@ "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="

}, "@emotion/stylis": { "version": "0.8.5", - "resolved": "https://npm-8ee.hidora.com/@emotion%2fstylis/-/stylis-0.8.5.tgz", + "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" }, "@emotion/unitless": { "version": "0.7.5", - "resolved": "https://npm-8ee.hidora.com/@emotion%2funitless/-/unitless-0.7.5.tgz", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" }, "@emotion/utils": {

@@ -1254,7 +1276,7 @@ }

}, "@formatjs/intl-displaynames": { "version": "1.2.10", - "resolved": "https://npm-8ee.hidora.com/@formatjs%2fintl-displaynames/-/intl-displaynames-1.2.10.tgz", + "resolved": "https://registry.npmjs.org/@formatjs/intl-displaynames/-/intl-displaynames-1.2.10.tgz", "integrity": "sha512-GROA2RP6+7Ouu0WnHFF78O5XIU7pBfI19WM1qm93l6MFWibUk67nCfVCK3VAYJkLy8L8ZxjkYT11VIAfvSz8wg==", "requires": { "@formatjs/intl-utils": "^2.3.0"

@@ -1262,7 +1284,7 @@ }

}, "@formatjs/intl-listformat": { "version": "1.4.8", - "resolved": "https://npm-8ee.hidora.com/@formatjs%2fintl-listformat/-/intl-listformat-1.4.8.tgz", + "resolved": "https://registry.npmjs.org/@formatjs/intl-listformat/-/intl-listformat-1.4.8.tgz", "integrity": "sha512-WNMQlEg0e50VZrGIkgD5n7+DAMGt3boKi1GJALfhFMymslJb5i+5WzWxyj/3a929Z6MAFsmzRIJjKuv+BxKAOQ==", "requires": { "@formatjs/intl-utils": "^2.3.0"

@@ -1280,7 +1302,7 @@ }

}, "@formatjs/intl-relativetimeformat": { "version": "4.5.16", - "resolved": "https://npm-8ee.hidora.com/@formatjs%2fintl-relativetimeformat/-/intl-relativetimeformat-4.5.16.tgz", + "resolved": "https://registry.npmjs.org/@formatjs/intl-relativetimeformat/-/intl-relativetimeformat-4.5.16.tgz", "integrity": "sha512-IQ0haY97oHAH5OYUdykNiepdyEWj3SAT+Fp9ZpR85ov2JNiFx+12WWlxlVS8ehdyncC2ZMt/SwFIy2huK2+6/A==", "requires": { "@formatjs/intl-utils": "^2.3.0"

@@ -1288,7 +1310,7 @@ }

}, "@formatjs/intl-unified-numberformat": { "version": "3.3.7", - "resolved": "https://npm-8ee.hidora.com/@formatjs%2fintl-unified-numberformat/-/intl-unified-numberformat-3.3.7.tgz", + "resolved": "https://registry.npmjs.org/@formatjs/intl-unified-numberformat/-/intl-unified-numberformat-3.3.7.tgz", "integrity": "sha512-KnWgLRHzCAgT9eyt3OS34RHoyD7dPDYhRcuKn+/6Kv2knDF8Im43J6vlSW6Hm1w63fNq3ZIT1cFk7RuVO3Psag==", "requires": { "@formatjs/intl-utils": "^2.3.0"

@@ -1296,7 +1318,7 @@ }

}, "@formatjs/intl-utils": { "version": "2.3.0", - "resolved": "https://npm-8ee.hidora.com/@formatjs%2fintl-utils/-/intl-utils-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/@formatjs/intl-utils/-/intl-utils-2.3.0.tgz", "integrity": "sha512-KWk80UPIzPmUg+P0rKh6TqspRw0G6eux1PuJr+zz47ftMaZ9QDwbGzHZbtzWkl5hgayM/qrKRutllRC7D/vVXQ==" }, "@fortawesome/fontawesome-common-types": {

@@ -1343,7 +1365,7 @@ }

}, "@fortawesome/react-fontawesome": { "version": "0.1.11", - "resolved": "https://npm-8ee.hidora.com/@fortawesome%2freact-fontawesome/-/react-fontawesome-0.1.11.tgz", + "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.11.tgz", "integrity": "sha512-sClfojasRifQKI0OPqTy8Ln8iIhnxR/Pv/hukBhWnBz9kQRmqi6JSH3nghlhAY7SUeIIM7B5/D2G8WjX0iepVg==", "requires": { "prop-types": "^15.7.2"

@@ -1493,7 +1515,7 @@ }

}, "@sindresorhus/slugify": { "version": "0.11.0", - "resolved": "https://npm-8ee.hidora.com/@sindresorhus%2fslugify/-/slugify-0.11.0.tgz", + "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-0.11.0.tgz", "integrity": "sha512-ECTZT6z1hYDsopRh8GECaQ5L6hoJHVd4uq5hPi8se9GB31tgtZfnlM8G64hZVhJNmtJ9eIK0SuNhtsaPQStXEQ==", "requires": { "@sindresorhus/transliterate": "^0.1.0",

@@ -1502,14 +1524,14 @@ },

"dependencies": { "escape-string-regexp": { "version": "2.0.0", - "resolved": "https://npm-8ee.hidora.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" } } }, "@sindresorhus/transliterate": { "version": "0.1.1", - "resolved": "https://npm-8ee.hidora.com/@sindresorhus%2ftransliterate/-/transliterate-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-0.1.1.tgz", "integrity": "sha512-QSdIQ5keUFAZ3KLbfbsntW39ox0Ym8183RqTwBq/ZEFoN3NQAtGV+qWaNdzKpIDHgj9J2CQ2iNDRVU11Zyr7MQ==", "requires": { "escape-string-regexp": "^2.0.0",

@@ -1518,14 +1540,14 @@ },

"dependencies": { "escape-string-regexp": { "version": "2.0.0", - "resolved": "https://npm-8ee.hidora.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" } } }, "@types/color-name": { "version": "1.1.1", - "resolved": "https://npm-8ee.hidora.com/@types%2fcolor-name/-/color-name-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", "dev": true },

@@ -1567,7 +1589,7 @@ }

}, "@types/hoist-non-react-statics": { "version": "3.3.1", - "resolved": "https://npm-8ee.hidora.com/@types%2fhoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", "requires": { "@types/react": "*",

@@ -1576,7 +1598,7 @@ }

}, "@types/invariant": { "version": "2.2.33", - "resolved": "https://npm-8ee.hidora.com/@types%2finvariant/-/invariant-2.2.33.tgz", + "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.33.tgz", "integrity": "sha512-/jUNmS8d4bCKdqslfxW6dg/9Gksfzxz67IYfqApHn+HvHlMVXwYv2zpTDnS/yaK9BB0i0GlBTaYci0EFE62Hmw==" }, "@types/json-schema": {

@@ -1601,7 +1623,7 @@ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="

}, "@types/prop-types": { "version": "15.7.3", - "resolved": "https://npm-8ee.hidora.com/@types%2fprop-types/-/prop-types-15.7.3.tgz", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" }, "@types/react": {

@@ -1796,13 +1818,13 @@ "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA=="

}, "acorn-jsx": { "version": "5.2.0", - "resolved": "https://npm-8ee.hidora.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==", "dev": true }, "add-dom-event-listener": { "version": "1.1.0", - "resolved": "https://npm-8ee.hidora.com/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz", "integrity": "sha512-WCxx1ixHT0GQU9hb0KI/mhgRQhnU+U3GvwY6ZvVjYq8rsihIGoaIOUbY0yMPBxLH5MDtr0kz3fisWGNcbWW7Jw==", "requires": { "object-assign": "4.x"

@@ -1831,6 +1853,15 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="

} } }, + "aggregate-error": { + "version": "3.0.1", + "resolved": "https://npm-8ee.hidora.com/aggregate-error/-/aggregate-error-3.0.1.tgz", + "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, "airbnb-prop-types": { "version": "2.16.0", "resolved": "https://npm-8ee.hidora.com/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz",

@@ -1885,12 +1916,12 @@ "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4="

}, "ansi-regex": { "version": "3.0.0", - "resolved": "https://npm-8ee.hidora.com/ansi-regex/-/ansi-regex-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" }, "ansi-styles": { "version": "3.2.1", - "resolved": "https://npm-8ee.hidora.com/ansi-styles/-/ansi-styles-3.2.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "requires": { "color-convert": "^1.9.0"

@@ -1898,7 +1929,7 @@ }

}, "any-promise": { "version": "1.3.0", - "resolved": "https://npm-8ee.hidora.com/any-promise/-/any-promise-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=" }, "anymatch": {

@@ -1912,12 +1943,12 @@ }

}, "aproba": { "version": "1.2.0", - "resolved": "https://npm-8ee.hidora.com/aproba/-/aproba-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, "are-we-there-yet": { "version": "1.1.5", - "resolved": "https://npm-8ee.hidora.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", "requires": { "delegates": "^1.0.0",

@@ -1926,18 +1957,16 @@ }

}, "argparse": { "version": "1.0.10", - "resolved": "https://npm-8ee.hidora.com/argparse/-/argparse-1.0.10.tgz", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, "requires": { "sprintf-js": "~1.0.2" }, "dependencies": { "sprintf-js": { "version": "1.0.3", - "resolved": "https://npm-8ee.hidora.com/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" } } },

@@ -1981,7 +2010,7 @@ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="

}, "array.prototype.find": { "version": "2.1.1", - "resolved": "https://npm-8ee.hidora.com/array.prototype.find/-/array.prototype.find-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.1.tgz", "integrity": "sha512-mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA==", "requires": { "define-properties": "^1.1.3",

@@ -1990,7 +2019,7 @@ }

}, "array.prototype.flat": { "version": "1.2.3", - "resolved": "https://npm-8ee.hidora.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz", "integrity": "sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==", "requires": { "define-properties": "^1.1.3",

@@ -2069,7 +2098,7 @@ "integrity": "sha1-ECyenpAF0+fjgpvwxPok7oYu6bk="

}, "astral-regex": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/astral-regex/-/astral-regex-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", "dev": true },

@@ -2135,7 +2164,7 @@ }

}, "babel-eslint": { "version": "10.1.0", - "resolved": "https://npm-8ee.hidora.com/babel-eslint/-/babel-eslint-10.1.0.tgz", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", "dev": true, "requires": {

@@ -2207,12 +2236,12 @@ }

}, "babel-plugin-syntax-jsx": { "version": "6.18.0", - "resolved": "https://npm-8ee.hidora.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" }, "balanced-match": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/balanced-match/-/balanced-match-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, "base": {

@@ -2267,7 +2296,7 @@ }

}, "base64-js": { "version": "1.3.1", - "resolved": "https://npm-8ee.hidora.com/base64-js/-/base64-js-1.3.1.tgz", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==" }, "batch": {

@@ -2300,7 +2329,7 @@ "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="

}, "bl": { "version": "4.0.2", - "resolved": "https://npm-8ee.hidora.com/bl/-/bl-4.0.2.tgz", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.2.tgz", "integrity": "sha512-j4OH8f6Qg2bGuWfRiltT2HYGx0e1QcBTrK9KAHNMwMZdQnDZFk0ZSYIpADjYCB3U12nicC5tVJwSIhwOWjb4RQ==", "requires": { "buffer": "^5.5.0",

@@ -2310,7 +2339,7 @@ },

"dependencies": { "readable-stream": { "version": "3.6.0", - "resolved": "https://npm-8ee.hidora.com/readable-stream/-/readable-stream-3.6.0.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "requires": { "inherits": "^2.0.3",

@@ -2423,7 +2452,7 @@ "integrity": "sha512-vlGn0bcySYl/iV+BGA544JkkZP5LB3jsmkeKLFQakCOwCM3AOk7VkldBz4jrzSe+Z0Ezn99NVXa1o45cQY4R6A=="

}, "brace-expansion": { "version": "1.1.11", - "resolved": "https://npm-8ee.hidora.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { "balanced-match": "^1.0.0",

@@ -2440,7 +2469,7 @@ }

}, "brcast": { "version": "2.0.2", - "resolved": "https://npm-8ee.hidora.com/brcast/-/brcast-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/brcast/-/brcast-2.0.2.tgz", "integrity": "sha512-Tfn5JSE7hrUlFcOoaLzVvkbgIemIorMIyoMr3TgvszWW7jFt2C9PdeMLtysYD9RU0MmU17b69+XJG1eRY2OBRg==" }, "brorand": {

@@ -2557,7 +2586,7 @@ "integrity": "sha512-kDuEzldR21lHciPQAIulLs1LZlCXdLziXI6Mb/TDkwXhb//UORJNPXgcRs2CuO4H0DcMkpfT3/ySsP3unoZjBg=="

}, "buffer": { "version": "5.6.0", - "resolved": "https://npm-8ee.hidora.com/buffer/-/buffer-5.6.0.tgz", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", "requires": { "base64-js": "^1.0.2",

@@ -2591,7 +2620,7 @@ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="

}, "byte-size": { "version": "6.2.0", - "resolved": "https://npm-8ee.hidora.com/byte-size/-/byte-size-6.2.0.tgz", + "resolved": "https://registry.npmjs.org/byte-size/-/byte-size-6.2.0.tgz", "integrity": "sha512-6EspYUCAPMc7E2rltBgKwhG+Cmk0pDm9zDtF1Awe2dczNUL3YpZ8mTs/dueOTS1hqGWBOatqef4jYMGjln7WmA==" }, "bytes": {

@@ -2648,7 +2677,7 @@ }

}, "callsites": { "version": "3.1.0", - "resolved": "https://npm-8ee.hidora.com/callsites/-/callsites-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" }, "camel-case": {

@@ -2667,13 +2696,13 @@ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="

}, "camelize": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/camelize/-/camelize-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" }, "caniuse-lite": { - "version": "1.0.30001116", - "resolved": "https://npm-8ee.hidora.com/caniuse-lite/-/caniuse-lite-1.0.30001116.tgz", - "integrity": "sha512-f2lcYnmAI5Mst9+g0nkMIznFGsArRmZ0qU+dnq8l91hymdc2J3SFbiPhOJEeDqC1vtE8nc1qNQyklzB8veJefQ==" + "version": "1.0.30001117", + "resolved": "https://npm-8ee.hidora.com/caniuse-lite/-/caniuse-lite-1.0.30001117.tgz", + "integrity": "sha512-4tY0Fatzdx59kYjQs+bNxUwZB03ZEBgVmJ1UkFPz/Q8OLiUUbjct2EdpnXj0fvFTPej2EkbPIG0w8BWsjAyk1Q==" }, "captains-log": { "version": "2.0.3",

@@ -2735,7 +2764,7 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="

}, "chalk": { "version": "2.4.2", - "resolved": "https://npm-8ee.hidora.com/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "requires": { "ansi-styles": "^3.2.1",

@@ -2748,35 +2777,6 @@ "version": "0.7.0",

"resolved": "https://npm-8ee.hidora.com/chardet/-/chardet-0.7.0.tgz", "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" }, - "cheerio": { - "version": "1.0.0-rc.3", - "resolved": "https://npm-8ee.hidora.com/cheerio/-/cheerio-1.0.0-rc.3.tgz", - "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==", - "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.1", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash": "^4.15.0", - "parse5": "^3.0.1" - }, - "dependencies": { - "dom-serializer": { - "version": "0.1.1", - "resolved": "https://npm-8ee.hidora.com/dom-serializer/-/dom-serializer-0.1.1.tgz", - "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", - "requires": { - "domelementtype": "^1.3.0", - "entities": "^1.1.1" - } - }, - "entities": { - "version": "1.1.2", - "resolved": "https://npm-8ee.hidora.com/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" - } - } - }, "chokidar": { "version": "3.3.1", "resolved": "https://npm-8ee.hidora.com/chokidar/-/chokidar-3.3.1.tgz",

@@ -2794,7 +2794,7 @@ }

}, "chownr": { "version": "1.1.4", - "resolved": "https://npm-8ee.hidora.com/chownr/-/chownr-1.1.4.tgz", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" }, "chrome-trace-event": {

@@ -2842,7 +2842,7 @@ }

}, "classnames": { "version": "2.2.6", - "resolved": "https://npm-8ee.hidora.com/classnames/-/classnames-2.2.6.tgz", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" }, "clean-css": {

@@ -2859,6 +2859,11 @@ "resolved": "https://npm-8ee.hidora.com/source-map/-/source-map-0.6.1.tgz",

"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://npm-8ee.hidora.com/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" }, "cli-cursor": { "version": "2.1.0",

@@ -2960,7 +2965,7 @@ }

}, "code-point-at": { "version": "1.1.0", - "resolved": "https://npm-8ee.hidora.com/code-point-at/-/code-point-at-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" }, "codemirror": {

@@ -2979,7 +2984,7 @@ }

}, "color": { "version": "3.1.2", - "resolved": "https://npm-8ee.hidora.com/color/-/color-3.1.2.tgz", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz", "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==", "requires": { "color-convert": "^1.9.1",

@@ -2988,7 +2993,7 @@ }

}, "color-convert": { "version": "1.9.3", - "resolved": "https://npm-8ee.hidora.com/color-convert/-/color-convert-1.9.3.tgz", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "requires": { "color-name": "1.1.3"

@@ -2996,12 +3001,12 @@ }

}, "color-name": { "version": "1.1.3", - "resolved": "https://npm-8ee.hidora.com/color-name/-/color-name-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "color-string": { "version": "1.5.3", - "resolved": "https://npm-8ee.hidora.com/color-string/-/color-string-1.5.3.tgz", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz", "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==", "requires": { "color-name": "^1.0.0",

@@ -3081,7 +3086,7 @@ }

}, "concat-map": { "version": "0.0.1", - "resolved": "https://npm-8ee.hidora.com/concat-map/-/concat-map-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "concat-stream": {

@@ -3112,12 +3117,12 @@ "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="

}, "console-control-strings": { "version": "1.1.0", - "resolved": "https://npm-8ee.hidora.com/console-control-strings/-/console-control-strings-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" }, "consolidated-events": { "version": "2.0.2", - "resolved": "https://npm-8ee.hidora.com/consolidated-events/-/consolidated-events-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/consolidated-events/-/consolidated-events-2.0.2.tgz", "integrity": "sha512-2/uRVMdRypf5z/TW/ncD/66l75P5hH2vM/GR8Jf8HLc2xnfJtmina6F6du8+v4Z2vTrMo7jC+W1tmEEuuELgkQ==" }, "constants-browserify": {

@@ -3192,7 +3197,7 @@ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="

}, "copy-to-clipboard": { "version": "3.3.1", - "resolved": "https://npm-8ee.hidora.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz", "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==", "requires": { "toggle-selection": "^1.0.6"

@@ -3221,7 +3226,7 @@ }

}, "core-util-is": { "version": "1.0.2", - "resolved": "https://npm-8ee.hidora.com/core-util-is/-/core-util-is-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "cosmiconfig": {

@@ -3287,7 +3292,7 @@ }

}, "create-react-context": { "version": "0.3.0", - "resolved": "https://npm-8ee.hidora.com/create-react-context/-/create-react-context-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz", "integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==", "requires": { "gud": "^1.0.0",

@@ -3305,7 +3310,7 @@ }

}, "cropperjs": { "version": "1.5.7", - "resolved": "https://npm-8ee.hidora.com/cropperjs/-/cropperjs-1.5.7.tgz", + "resolved": "https://registry.npmjs.org/cropperjs/-/cropperjs-1.5.7.tgz", "integrity": "sha512-sGj+G/ofKh+f6A4BtXLJwtcKJgMUsXYVUubfTo9grERiDGXncttefmue/fyQFvn8wfdyoD1KhDRYLfjkJFl0yw==" }, "cross-env": {

@@ -3356,7 +3361,7 @@ }

}, "css-color-keywords": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", "integrity": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" }, "css-loader": {

@@ -3407,7 +3412,7 @@ }

}, "css-to-react-native": { "version": "3.0.0", - "resolved": "https://npm-8ee.hidora.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz", "integrity": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==", "requires": { "camelize": "^1.0.0",

@@ -3468,7 +3473,7 @@ "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="

}, "decompress-response": { "version": "4.2.1", - "resolved": "https://npm-8ee.hidora.com/decompress-response/-/decompress-response-4.2.1.tgz", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", "requires": { "mimic-response": "^2.0.0"

@@ -3486,18 +3491,18 @@ "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU="

}, "deep-extend": { "version": "0.6.0", - "resolved": "https://npm-8ee.hidora.com/deep-extend/-/deep-extend-0.6.0.tgz", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" }, "deep-is": { "version": "0.1.3", - "resolved": "https://npm-8ee.hidora.com/deep-is/-/deep-is-0.1.3.tgz", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", "dev": true }, "deepmerge": { "version": "1.5.2", - "resolved": "https://npm-8ee.hidora.com/deepmerge/-/deepmerge-1.5.2.tgz", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz", "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==" }, "default-gateway": {

@@ -3519,7 +3524,7 @@ }

}, "define-properties": { "version": "1.1.3", - "resolved": "https://npm-8ee.hidora.com/define-properties/-/define-properties-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "requires": { "object-keys": "^1.0.12"

@@ -3574,6 +3579,13 @@ "is-path-in-cwd": "^2.0.0",

"p-map": "^2.0.0", "pify": "^4.0.1", "rimraf": "^2.6.3" + }, + "dependencies": { + "p-map": { + "version": "2.1.0", + "resolved": "https://npm-8ee.hidora.com/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + } } }, "delayed-stream": {

@@ -3583,7 +3595,7 @@ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="

}, "delegates": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/delegates/-/delegates-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" }, "denque": {

@@ -3593,7 +3605,7 @@ "integrity": "sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ=="

}, "depd": { "version": "1.1.2", - "resolved": "https://npm-8ee.hidora.com/depd/-/depd-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" }, "des.js": {

@@ -3617,7 +3629,7 @@ "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc="

}, "detect-libc": { "version": "1.0.3", - "resolved": "https://npm-8ee.hidora.com/detect-libc/-/detect-libc-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=" }, "detect-node": {

@@ -3644,7 +3656,7 @@ }

}, "direction": { "version": "1.0.4", - "resolved": "https://npm-8ee.hidora.com/direction/-/direction-1.0.4.tgz", + "resolved": "https://registry.npmjs.org/direction/-/direction-1.0.4.tgz", "integrity": "sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ==" }, "dnd-core": {

@@ -3681,7 +3693,7 @@ }

}, "doctrine": { "version": "3.0.0", - "resolved": "https://npm-8ee.hidora.com/doctrine/-/doctrine-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "requires": {

@@ -3690,7 +3702,7 @@ }

}, "document.contains": { "version": "1.0.2", - "resolved": "https://npm-8ee.hidora.com/document.contains/-/document.contains-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/document.contains/-/document.contains-1.0.2.tgz", "integrity": "sha512-YcvYFs15mX8m3AO1QNQy3BlIpSMfNRj3Ujk2BEJxsZG+HZf7/hZ6jr7mDpXrF8q+ff95Vef5yjhiZxm8CGJr6Q==", "requires": { "define-properties": "^1.1.3"

@@ -3828,9 +3840,9 @@ "resolved": "https://npm-8ee.hidora.com/ee-first/-/ee-first-1.1.1.tgz",

"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.539", - "resolved": "https://npm-8ee.hidora.com/electron-to-chromium/-/electron-to-chromium-1.3.539.tgz", - "integrity": "sha512-rM0LWDIstdqfaRUADZetNrL6+zd/0NBmavbMEhBXgc2u/CC1d1GaDyN5hho29fFvBiOVFwrSWZkzmNcZnCEDog==" + "version": "1.3.540", + "resolved": "https://npm-8ee.hidora.com/electron-to-chromium/-/electron-to-chromium-1.3.540.tgz", + "integrity": "sha512-IoGiZb8SMqTtkDYJtP8EtCdvv3VMtd1QoTlypO2RUBxRq/Wk0rU5IzhzhMckPaC9XxDqUvWsL0XKOBhTiYVN3w==" }, "elliptic": { "version": "6.5.3",

@@ -3855,7 +3867,7 @@ }

}, "emoji-regex": { "version": "7.0.3", - "resolved": "https://npm-8ee.hidora.com/emoji-regex/-/emoji-regex-7.0.3.tgz", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" }, "emojis-list": {

@@ -3888,7 +3900,7 @@ }

}, "end-of-stream": { "version": "1.4.4", - "resolved": "https://npm-8ee.hidora.com/end-of-stream/-/end-of-stream-1.4.4.tgz", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "requires": { "once": "^1.4.0"

@@ -3972,7 +3984,7 @@ }

}, "es-abstract": { "version": "1.17.6", - "resolved": "https://npm-8ee.hidora.com/es-abstract/-/es-abstract-1.17.6.tgz", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", "requires": { "es-to-primitive": "^1.2.1",

@@ -3990,7 +4002,7 @@ }

}, "es-to-primitive": { "version": "1.2.1", - "resolved": "https://npm-8ee.hidora.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "requires": { "is-callable": "^1.1.4",

@@ -4019,7 +4031,7 @@ "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="

}, "escape-string-regexp": { "version": "1.0.5", - "resolved": "https://npm-8ee.hidora.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, "eslint": {

@@ -4237,7 +4249,7 @@ }

}, "eslint-utils": { "version": "2.1.0", - "resolved": "https://npm-8ee.hidora.com/eslint-utils/-/eslint-utils-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "requires": {

@@ -4246,7 +4258,7 @@ }

}, "eslint-visitor-keys": { "version": "1.3.0", - "resolved": "https://npm-8ee.hidora.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true },

@@ -4276,7 +4288,7 @@ "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM="

}, "esquery": { "version": "1.3.1", - "resolved": "https://npm-8ee.hidora.com/esquery/-/esquery-1.3.1.tgz", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", "dev": true, "requires": {

@@ -4293,7 +4305,7 @@ }

}, "esrecurse": { "version": "4.2.1", - "resolved": "https://npm-8ee.hidora.com/esrecurse/-/esrecurse-4.2.1.tgz", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", "requires": { "estraverse": "^4.1.0"

@@ -4301,12 +4313,12 @@ }

}, "estraverse": { "version": "4.3.0", - "resolved": "https://npm-8ee.hidora.com/estraverse/-/estraverse-4.3.0.tgz", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" }, "esutils": { "version": "2.0.3", - "resolved": "https://npm-8ee.hidora.com/esutils/-/esutils-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" }, "etag": {

@@ -4397,7 +4409,7 @@ }

}, "expand-template": { "version": "2.0.3", - "resolved": "https://npm-8ee.hidora.com/expand-template/-/expand-template-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==" }, "expand-tilde": {

@@ -4575,28 +4587,28 @@ "integrity": "sha1-4mifjzVvrWLMplo6kcXfX5VRaS8="

}, "fast-deep-equal": { "version": "3.1.3", - "resolved": "https://npm-8ee.hidora.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "fast-json-parse": { "version": "1.0.3", - "resolved": "https://npm-8ee.hidora.com/fast-json-parse/-/fast-json-parse-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==" }, "fast-json-stable-stringify": { "version": "2.1.0", - "resolved": "https://npm-8ee.hidora.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, "fast-levenshtein": { "version": "2.0.6", - "resolved": "https://npm-8ee.hidora.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, "fast-safe-stringify": { "version": "1.2.3", - "resolved": "https://npm-8ee.hidora.com/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz", "integrity": "sha512-QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw==" }, "fastparse": {

@@ -4654,7 +4666,7 @@ }

}, "file-entry-cache": { "version": "5.0.1", - "resolved": "https://npm-8ee.hidora.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", "dev": true, "requires": {

@@ -4750,7 +4762,7 @@ }

}, "flat-cache": { "version": "2.0.1", - "resolved": "https://npm-8ee.hidora.com/flat-cache/-/flat-cache-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", "dev": true, "requires": {

@@ -4761,7 +4773,7 @@ },

"dependencies": { "rimraf": { "version": "2.6.3", - "resolved": "https://npm-8ee.hidora.com/rimraf/-/rimraf-2.6.3.tgz", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, "requires": {

@@ -4772,12 +4784,12 @@ }

}, "flatstr": { "version": "1.0.12", - "resolved": "https://npm-8ee.hidora.com/flatstr/-/flatstr-1.0.12.tgz", + "resolved": "https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz", "integrity": "sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==" }, "flatted": { "version": "2.0.2", - "resolved": "https://npm-8ee.hidora.com/flatted/-/flatted-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", "dev": true },

@@ -4792,12 +4804,12 @@ }

}, "fn-name": { "version": "2.0.1", - "resolved": "https://npm-8ee.hidora.com/fn-name/-/fn-name-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/fn-name/-/fn-name-2.0.1.tgz", "integrity": "sha1-UhTXU3pNBqSjAcDMJi/rhBiAAuc=" }, "follow-redirects": { "version": "1.5.10", - "resolved": "https://npm-8ee.hidora.com/follow-redirects/-/follow-redirects-1.5.10.tgz", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", "requires": { "debug": "=3.1.0"

@@ -4833,6 +4845,42 @@ "version": "1.2.2",

"resolved": "https://npm-8ee.hidora.com/formidable/-/formidable-1.2.2.tgz", "integrity": "sha512-V8gLm+41I/8kguQ4/o1D3RIHRmhYFG4pnNyonvua+40rqcEmT4+V71yaZ3B457xbbgCsCfjSPi65u/W6vK1U5Q==" }, + "formik": { + "version": "2.1.5", + "resolved": "https://npm-8ee.hidora.com/formik/-/formik-2.1.5.tgz", + "integrity": "sha512-bWpo3PiqVDYslvrRjTq0Isrm0mFXHiO33D8MS6t6dWcqSFGeYF52nlpCM2xwOJ6tRVRznDkL+zz/iHPL4LDuvQ==", + "requires": { + "deepmerge": "^2.1.1", + "hoist-non-react-statics": "^3.3.0", + "lodash": "^4.17.14", + "lodash-es": "^4.17.14", + "react-fast-compare": "^2.0.1", + "scheduler": "^0.18.0", + "tiny-warning": "^1.0.2", + "tslib": "^1.10.0" + }, + "dependencies": { + "deepmerge": { + "version": "2.2.1", + "resolved": "https://npm-8ee.hidora.com/deepmerge/-/deepmerge-2.2.1.tgz", + "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" + }, + "react-fast-compare": { + "version": "2.0.4", + "resolved": "https://npm-8ee.hidora.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz", + "integrity": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" + }, + "scheduler": { + "version": "0.18.0", + "resolved": "https://npm-8ee.hidora.com/scheduler/-/scheduler-0.18.0.tgz", + "integrity": "sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + } + } + }, "forwarded": { "version": "0.1.2", "resolved": "https://npm-8ee.hidora.com/forwarded/-/forwarded-0.1.2.tgz",

@@ -4909,7 +4957,7 @@ }

}, "fs-constants": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/fs-constants/-/fs-constants-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, "fs-extra": {

@@ -4924,7 +4972,7 @@ }

}, "fs-minipass": { "version": "2.1.0", - "resolved": "https://npm-8ee.hidora.com/fs-minipass/-/fs-minipass-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "requires": { "minipass": "^3.0.0"

@@ -4943,7 +4991,7 @@ }

}, "fs.realpath": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "fsevents": {

@@ -4954,12 +5002,12 @@ "optional": true

}, "function-bind": { "version": "1.1.1", - "resolved": "https://npm-8ee.hidora.com/function-bind/-/function-bind-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "function.prototype.name": { "version": "1.1.2", - "resolved": "https://npm-8ee.hidora.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.2.tgz", "integrity": "sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg==", "requires": { "define-properties": "^1.1.3",

@@ -4969,18 +5017,18 @@ }

}, "functional-red-black-tree": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "dev": true }, "functions-have-names": { "version": "1.2.1", - "resolved": "https://npm-8ee.hidora.com/functions-have-names/-/functions-have-names-1.2.1.tgz", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.1.tgz", "integrity": "sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA==" }, "gauge": { "version": "2.7.4", - "resolved": "https://npm-8ee.hidora.com/gauge/-/gauge-2.7.4.tgz", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", "requires": { "aproba": "^1.0.3",

@@ -4995,12 +5043,12 @@ },

"dependencies": { "ansi-regex": { "version": "2.1.1", - "resolved": "https://npm-8ee.hidora.com/ansi-regex/-/ansi-regex-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" }, "is-fullwidth-code-point": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "requires": { "number-is-nan": "^1.0.0"

@@ -5008,7 +5056,7 @@ }

}, "string-width": { "version": "1.0.2", - "resolved": "https://npm-8ee.hidora.com/string-width/-/string-width-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "requires": { "code-point-at": "^1.0.0",

@@ -5018,7 +5066,7 @@ }

}, "strip-ansi": { "version": "3.0.1", - "resolved": "https://npm-8ee.hidora.com/strip-ansi/-/strip-ansi-3.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "requires": { "ansi-regex": "^2.0.0"

@@ -5059,12 +5107,12 @@ }

}, "github-from-package": { "version": "0.0.0", - "resolved": "https://npm-8ee.hidora.com/github-from-package/-/github-from-package-0.0.0.tgz", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=" }, "glob": { "version": "7.1.6", - "resolved": "https://npm-8ee.hidora.com/glob/-/glob-7.1.6.tgz", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", "requires": { "fs.realpath": "^1.0.0",

@@ -5077,7 +5125,7 @@ }

}, "glob-parent": { "version": "5.1.1", - "resolved": "https://npm-8ee.hidora.com/glob-parent/-/glob-parent-5.1.1.tgz", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", "requires": { "is-glob": "^4.0.1"

@@ -5085,7 +5133,7 @@ }

}, "global-cache": { "version": "1.2.1", - "resolved": "https://npm-8ee.hidora.com/global-cache/-/global-cache-1.2.1.tgz", + "resolved": "https://registry.npmjs.org/global-cache/-/global-cache-1.2.1.tgz", "integrity": "sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA==", "requires": { "define-properties": "^1.1.2",

@@ -5126,7 +5174,7 @@ }

}, "globals": { "version": "11.12.0", - "resolved": "https://npm-8ee.hidora.com/globals/-/globals-11.12.0.tgz", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" }, "globby": {

@@ -5154,12 +5202,10 @@ "resolved": "https://npm-8ee.hidora.com/graceful-fs/-/graceful-fs-4.2.4.tgz",

"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" }, "grant": { - "version": "5.3.0", - "resolved": "https://npm-8ee.hidora.com/grant/-/grant-5.3.0.tgz", - "integrity": "sha512-beZI6F93qzv+bejv4/WLwrfjK3RoAR0ngK3CI1ZmvDiGfL9d6ttS2hGJAE3cjmTtxZGFLSoM9cCYf/Ys532U2A==", + "version": "5.2.0", + "resolved": "https://npm-8ee.hidora.com/grant/-/grant-5.2.0.tgz", + "integrity": "sha512-XLB6H5CYp/A4+fw7CFBYLA6Q+ayHsZHgUO7+SD+VIgSeQI4wdpW5ZA+vWd2bwlKTccuCWNuEOJBneFuQd/xOUg==", "requires": { - "cookie": "^0.4.1", - "cookie-signature": "^1.1.0", "jwk-to-pem": "^2.0.3", "jws": "^4.0.0", "qs": "^6.9.4",

@@ -5167,25 +5213,40 @@ "request-compose": "^2.1.0",

"request-oauth": "^1.0.0" }, "dependencies": { - "cookie-signature": { - "version": "1.1.0", - "resolved": "https://npm-8ee.hidora.com/cookie-signature/-/cookie-signature-1.1.0.tgz", - "integrity": "sha512-Alvs19Vgq07eunykd3Xy2jF0/qSNv2u7KDbAek9H5liV1UMijbqFs5cycZvv5dVsvseT/U4H8/7/w8Koh35C4A==", - "optional": true + "jwa": { + "version": "2.0.0", + "resolved": "https://npm-8ee.hidora.com/jwa/-/jwa-2.0.0.tgz", + "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", + "optional": true, + "requires": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "jws": { + "version": "4.0.0", + "resolved": "https://npm-8ee.hidora.com/jws/-/jws-4.0.0.tgz", + "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", + "optional": true, + "requires": { + "jwa": "^2.0.0", + "safe-buffer": "^5.0.1" + } } } }, "grant-koa": { - "version": "5.3.0", - "resolved": "https://npm-8ee.hidora.com/grant-koa/-/grant-koa-5.3.0.tgz", - "integrity": "sha512-xiQyUBN+SjXTuPZLbEwU4u9hvXks8+f+wPhSUYCGkHCiQZZvfao52oYpzbY53xkVd9P1MPmBdvnayC852BKDsQ==", + "version": "5.2.0", + "resolved": "https://npm-8ee.hidora.com/grant-koa/-/grant-koa-5.2.0.tgz", + "integrity": "sha512-3kQsNrWtB/CYndIC8HSyFNPFBxfnAiDafjW22eOCFzsZPqRgxQs6+9F3H3vhRgyXHqOYkJGO+tY7ZLrD9lK0Eg==", "requires": { - "grant": "5.3.0" + "grant": "5.2.0" } }, "gud": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/gud/-/gud-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz", "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" }, "handle-thing": {

@@ -5209,7 +5270,7 @@ }

}, "has": { "version": "1.0.3", - "resolved": "https://npm-8ee.hidora.com/has/-/has-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { "function-bind": "^1.1.1"

@@ -5232,17 +5293,17 @@ }

}, "has-flag": { "version": "3.0.0", - "resolved": "https://npm-8ee.hidora.com/has-flag/-/has-flag-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, "has-symbols": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/has-symbols/-/has-symbols-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" }, "has-unicode": { "version": "2.0.1", - "resolved": "https://npm-8ee.hidora.com/has-unicode/-/has-unicode-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" }, "has-value": {

@@ -5333,9 +5394,14 @@ "version": "1.2.0",

"resolved": "https://npm-8ee.hidora.com/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" }, + "highlight.js": { + "version": "10.1.2", + "resolved": "https://npm-8ee.hidora.com/highlight.js/-/highlight.js-10.1.2.tgz", + "integrity": "sha512-Q39v/Mn5mfBlMff9r+zzA+gWxRsCRKwEMvYTiisLr/XUiFI/4puWt0Ojdko3R3JCNWGdOWaA5g/Yxqa23kC5AA==" + }, "history": { "version": "4.10.1", - "resolved": "https://npm-8ee.hidora.com/history/-/history-4.10.1.tgz", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", "requires": { "@babel/runtime": "^7.1.2",

@@ -5363,7 +5429,7 @@ "integrity": "sha512-YXXAAhmF9zpQbC7LEcREFtXfGq5K1fmd+4PHkBq8NUqmzW3G+Dq10bI/i0KucLRwss3YYFQ0fSfoxBZYiGUqtQ=="

}, "hoist-non-react-statics": { "version": "3.3.2", - "resolved": "https://npm-8ee.hidora.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "requires": { "react-is": "^16.7.0"

@@ -5642,7 +5708,7 @@ }

}, "ieee754": { "version": "1.1.13", - "resolved": "https://npm-8ee.hidora.com/ieee754/-/ieee754-1.1.13.tgz", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" }, "iferr": {

@@ -5652,23 +5718,23 @@ "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE="

}, "ignore": { "version": "4.0.6", - "resolved": "https://npm-8ee.hidora.com/ignore/-/ignore-4.0.6.tgz", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true }, "immer": { "version": "6.0.9", - "resolved": "https://npm-8ee.hidora.com/immer/-/immer-6.0.9.tgz", + "resolved": "https://registry.npmjs.org/immer/-/immer-6.0.9.tgz", "integrity": "sha512-SyCYnAuiRf67Lvk0VkwFvwtDoEiCMjeamnHvRfnVDyc7re1/rQrNxuL+jJ7lA3WvdC4uznrvbmm+clJ9+XXatg==" }, "immutable": { "version": "3.8.2", - "resolved": "https://npm-8ee.hidora.com/immutable/-/immutable-3.8.2.tgz", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz", "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=" }, "import-fresh": { "version": "3.2.1", - "resolved": "https://npm-8ee.hidora.com/import-fresh/-/import-fresh-3.2.1.tgz", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", "requires": { "parent-module": "^1.0.0",

@@ -5677,7 +5743,7 @@ },

"dependencies": { "resolve-from": { "version": "4.0.0", - "resolved": "https://npm-8ee.hidora.com/resolve-from/-/resolve-from-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" } }

@@ -5708,9 +5774,14 @@ }

}, "imurmurhash": { "version": "0.1.4", - "resolved": "https://npm-8ee.hidora.com/imurmurhash/-/imurmurhash-0.1.4.tgz", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://npm-8ee.hidora.com/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + }, "indexes-of": { "version": "1.0.1", "resolved": "https://npm-8ee.hidora.com/indexes-of/-/indexes-of-1.0.1.tgz",

@@ -5733,7 +5804,7 @@ "integrity": "sha1-ogCTVlbW9fa8TcdQLhrstwMihBY="

}, "inflight": { "version": "1.0.6", - "resolved": "https://npm-8ee.hidora.com/inflight/-/inflight-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { "once": "^1.3.0",

@@ -5742,12 +5813,12 @@ }

}, "inherits": { "version": "2.0.4", - "resolved": "https://npm-8ee.hidora.com/inherits/-/inherits-2.0.4.tgz", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { "version": "1.3.5", - "resolved": "https://npm-8ee.hidora.com/ini/-/ini-1.3.5.tgz", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" }, "inquirer": {

@@ -5796,7 +5867,7 @@ }

}, "interpret": { "version": "1.4.0", - "resolved": "https://npm-8ee.hidora.com/interpret/-/interpret-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" }, "intl-format-cache": {

@@ -5823,7 +5894,7 @@ }

}, "invariant": { "version": "2.2.4", - "resolved": "https://npm-8ee.hidora.com/invariant/-/invariant-2.2.4.tgz", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "requires": { "loose-envify": "^1.0.0"

@@ -5869,7 +5940,7 @@ }

}, "is-arguments": { "version": "1.0.4", - "resolved": "https://npm-8ee.hidora.com/is-arguments/-/is-arguments-1.0.4.tgz", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==" }, "is-arrayish": {

@@ -5897,7 +5968,7 @@ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="

}, "is-callable": { "version": "1.2.0", - "resolved": "https://npm-8ee.hidora.com/is-callable/-/is-callable-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz", "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==" }, "is-class-hotfix": {

@@ -5925,7 +5996,7 @@ }

}, "is-date-object": { "version": "1.0.2", - "resolved": "https://npm-8ee.hidora.com/is-date-object/-/is-date-object-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" }, "is-descriptor": {

@@ -5957,12 +6028,12 @@ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik="

}, "is-extglob": { "version": "2.1.1", - "resolved": "https://npm-8ee.hidora.com/is-extglob/-/is-extglob-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, "is-fullwidth-code-point": { "version": "2.0.0", - "resolved": "https://npm-8ee.hidora.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" }, "is-generator-function": {

@@ -5972,7 +6043,7 @@ "integrity": "sha512-YZc5EwyO4f2kWCax7oegfuSr9mFz1ZvieNYBEjmukLxgXfBUbxAWGVF7GZf0zidYtoBl3WvC07YK0wT76a+Rtw=="

}, "is-glob": { "version": "4.0.1", - "resolved": "https://npm-8ee.hidora.com/is-glob/-/is-glob-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "requires": { "is-extglob": "^2.1.1"

@@ -6040,7 +6111,7 @@ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="

}, "is-symbol": { "version": "1.0.3", - "resolved": "https://npm-8ee.hidora.com/is-symbol/-/is-symbol-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", "requires": { "has-symbols": "^1.0.1"

@@ -6048,7 +6119,7 @@ }

}, "is-touch-device": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/is-touch-device/-/is-touch-device-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/is-touch-device/-/is-touch-device-1.0.1.tgz", "integrity": "sha512-LAYzo9kMT1b2p19L/1ATGt2XcSilnzNlyvq6c0pbPRVisLbAPpLqr53tIJS00kvrTkj0HtR8U7+u8X0yR8lPSw==" }, "is-type-of": {

@@ -6068,7 +6139,7 @@ "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="

}, "is-valid-domain": { "version": "0.0.14", - "resolved": "https://npm-8ee.hidora.com/is-valid-domain/-/is-valid-domain-0.0.14.tgz", + "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.0.14.tgz", "integrity": "sha512-MTUz/3y25zTtutAfwrLyFK+1l2IL4bcq2iHVdYHIPQbvBJLunlYu9dsQdtLwD9HKPDyxCDlKnSbGcRwvjVeCxA==" }, "is-windows": {

@@ -6083,12 +6154,12 @@ "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0="

}, "isarray": { "version": "0.0.1", - "resolved": "https://npm-8ee.hidora.com/isarray/-/isarray-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" }, "isexe": { "version": "2.0.0", - "resolved": "https://npm-8ee.hidora.com/isexe/-/isexe-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, "isobject": {

@@ -6103,12 +6174,12 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="

}, "js-tokens": { "version": "4.0.0", - "resolved": "https://npm-8ee.hidora.com/js-tokens/-/js-tokens-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "js-yaml": { "version": "3.14.0", - "resolved": "https://npm-8ee.hidora.com/js-yaml/-/js-yaml-3.14.0.tgz", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", "dev": true, "requires": {

@@ -6118,7 +6189,7 @@ },

"dependencies": { "esprima": { "version": "4.0.1", - "resolved": "https://npm-8ee.hidora.com/esprima/-/esprima-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true }

@@ -6131,7 +6202,7 @@ "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM="

}, "jsesc": { "version": "2.5.2", - "resolved": "https://npm-8ee.hidora.com/jsesc/-/jsesc-2.5.2.tgz", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" }, "json-parse-better-errors": {

@@ -6146,12 +6217,12 @@ "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="

}, "json-schema-traverse": { "version": "0.4.1", - "resolved": "https://npm-8ee.hidora.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true },

@@ -6198,25 +6269,6 @@ "ms": "^2.1.1",

"semver": "^5.6.0" }, "dependencies": { - "jwa": { - "version": "1.4.1", - "resolved": "https://npm-8ee.hidora.com/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "requires": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, - "jws": { - "version": "3.2.2", - "resolved": "https://npm-8ee.hidora.com/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "requires": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } - }, "ms": { "version": "2.1.2", "resolved": "https://npm-8ee.hidora.com/ms/-/ms-2.1.2.tgz",

@@ -6243,10 +6295,9 @@ }

} }, "jwa": { - "version": "2.0.0", - "resolved": "https://npm-8ee.hidora.com/jwa/-/jwa-2.0.0.tgz", - "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", - "optional": true, + "version": "1.4.1", + "resolved": "https://npm-8ee.hidora.com/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "requires": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11",

@@ -6265,12 +6316,11 @@ "safe-buffer": "^5.0.1"

} }, "jws": { - "version": "4.0.0", - "resolved": "https://npm-8ee.hidora.com/jws/-/jws-4.0.0.tgz", - "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", - "optional": true, + "version": "3.2.2", + "resolved": "https://npm-8ee.hidora.com/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", "requires": { - "jwa": "^2.0.0", + "jwa": "^1.4.1", "safe-buffer": "^5.0.1" } },

@@ -6441,9 +6491,17 @@ "integrity": "sha1-Rhf6gyoWQSpWlnM0ME79eX1u01w="

} } }, + "koa-passport": { + "version": "4.1.3", + "resolved": "https://npm-8ee.hidora.com/koa-passport/-/koa-passport-4.1.3.tgz", + "integrity": "sha512-QqKrHfp4jNfqkKThGkVb2WQtlVOSRYk5CC69Z17cmOpZ4760l8CdyJ+Bs2CfQc9BHizz557mczjPkSlVkpuluw==", + "requires": { + "passport": "^0.4.0" + } + }, "koa-range": { "version": "0.3.0", - "resolved": "https://npm-8ee.hidora.com/koa-range/-/koa-range-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/koa-range/-/koa-range-0.3.0.tgz", "integrity": "sha1-NYjjSWRzqDmhvSZNKkKx2FvX/qw=", "requires": { "stream-slice": "^0.1.2"

@@ -6498,9 +6556,9 @@ }

} }, "koa-session": { - "version": "5.13.1", - "resolved": "https://npm-8ee.hidora.com/koa-session/-/koa-session-5.13.1.tgz", - "integrity": "sha512-TfYiun6xiFosyfIJKnEw0aoG5XmLIwM+K3OVWfkz84qY0NP2gbk0F/olRn0/Hrxq0f14s8amHVXeWyKYH3Cx3Q==", + "version": "6.0.0", + "resolved": "https://npm-8ee.hidora.com/koa-session/-/koa-session-6.0.0.tgz", + "integrity": "sha512-mEj2ximzLqoypk0Q+/JLu0j7fuMk/fL+yiBM0RKmxBqdImKxq3hfnpHLwpMhwya05z/W8i7vawpFl+lsYTZbAg==", "requires": { "crc": "^3.4.4", "debug": "^3.1.0",

@@ -6510,7 +6568,7 @@ }

}, "koa-static": { "version": "5.0.0", - "resolved": "https://npm-8ee.hidora.com/koa-static/-/koa-static-5.0.0.tgz", + "resolved": "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz", "integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==", "requires": { "debug": "^3.1.0",

@@ -6542,7 +6600,7 @@ }

}, "levn": { "version": "0.4.1", - "resolved": "https://npm-8ee.hidora.com/levn/-/levn-0.4.1.tgz", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "requires": {

@@ -6555,6 +6613,14 @@ "version": "1.1.6",

"resolved": "https://npm-8ee.hidora.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz", "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" }, + "linkify-it": { + "version": "3.0.2", + "resolved": "https://npm-8ee.hidora.com/linkify-it/-/linkify-it-3.0.2.tgz", + "integrity": "sha512-gDBO4aHNZS6coiZCKVhSNh43F9ioIL4JwRjLZPkoLIY4yZFwg264Y5lu2x6rb1Js42Gh6Yqm2f6L2AJcnkzinQ==", + "requires": { + "uc.micro": "^1.0.1" + } + }, "loader-runner": { "version": "2.4.0", "resolved": "https://npm-8ee.hidora.com/loader-runner/-/loader-runner-2.4.0.tgz",

@@ -6596,12 +6662,12 @@ "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="

}, "lodash-es": { "version": "4.17.15", - "resolved": "https://npm-8ee.hidora.com/lodash-es/-/lodash-es-4.17.15.tgz", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.15.tgz", "integrity": "sha512-rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ==" }, "lodash.deburr": { "version": "4.1.0", - "resolved": "https://npm-8ee.hidora.com/lodash.deburr/-/lodash.deburr-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.deburr/-/lodash.deburr-4.1.0.tgz", "integrity": "sha1-3bG7s+8HRYwBd7oH3hRCLLAz/5s=" }, "lodash.includes": {

@@ -6664,7 +6730,7 @@ "integrity": "sha1-lyHXiLR+C8taJMLivuGg2lXatRQ="

}, "loose-envify": { "version": "1.4.0", - "resolved": "https://npm-8ee.hidora.com/loose-envify/-/loose-envify-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "requires": { "js-tokens": "^3.0.0 || ^4.0.0"

@@ -6710,6 +6776,63 @@ "requires": {

"object-visit": "^1.0.0" } }, + "markdown-it": { + "version": "11.0.0", + "resolved": "https://npm-8ee.hidora.com/markdown-it/-/markdown-it-11.0.0.tgz", + "integrity": "sha512-+CvOnmbSubmQFSA9dKz1BRiaSMV7rhexl3sngKqFyXSagoA3fBdJQ8oZWtRy2knXdpDXaBw44euz37DeJQ9asg==", + "requires": { + "argparse": "^1.0.7", + "entities": "~2.0.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + } + }, + "markdown-it-abbr": { + "version": "1.0.4", + "resolved": "https://npm-8ee.hidora.com/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz", + "integrity": "sha1-1mtTZFIcuz3Yqlna37ovtoZcj9g=" + }, + "markdown-it-container": { + "version": "3.0.0", + "resolved": "https://npm-8ee.hidora.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz", + "integrity": "sha512-y6oKTq4BB9OQuY/KLfk/O3ysFhB3IMYoIWhGJEidXt1NQFocFK2sA2t0NYZAMyMShAGL6x5OPIbrmXPIqaN9rw==" + }, + "markdown-it-deflist": { + "version": "2.0.3", + "resolved": "https://npm-8ee.hidora.com/markdown-it-deflist/-/markdown-it-deflist-2.0.3.tgz", + "integrity": "sha512-/BNZ8ksW42bflm1qQLnRI09oqU2847Z7MVavrR0MORyKLtiUYOMpwtlAfMSZAQU9UCvaUZMpgVAqoS3vpToJxw==" + }, + "markdown-it-emoji": { + "version": "1.4.0", + "resolved": "https://npm-8ee.hidora.com/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz", + "integrity": "sha1-m+4OmpkKljupbfaYDE/dsF37Tcw=" + }, + "markdown-it-footnote": { + "version": "3.0.2", + "resolved": "https://npm-8ee.hidora.com/markdown-it-footnote/-/markdown-it-footnote-3.0.2.tgz", + "integrity": "sha512-JVW6fCmZWjvMdDQSbOT3nnOQtd9iAXmw7hTSh26+v42BnvXeVyGMDBm5b/EZocMed2MbCAHiTX632vY0FyGB8A==" + }, + "markdown-it-ins": { + "version": "3.0.0", + "resolved": "https://npm-8ee.hidora.com/markdown-it-ins/-/markdown-it-ins-3.0.0.tgz", + "integrity": "sha512-+vyAdBuMGwmT2yMlAFJSx2VR/0QZ1onQ/Mkkmr4l9tDFOh5sVoAgRbkgbuSsk+sxJ9vaMH/IQ323ydfvQrPO/Q==" + }, + "markdown-it-mark": { + "version": "3.0.0", + "resolved": "https://npm-8ee.hidora.com/markdown-it-mark/-/markdown-it-mark-3.0.0.tgz", + "integrity": "sha512-HqMWeKfMMOu4zBO0emmxsoMWmbf2cPKZY1wP6FsTbKmicFfp5y4L3KXAsNeO1rM6NTJVOrNlLKMPjWzriBGspw==" + }, + "markdown-it-sub": { + "version": "1.0.0", + "resolved": "https://npm-8ee.hidora.com/markdown-it-sub/-/markdown-it-sub-1.0.0.tgz", + "integrity": "sha1-N1/WAm6ufdywEkl/ZBEZXqHjr+g=" + }, + "markdown-it-sup": { + "version": "1.0.0", + "resolved": "https://npm-8ee.hidora.com/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz", + "integrity": "sha1-y5yf+RpSVawI8/09YyhuFd8KH8M=" + }, "match-sorter": { "version": "4.2.0", "resolved": "https://npm-8ee.hidora.com/match-sorter/-/match-sorter-4.2.0.tgz",

@@ -6729,6 +6852,11 @@ "inherits": "^2.0.1",

"safe-buffer": "^5.1.2" } }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://npm-8ee.hidora.com/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + }, "media-typer": { "version": "0.3.0", "resolved": "https://npm-8ee.hidora.com/media-typer/-/media-typer-0.3.0.tgz",

@@ -6902,12 +7030,12 @@ "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="

}, "mimic-response": { "version": "2.1.0", - "resolved": "https://npm-8ee.hidora.com/mimic-response/-/mimic-response-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==" }, "mini-create-react-context": { "version": "0.4.0", - "resolved": "https://npm-8ee.hidora.com/mini-create-react-context/-/mini-create-react-context-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.0.tgz", "integrity": "sha512-b0TytUgFSbgFJGzJqXPKCFCBWigAjpjo+Fl7Vf7ZbKRDptszpppKxXH6DRXEABZ/gcEQczeb0iZ7JvL8e8jjCA==", "requires": { "@babel/runtime": "^7.5.5",

@@ -6949,7 +7077,7 @@ "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo="

}, "minimatch": { "version": "3.0.4", - "resolved": "https://npm-8ee.hidora.com/minimatch/-/minimatch-3.0.4.tgz", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "requires": { "brace-expansion": "^1.1.7"

@@ -6957,12 +7085,12 @@ }

}, "minimist": { "version": "1.2.5", - "resolved": "https://npm-8ee.hidora.com/minimist/-/minimist-1.2.5.tgz", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" }, "minipass": { "version": "3.1.3", - "resolved": "https://npm-8ee.hidora.com/minipass/-/minipass-3.1.3.tgz", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", "requires": { "yallist": "^4.0.0"

@@ -6970,7 +7098,7 @@ },

"dependencies": { "yallist": { "version": "4.0.0", - "resolved": "https://npm-8ee.hidora.com/yallist/-/yallist-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } }

@@ -7029,7 +7157,7 @@ }

}, "mkdirp": { "version": "0.5.5", - "resolved": "https://npm-8ee.hidora.com/mkdirp/-/mkdirp-0.5.5.tgz", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", "requires": { "minimist": "^1.2.5"

@@ -7037,12 +7165,12 @@ }

}, "mkdirp-classic": { "version": "0.5.3", - "resolved": "https://npm-8ee.hidora.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "moment": { "version": "2.27.0", - "resolved": "https://npm-8ee.hidora.com/moment/-/moment-2.27.0.tgz", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.27.0.tgz", "integrity": "sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ==" }, "moment-timezone": {

@@ -7086,6 +7214,11 @@ "ms": {

"version": "2.1.2", "resolved": "https://npm-8ee.hidora.com/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "sift": { + "version": "7.0.1", + "resolved": "https://npm-8ee.hidora.com/sift/-/sift-7.0.1.tgz", + "integrity": "sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g==" } } },

@@ -7177,7 +7310,7 @@ }

}, "nan": { "version": "2.14.1", - "resolved": "https://npm-8ee.hidora.com/nan/-/nan-2.14.1.tgz", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz", "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==" }, "nanomatch": {

@@ -7200,12 +7333,12 @@ }

}, "napi-build-utils": { "version": "1.0.2", - "resolved": "https://npm-8ee.hidora.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" }, "natural-compare": { "version": "1.4.0", - "resolved": "https://npm-8ee.hidora.com/natural-compare/-/natural-compare-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true },

@@ -7234,7 +7367,7 @@ }

}, "node-abi": { "version": "2.18.0", - "resolved": "https://npm-8ee.hidora.com/node-abi/-/node-abi-2.18.0.tgz", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.18.0.tgz", "integrity": "sha512-yi05ZoiuNNEbyT/xXfSySZE+yVnQW6fxPZuFbLyS1s6b5Kw3HzV2PHOM4XR+nsjzkHxByK+2Wg+yCQbe35l8dw==", "requires": { "semver": "^5.4.1"

@@ -7242,7 +7375,7 @@ }

}, "node-fetch": { "version": "2.6.0", - "resolved": "https://npm-8ee.hidora.com/node-fetch/-/node-fetch-2.6.0.tgz", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==" }, "node-forge": {

@@ -7324,7 +7457,7 @@ }

}, "noop-logger": { "version": "0.1.1", - "resolved": "https://npm-8ee.hidora.com/noop-logger/-/noop-logger-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz", "integrity": "sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI=" }, "normalize-path": {

@@ -7357,7 +7490,7 @@ }

}, "npmlog": { "version": "4.1.2", - "resolved": "https://npm-8ee.hidora.com/npmlog/-/npmlog-4.1.2.tgz", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", "requires": { "are-we-there-yet": "~1.1.2",

@@ -7381,7 +7514,7 @@ "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4="

}, "number-is-nan": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/number-is-nan/-/number-is-nan-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" }, "oauth-sign": {

@@ -7391,7 +7524,7 @@ "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="

}, "object-assign": { "version": "4.1.1", - "resolved": "https://npm-8ee.hidora.com/object-assign/-/object-assign-4.1.1.tgz", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, "object-copy": {

@@ -7424,12 +7557,12 @@ }

}, "object-inspect": { "version": "1.8.0", - "resolved": "https://npm-8ee.hidora.com/object-inspect/-/object-inspect-1.8.0.tgz", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==" }, "object-is": { "version": "1.1.2", - "resolved": "https://npm-8ee.hidora.com/object-is/-/object-is-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.2.tgz", "integrity": "sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ==", "requires": { "define-properties": "^1.1.3",

@@ -7438,7 +7571,7 @@ }

}, "object-keys": { "version": "1.1.1", - "resolved": "https://npm-8ee.hidora.com/object-keys/-/object-keys-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object-visit": {

@@ -7451,7 +7584,7 @@ }

}, "object.assign": { "version": "4.1.0", - "resolved": "https://npm-8ee.hidora.com/object.assign/-/object.assign-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", "requires": { "define-properties": "^1.1.2",

@@ -7462,7 +7595,7 @@ }

}, "object.entries": { "version": "1.1.2", - "resolved": "https://npm-8ee.hidora.com/object.entries/-/object.entries-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.2.tgz", "integrity": "sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==", "requires": { "define-properties": "^1.1.3",

@@ -7489,7 +7622,7 @@ }

}, "object.values": { "version": "1.1.1", - "resolved": "https://npm-8ee.hidora.com/object.values/-/object.values-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz", "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==", "requires": { "define-properties": "^1.1.3",

@@ -7518,7 +7651,7 @@ "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="

}, "once": { "version": "1.4.0", - "resolved": "https://npm-8ee.hidora.com/once/-/once-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { "wrappy": "1"

@@ -7547,7 +7680,7 @@ }

}, "optionator": { "version": "0.9.1", - "resolved": "https://npm-8ee.hidora.com/optionator/-/optionator-0.9.1.tgz", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "requires": {

@@ -7627,9 +7760,12 @@ "p-limit": "^2.0.0"

} }, "p-map": { - "version": "2.1.0", - "resolved": "https://npm-8ee.hidora.com/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + "version": "4.0.0", + "resolved": "https://npm-8ee.hidora.com/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "requires": { + "aggregate-error": "^3.0.0" + } }, "p-retry": { "version": "3.0.1",

@@ -7669,7 +7805,7 @@ }

}, "parent-module": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/parent-module/-/parent-module-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "requires": { "callsites": "^3.0.0"

@@ -7702,14 +7838,6 @@ "parse-passwd": {

"version": "1.0.0", "resolved": "https://npm-8ee.hidora.com/parse-passwd/-/parse-passwd-1.0.0.tgz", "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" - }, - "parse5": { - "version": "3.0.3", - "resolved": "https://npm-8ee.hidora.com/parse5/-/parse5-3.0.3.tgz", - "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", - "requires": { - "@types/node": "*" - } }, "parseurl": { "version": "1.3.3",

@@ -7721,6 +7849,28 @@ "version": "0.1.1",

"resolved": "https://npm-8ee.hidora.com/pascalcase/-/pascalcase-0.1.1.tgz", "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" }, + "passport": { + "version": "0.4.1", + "resolved": "https://npm-8ee.hidora.com/passport/-/passport-0.4.1.tgz", + "integrity": "sha512-IxXgZZs8d7uFSt3eqNjM9NQ3g3uQCW5avD8mRNoXV99Yig50vjuaez6dQK2qC0kVWPRTujxY0dWgGfT09adjYg==", + "requires": { + "passport-strategy": "1.x.x", + "pause": "0.0.1" + } + }, + "passport-local": { + "version": "1.0.0", + "resolved": "https://npm-8ee.hidora.com/passport-local/-/passport-local-1.0.0.tgz", + "integrity": "sha1-H+YyaMkudWBmJkN+O5BmYsFbpu4=", + "requires": { + "passport-strategy": "1.x.x" + } + }, + "passport-strategy": { + "version": "1.0.0", + "resolved": "https://npm-8ee.hidora.com/passport-strategy/-/passport-strategy-1.0.0.tgz", + "integrity": "sha1-tVOaqPwiWj0a0XlHbd8ja0QPUuQ=" + }, "path-browserify": { "version": "0.0.1", "resolved": "https://npm-8ee.hidora.com/path-browserify/-/path-browserify-0.0.1.tgz",

@@ -7738,7 +7888,7 @@ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU="

}, "path-is-absolute": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "path-is-inside": {

@@ -7753,12 +7903,12 @@ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A="

}, "path-parse": { "version": "1.0.6", - "resolved": "https://npm-8ee.hidora.com/path-parse/-/path-parse-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" }, "path-to-regexp": { "version": "1.8.0", - "resolved": "https://npm-8ee.hidora.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", "requires": { "isarray": "0.0.1"

@@ -7768,6 +7918,11 @@ "path-type": {

"version": "4.0.0", "resolved": "https://npm-8ee.hidora.com/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "pause": { + "version": "0.0.1", + "resolved": "https://npm-8ee.hidora.com/pause/-/pause-0.0.1.tgz", + "integrity": "sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10=" }, "pbkdf2": { "version": "3.1.1",

@@ -7783,7 +7938,7 @@ }

}, "performance-now": { "version": "2.1.0", - "resolved": "https://npm-8ee.hidora.com/performance-now/-/performance-now-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" }, "picomatch": {

@@ -7811,7 +7966,7 @@ }

}, "pino": { "version": "4.17.6", - "resolved": "https://npm-8ee.hidora.com/pino/-/pino-4.17.6.tgz", + "resolved": "https://registry.npmjs.org/pino/-/pino-4.17.6.tgz", "integrity": "sha512-LFDwmhyWLBnmwO/2UFbWu1jEGVDzaPupaVdx0XcZ3tIAx1EDEBauzxXf2S0UcFK7oe+X9MApjH0hx9U1XMgfCA==", "requires": { "chalk": "^2.4.1",

@@ -7839,12 +7994,12 @@ }

}, "pluralize": { "version": "7.0.0", - "resolved": "https://npm-8ee.hidora.com/pluralize/-/pluralize-7.0.0.tgz", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==" }, "popper.js": { "version": "1.16.1", - "resolved": "https://npm-8ee.hidora.com/popper.js/-/popper.js-1.16.1.tgz", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" }, "portfinder": {

@@ -7957,12 +8112,12 @@ }

}, "postcss-value-parser": { "version": "4.1.0", - "resolved": "https://npm-8ee.hidora.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" }, "prebuild-install": { "version": "5.3.5", - "resolved": "https://npm-8ee.hidora.com/prebuild-install/-/prebuild-install-5.3.5.tgz", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.5.tgz", "integrity": "sha512-YmMO7dph9CYKi5IR/BzjOJlRzpxGGVo1EsLSUZ0mt/Mq0HWZIHOKHHcHdT69yG54C9m6i45GpItwRHpk0Py7Uw==", "requires": { "detect-libc": "^1.0.3",

@@ -7984,7 +8139,7 @@ }

}, "prelude-ls": { "version": "1.2.1", - "resolved": "https://npm-8ee.hidora.com/prelude-ls/-/prelude-ls-1.2.1.tgz", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true },

@@ -8019,12 +8174,12 @@ "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="

}, "process-nextick-args": { "version": "2.0.1", - "resolved": "https://npm-8ee.hidora.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "progress": { "version": "2.0.3", - "resolved": "https://npm-8ee.hidora.com/progress/-/progress-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true },

@@ -8052,7 +8207,7 @@ }

}, "prop-types": { "version": "15.7.2", - "resolved": "https://npm-8ee.hidora.com/prop-types/-/prop-types-15.7.2.tgz", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", "requires": { "loose-envify": "^1.4.0",

@@ -8062,7 +8217,7 @@ }

}, "prop-types-exact": { "version": "1.2.0", - "resolved": "https://npm-8ee.hidora.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz", "integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==", "requires": { "has": "^1.0.3",

@@ -8072,7 +8227,7 @@ }

}, "property-expr": { "version": "1.5.1", - "resolved": "https://npm-8ee.hidora.com/property-expr/-/property-expr-1.5.1.tgz", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-1.5.1.tgz", "integrity": "sha512-CGuc0VUTGthpJXL36ydB6jnbyOf/rAHFvmVrJlH+Rg0DqqLFQGAP6hIaxD/G0OAmBJPhXDHuEJigrp0e0wFV6g==" }, "proxy-addr": {

@@ -8116,7 +8271,7 @@ }

}, "pump": { "version": "3.0.0", - "resolved": "https://npm-8ee.hidora.com/pump/-/pump-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "requires": { "end-of-stream": "^1.1.0",

@@ -8146,7 +8301,7 @@ }

}, "punycode": { "version": "2.1.1", - "resolved": "https://npm-8ee.hidora.com/punycode/-/punycode-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, "purest": {

@@ -8191,7 +8346,7 @@ "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="

}, "quick-format-unescaped": { "version": "1.1.2", - "resolved": "https://npm-8ee.hidora.com/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz", "integrity": "sha1-DKWB3jF0vs7yWsPC6JVjQjgdtpg=", "requires": { "fast-safe-stringify": "^1.0.8"

@@ -8199,7 +8354,7 @@ }

}, "raf": { "version": "3.4.1", - "resolved": "https://npm-8ee.hidora.com/raf/-/raf-3.4.1.tgz", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "requires": { "performance-now": "^2.1.0"

@@ -8254,7 +8409,7 @@ }

}, "rc": { "version": "1.2.8", - "resolved": "https://npm-8ee.hidora.com/rc/-/rc-1.2.8.tgz", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "requires": { "deep-extend": "^0.6.0",

@@ -8265,7 +8420,7 @@ }

}, "rc-input-number": { "version": "4.6.3", - "resolved": "https://npm-8ee.hidora.com/rc-input-number/-/rc-input-number-4.6.3.tgz", + "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-4.6.3.tgz", "integrity": "sha512-eTNIC16/Jvy6cr153BxUH0Ni0QEzz3x4qQNNd4uqBLjhGDwq4i1nj6nuRgJWgPjr3GQYJMY7gjs3AYF6shd8PA==", "requires": { "classnames": "^2.2.0",

@@ -8274,7 +8429,7 @@ }

}, "rc-util": { "version": "4.21.1", - "resolved": "https://npm-8ee.hidora.com/rc-util/-/rc-util-4.21.1.tgz", + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-4.21.1.tgz", "integrity": "sha512-Z+vlkSQVc1l8O2UjR3WQ+XdWlhj5q9BMQNLk2iOBch75CqPfrJyGtcWMcnhRlNuDu0Ndtt4kLVO8JI8BrABobg==", "requires": { "add-dom-event-listener": "^1.1.0",

@@ -8286,7 +8441,7 @@ }

}, "react": { "version": "16.13.1", - "resolved": "https://npm-8ee.hidora.com/react/-/react-16.13.1.tgz", + "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz", "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==", "requires": { "loose-envify": "^1.1.0",

@@ -8296,7 +8451,7 @@ }

}, "react-copy-to-clipboard": { "version": "5.0.2", - "resolved": "https://npm-8ee.hidora.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.2.tgz", + "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.2.tgz", "integrity": "sha512-/2t5mLMMPuN5GmdXo6TebFa8IoFxZ+KTDDqYhcDm0PhkgEzSxVvIX26G20s1EB02A4h2UZgwtfymZ3lGJm0OLg==", "requires": { "copy-to-clipboard": "^3",

@@ -8305,7 +8460,7 @@ }

}, "react-dates": { "version": "21.8.0", - "resolved": "https://npm-8ee.hidora.com/react-dates/-/react-dates-21.8.0.tgz", + "resolved": "https://registry.npmjs.org/react-dates/-/react-dates-21.8.0.tgz", "integrity": "sha512-PPriGqi30CtzZmoHiGdhlA++YPYPYGCZrhydYmXXQ6RAvAsaONcPtYgXRTLozIOrsQ5mSo40+DiA5eOFHnZ6xw==", "requires": { "airbnb-prop-types": "^2.15.0",

@@ -8346,7 +8501,7 @@ }

}, "react-dom": { "version": "16.13.1", - "resolved": "https://npm-8ee.hidora.com/react-dom/-/react-dom-16.13.1.tgz", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.1.tgz", "integrity": "sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==", "requires": { "loose-envify": "^1.1.0",

@@ -8381,7 +8536,7 @@ }

}, "react-intl": { "version": "4.5.0", - "resolved": "https://npm-8ee.hidora.com/react-intl/-/react-intl-4.5.0.tgz", + "resolved": "https://registry.npmjs.org/react-intl/-/react-intl-4.5.0.tgz", "integrity": "sha512-CQuFR9vjUYOjzxsm7KaVRdM4hKOyMNY2ejvniZCbz3Ni3jMbjfTgcXYmxqYBn0lenMaFg3G2ol7HKkoy2YSXlQ==", "requires": { "@formatjs/intl-displaynames": "^1.2.5",

@@ -8400,12 +8555,12 @@ }

}, "react-is": { "version": "16.13.1", - "resolved": "https://npm-8ee.hidora.com/react-is/-/react-is-16.13.1.tgz", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, "react-lifecycles-compat": { "version": "3.0.4", - "resolved": "https://npm-8ee.hidora.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" }, "react-loadable": {

@@ -8418,7 +8573,7 @@ }

}, "react-moment-proptypes": { "version": "1.7.0", - "resolved": "https://npm-8ee.hidora.com/react-moment-proptypes/-/react-moment-proptypes-1.7.0.tgz", + "resolved": "https://registry.npmjs.org/react-moment-proptypes/-/react-moment-proptypes-1.7.0.tgz", "integrity": "sha512-ZbOn/P4u469WEGAw5hgkS/E+g1YZqdves2BjYsLluJobzUZCtManhjHiZKjniBVT7MSHM6D/iKtRVzlXVv3ikA==", "requires": { "moment": ">=1.6.0"

@@ -8426,7 +8581,7 @@ }

}, "react-outside-click-handler": { "version": "1.3.0", - "resolved": "https://npm-8ee.hidora.com/react-outside-click-handler/-/react-outside-click-handler-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/react-outside-click-handler/-/react-outside-click-handler-1.3.0.tgz", "integrity": "sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==", "requires": { "airbnb-prop-types": "^2.15.0",

@@ -8438,7 +8593,7 @@ }

}, "react-popper": { "version": "1.3.7", - "resolved": "https://npm-8ee.hidora.com/react-popper/-/react-popper-1.3.7.tgz", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.7.tgz", "integrity": "sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww==", "requires": { "@babel/runtime": "^7.1.2",

@@ -8452,7 +8607,7 @@ },

"dependencies": { "deep-equal": { "version": "1.1.1", - "resolved": "https://npm-8ee.hidora.com/deep-equal/-/deep-equal-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", "requires": { "is-arguments": "^1.0.4",

@@ -8467,7 +8622,7 @@ }

}, "react-portal": { "version": "4.2.1", - "resolved": "https://npm-8ee.hidora.com/react-portal/-/react-portal-4.2.1.tgz", + "resolved": "https://registry.npmjs.org/react-portal/-/react-portal-4.2.1.tgz", "integrity": "sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==", "requires": { "prop-types": "^15.5.8"

@@ -8475,7 +8630,7 @@ }

}, "react-redux": { "version": "7.2.0", - "resolved": "https://npm-8ee.hidora.com/react-redux/-/react-redux-7.2.0.tgz", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.0.tgz", "integrity": "sha512-EvCAZYGfOLqwV7gh849xy9/pt55rJXPwmYvI4lilPM5rUT/1NxuuN59ipdBksRVSvz0KInbPnp4IfoXJXCqiDA==", "requires": { "@babel/runtime": "^7.5.5",

@@ -8487,7 +8642,7 @@ }

}, "react-router": { "version": "5.2.0", - "resolved": "https://npm-8ee.hidora.com/react-router/-/react-router-5.2.0.tgz", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz", "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==", "requires": { "@babel/runtime": "^7.1.2",

@@ -8504,7 +8659,7 @@ }

}, "react-router-dom": { "version": "5.2.0", - "resolved": "https://npm-8ee.hidora.com/react-router-dom/-/react-router-dom-5.2.0.tgz", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz", "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==", "requires": { "@babel/runtime": "^7.1.2",

@@ -8562,7 +8717,7 @@ }

}, "react-with-direction": { "version": "1.3.1", - "resolved": "https://npm-8ee.hidora.com/react-with-direction/-/react-with-direction-1.3.1.tgz", + "resolved": "https://registry.npmjs.org/react-with-direction/-/react-with-direction-1.3.1.tgz", "integrity": "sha512-aGcM21ZzhqeXFvDCfPj0rVNYuaVXfTz5D3Rbn0QMz/unZe+CCiLHthrjQWO7s6qdfXORgYFtmS7OVsRgSk5LXQ==", "requires": { "airbnb-prop-types": "^2.10.0",

@@ -8577,7 +8732,7 @@ }

}, "react-with-styles": { "version": "4.1.0", - "resolved": "https://npm-8ee.hidora.com/react-with-styles/-/react-with-styles-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/react-with-styles/-/react-with-styles-4.1.0.tgz", "integrity": "sha512-zp05fyA6XFetqr07ox/a0bCFyEj//gUozI9cC1GW59zaGJ38STnxYvzotutgpzMyHOd7TFW9ZiZeBKjsYaS+RQ==", "requires": { "airbnb-prop-types": "^2.14.0",

@@ -8589,7 +8744,7 @@ }

}, "react-with-styles-interface-css": { "version": "6.0.0", - "resolved": "https://npm-8ee.hidora.com/react-with-styles-interface-css/-/react-with-styles-interface-css-6.0.0.tgz", + "resolved": "https://registry.npmjs.org/react-with-styles-interface-css/-/react-with-styles-interface-css-6.0.0.tgz", "integrity": "sha512-6khSG1Trf4L/uXOge/ZAlBnq2O2PEXlQEqAhCRbvzaQU4sksIkdwpCPEl6d+DtP3+IdhyffTWuHDO9lhe1iYvA==", "requires": { "array.prototype.flat": "^1.2.1",

@@ -8598,7 +8753,7 @@ }

}, "reactstrap": { "version": "8.4.1", - "resolved": "https://npm-8ee.hidora.com/reactstrap/-/reactstrap-8.4.1.tgz", + "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-8.4.1.tgz", "integrity": "sha512-oAjp9PYYUGKl7SLXwrQ1oRIrYw0MqfO2mUqYgGapFKHG2uwjEtLip5rYxtMujkGx3COjH5FX1WtcfNU4oqpH0Q==", "requires": { "@babel/runtime": "^7.2.0",

@@ -8611,7 +8766,7 @@ },

"dependencies": { "dom-helpers": { "version": "3.4.0", - "resolved": "https://npm-8ee.hidora.com/dom-helpers/-/dom-helpers-3.4.0.tgz", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", "requires": { "@babel/runtime": "^7.1.2"

@@ -8619,7 +8774,7 @@ }

}, "react-transition-group": { "version": "2.9.0", - "resolved": "https://npm-8ee.hidora.com/react-transition-group/-/react-transition-group-2.9.0.tgz", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", "requires": { "dom-helpers": "^3.4.0",

@@ -8632,7 +8787,7 @@ }

}, "readable-stream": { "version": "2.3.7", - "resolved": "https://npm-8ee.hidora.com/readable-stream/-/readable-stream-2.3.7.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "requires": { "core-util-is": "~1.0.0",

@@ -8646,7 +8801,7 @@ },

"dependencies": { "isarray": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/isarray/-/isarray-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" } }

@@ -8672,7 +8827,7 @@ }

}, "rechoir": { "version": "0.6.2", - "resolved": "https://npm-8ee.hidora.com/rechoir/-/rechoir-0.6.2.tgz", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", "requires": { "resolve": "^1.1.6"

@@ -8728,7 +8883,7 @@ "integrity": "sha512-iIjKnRThI5sKPEASpUvySemjzwqwI13e3qP7oLub+FycCRDysLSAOwt958niZW6LhxfmS6Qm1BzbU70w/Koc4w=="

}, "reflect.ownkeys": { "version": "0.2.0", - "resolved": "https://npm-8ee.hidora.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz", + "resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz", "integrity": "sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=" }, "regenerate": {

@@ -8773,7 +8928,7 @@ "integrity": "sha512-TuAasHQNamyyJ2hb97IuBEif4qBHGjPHBS64sZwytpLEqtBQ1gPJTnOaQ6qmpET16cK14kkjbazl6+p0RRv0yw=="

}, "regexp.prototype.flags": { "version": "1.3.0", - "resolved": "https://npm-8ee.hidora.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", "requires": { "define-properties": "^1.1.3",

@@ -8782,7 +8937,7 @@ }

}, "regexpp": { "version": "3.1.0", - "resolved": "https://npm-8ee.hidora.com/regexpp/-/regexpp-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", "dev": true },

@@ -8972,7 +9127,7 @@ "integrity": "sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA=="

}, "resolve": { "version": "1.17.0", - "resolved": "https://npm-8ee.hidora.com/resolve/-/resolve-1.17.0.tgz", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", "requires": { "path-parse": "^1.0.6"

@@ -9014,7 +9169,7 @@ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="

}, "resolve-path": { "version": "1.4.0", - "resolved": "https://npm-8ee.hidora.com/resolve-path/-/resolve-path-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz", "integrity": "sha1-xL2p9e+y/OZSR4c6s2u02DT+Fvc=", "requires": { "http-errors": "~1.6.2",

@@ -9023,7 +9178,7 @@ },

"dependencies": { "http-errors": { "version": "1.6.3", - "resolved": "https://npm-8ee.hidora.com/http-errors/-/http-errors-1.6.3.tgz", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", "requires": { "depd": "~1.1.2",

@@ -9034,19 +9189,19 @@ }

}, "inherits": { "version": "2.0.3", - "resolved": "https://npm-8ee.hidora.com/inherits/-/inherits-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" }, "setprototypeof": { "version": "1.1.0", - "resolved": "https://npm-8ee.hidora.com/setprototypeof/-/setprototypeof-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" } } }, "resolve-pathname": { "version": "3.0.0", - "resolved": "https://npm-8ee.hidora.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" }, "resolve-url": {

@@ -9121,7 +9276,7 @@ }

}, "safe-buffer": { "version": "5.1.2", - "resolved": "https://npm-8ee.hidora.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "safe-regex": {

@@ -9153,7 +9308,7 @@ }

}, "scheduler": { "version": "0.19.1", - "resolved": "https://npm-8ee.hidora.com/scheduler/-/scheduler-0.19.1.tgz", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", "requires": { "loose-envify": "^1.1.0",

@@ -9185,7 +9340,7 @@ }

}, "semver": { "version": "5.7.1", - "resolved": "https://npm-8ee.hidora.com/semver/-/semver-5.7.1.tgz", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" }, "send": {

@@ -9360,7 +9515,7 @@ }

}, "set-blocking": { "version": "2.0.0", - "resolved": "https://npm-8ee.hidora.com/set-blocking/-/set-blocking-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" }, "set-value": {

@@ -9405,17 +9560,17 @@ }

}, "shallow-equal": { "version": "1.2.1", - "resolved": "https://npm-8ee.hidora.com/shallow-equal/-/shallow-equal-1.2.1.tgz", + "resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz", "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" }, "shallowequal": { "version": "1.1.0", - "resolved": "https://npm-8ee.hidora.com/shallowequal/-/shallowequal-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" }, "sharp": { "version": "0.24.1", - "resolved": "https://npm-8ee.hidora.com/sharp/-/sharp-0.24.1.tgz", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.24.1.tgz", "integrity": "sha512-1Lph6o7D6bU8WrcbG/kT7cVzi2UBi2xrrBfS/WUaD+ZcGd4MZ7+LbtFoGwbMVJH95d5aziBGyExYF4Urm2pjOQ==", "requires": { "color": "^3.1.2",

@@ -9431,7 +9586,7 @@ },

"dependencies": { "semver": { "version": "7.3.2", - "resolved": "https://npm-8ee.hidora.com/semver/-/semver-7.3.2.tgz", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" } }

@@ -9451,7 +9606,7 @@ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="

}, "shelljs": { "version": "0.8.4", - "resolved": "https://npm-8ee.hidora.com/shelljs/-/shelljs-0.8.4.tgz", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", "requires": { "glob": "^7.0.0",

@@ -9464,74 +9619,14 @@ "version": "1.2.1",

"resolved": "https://npm-8ee.hidora.com/shimmer/-/shimmer-1.2.1.tgz", "integrity": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==" }, - "showdown": { - "version": "1.9.1", - "resolved": "https://npm-8ee.hidora.com/showdown/-/showdown-1.9.1.tgz", - "integrity": "sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA==", - "requires": { - "yargs": "^14.2" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://npm-8ee.hidora.com/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://npm-8ee.hidora.com/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://npm-8ee.hidora.com/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "requires": { - "ansi-regex": "^4.1.0" - } - }, - "yargs": { - "version": "14.2.3", - "resolved": "https://npm-8ee.hidora.com/yargs/-/yargs-14.2.3.tgz", - "integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==", - "requires": { - "cliui": "^5.0.0", - "decamelize": "^1.2.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^15.0.1" - } - }, - "yargs-parser": { - "version": "15.0.1", - "resolved": "https://npm-8ee.hidora.com/yargs-parser/-/yargs-parser-15.0.1.tgz", - "integrity": "sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } - }, "sift": { - "version": "7.0.1", - "resolved": "https://npm-8ee.hidora.com/sift/-/sift-7.0.1.tgz", - "integrity": "sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g==" + "version": "13.1.10", + "resolved": "https://npm-8ee.hidora.com/sift/-/sift-13.1.10.tgz", + "integrity": "sha512-Z+7ZMTbnmbuVCwER+8jNerXpuJNYsxFSZf1er8VUqF/qYdgTrG5o5TQ7C6nWDycQY/TA1pczVCj58y5RvrUtrA==" }, "signal-exit": { "version": "3.0.3", - "resolved": "https://npm-8ee.hidora.com/signal-exit/-/signal-exit-3.0.3.tgz", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" }, "simple-concat": {

@@ -9541,7 +9636,7 @@ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="

}, "simple-get": { "version": "3.1.0", - "resolved": "https://npm-8ee.hidora.com/simple-get/-/simple-get-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", "requires": { "decompress-response": "^4.2.0",

@@ -9551,7 +9646,7 @@ }

}, "simple-swizzle": { "version": "0.2.2", - "resolved": "https://npm-8ee.hidora.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", "requires": { "is-arrayish": "^0.3.1"

@@ -9559,14 +9654,14 @@ },

"dependencies": { "is-arrayish": { "version": "0.3.2", - "resolved": "https://npm-8ee.hidora.com/is-arrayish/-/is-arrayish-0.3.2.tgz", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" } } }, "slice-ansi": { "version": "2.1.0", - "resolved": "https://npm-8ee.hidora.com/slice-ansi/-/slice-ansi-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", "dev": true, "requires": {

@@ -9751,7 +9846,7 @@ "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw=="

}, "source-map": { "version": "0.5.7", - "resolved": "https://npm-8ee.hidora.com/source-map/-/source-map-0.5.7.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" }, "source-map-resolve": {

@@ -9871,7 +9966,7 @@ }

}, "split2": { "version": "2.2.0", - "resolved": "https://npm-8ee.hidora.com/split2/-/split2-2.2.0.tgz", + "resolved": "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz", "integrity": "sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==", "requires": { "through2": "^2.0.2"

@@ -9932,7 +10027,7 @@ }

}, "statuses": { "version": "1.5.0", - "resolved": "https://npm-8ee.hidora.com/statuses/-/statuses-1.5.0.tgz", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" }, "std-env": {

@@ -9951,9 +10046,9 @@ }

} }, "strapi": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi/-/strapi-3.0.5.tgz", - "integrity": "sha512-F5T0uT4KlIOs4Z1nNaiKpuSgtIHBOtbHCRFnc2AY9zZWT7Wfa1onfY/54d4irsiyQpVqzHz02gIL7kKF2xLUUw==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi/-/strapi-3.1.4.tgz", + "integrity": "sha512-ciEgMRraogRw/GBEpCC0KAQ0SZ+K6N/DrfjJMOM8ELltW0BcAnpVCSI+pN4JQ7h2c2Z99mhkF/lQGngAEtR07w==", "requires": { "@koa/cors": "^3.0.0", "async": "^2.1.2",

@@ -9983,9 +10078,9 @@ "koa-ip": "^2.0.0",

"koa-locale": "~1.3.0", "koa-lusca": "~2.2.0", "koa-router": "^7.4.0", - "koa-session": "^5.12.0", + "koa-session": "^6.0.0", "koa-static": "^5.0.0", - "lodash": "^4.17.5", + "lodash": "4.17.19", "node-fetch": "2.6.0", "node-machine-id": "1.1.12", "node-schedule": "1.3.2",

@@ -9994,17 +10089,16 @@ "ora": "^3.0.0",

"qs": "^6.9.3", "resolve-cwd": "^3.0.0", "rimraf": "^2.6.2", - "shelljs": "^0.8.3", - "strapi-database": "3.0.5", - "strapi-generate": "3.0.5", - "strapi-generate-api": "3.0.5", - "strapi-generate-controller": "3.0.5", - "strapi-generate-model": "3.0.5", - "strapi-generate-new": "3.0.5", - "strapi-generate-plugin": "3.0.5", - "strapi-generate-policy": "3.0.5", - "strapi-generate-service": "3.0.5", - "strapi-utils": "3.0.5" + "strapi-database": "3.1.4", + "strapi-generate": "3.1.4", + "strapi-generate-api": "3.1.4", + "strapi-generate-controller": "3.1.4", + "strapi-generate-model": "3.1.4", + "strapi-generate-new": "3.1.4", + "strapi-generate-plugin": "3.1.4", + "strapi-generate-policy": "3.1.4", + "strapi-generate-service": "3.1.4", + "strapi-utils": "3.1.4" }, "dependencies": { "debug": {

@@ -10014,6 +10108,11 @@ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",

"requires": { "ms": "^2.1.1" } + }, + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" }, "ms": { "version": "2.1.2",

@@ -10023,9 +10122,9 @@ }

} }, "strapi-admin": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-admin/-/strapi-admin-3.0.5.tgz", - "integrity": "sha512-3om11BvQ2vu2IeJy+IRP8H0bBr3wo/iXNnlRTWIxVSE71go3WSG09j6+c0kTReOI+S8OZukzDHm8+F4OTFMqvg==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-admin/-/strapi-admin-3.1.4.tgz", + "integrity": "sha512-k332VrY46aFxJuKeiRN/giq2DQjPJ+gv18hdQItc8+jwIGfrAOQ7j9Quq2QSswcg9XEyTOJlW6qU85RAyo5quA==", "requires": { "@babel/core": "^7.9.0", "@babel/plugin-proposal-async-generator-functions": "^7.2.0",

@@ -10037,18 +10136,19 @@ "@babel/polyfill": "^7.8.7",

"@babel/preset-env": "^7.9.5", "@babel/preset-react": "^7.9.4", "@babel/runtime": "^7.9.2", - "@buffetjs/core": "3.1.1", - "@buffetjs/custom": "3.1.1", - "@buffetjs/hooks": "3.1.1", - "@buffetjs/icons": "3.1.1", - "@buffetjs/styles": "3.1.1", - "@buffetjs/utils": "3.1.1", + "@buffetjs/core": "3.2.1", + "@buffetjs/custom": "3.2.1", + "@buffetjs/hooks": "3.2.1", + "@buffetjs/icons": "3.2.1", + "@buffetjs/styles": "3.2.1", + "@buffetjs/utils": "3.2.1", + "@casl/ability": "^4.1.5", "@fortawesome/fontawesome-free": "^5.11.2", "@fortawesome/fontawesome-svg-core": "^1.2.25", "@fortawesome/free-brands-svg-icons": "^5.11.2", "@fortawesome/free-solid-svg-icons": "^5.11.2", "@fortawesome/react-fontawesome": "^0.1.7", - "autoprefixer": "^9.5.1", + "autoprefixer": "^9.8.6", "axios": "^0.19.2", "babel-loader": "^8.1.0", "bcryptjs": "^2.4.3",

@@ -10062,25 +10162,33 @@ "duplicate-package-checker-webpack-plugin": "^3.0.0",

"execa": "^1.0.0", "file-loader": "^3.0.1", "font-awesome": "^4.7.0", + "formik": "^2.1.4", "friendly-errors-webpack-plugin": "^1.7.0", "fs-extra": "^7.0.1", "history": "^4.9.0", "hoist-non-react-statics": "^3.3.0", "html-loader": "^0.5.5", "html-webpack-plugin": "^3.2.0", + "immer": "^6.0.5", "immutable": "^3.8.2", "invariant": "^2.2.4", "is-wsl": "^2.0.0", - "lodash": "^4.17.11", + "jsonwebtoken": "8.5.1", + "koa-compose": "4.1.0", + "koa-passport": "4.1.3", + "lodash": "4.17.19", "match-sorter": "^4.0.2", "mini-css-extract-plugin": "^0.6.0", "moment": "^2.24.0", + "p-map": "4.0.0", + "passport-local": "1.0.0", "prop-types": "^15.7.2", "react": "^16.9.0", "react-copy-to-clipboard": "^5.0.1", "react-dnd": "^10.0.2", "react-dnd-html5-backend": "^10.0.2", "react-dom": "^16.9.0", + "react-fast-compare": "^3.2.0", "react-helmet": "^6.0.0", "react-intl": "4.5.0", "react-is": "^16.12.0",

@@ -10098,9 +10206,9 @@ "redux-saga": "^0.16.0",

"remove-markdown": "^0.2.2", "reselect": "^4.0.0", "sanitize.css": "^4.1.0", - "shelljs": "^0.7.8", - "strapi-helper-plugin": "3.0.5", - "strapi-utils": "3.0.5", + "sift": "13.1.10", + "strapi-helper-plugin": "3.1.4", + "strapi-utils": "3.1.4", "style-loader": "^0.23.1", "styled-components": "^5.0.0", "terser-webpack-plugin": "^1.2.3",

@@ -10121,15 +10229,10 @@ "requires": {

"is-docker": "^2.0.0" } }, - "shelljs": { - "version": "0.7.8", - "resolved": "https://npm-8ee.hidora.com/shelljs/-/shelljs-0.7.8.tgz", - "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=", - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - } + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" }, "yup": { "version": "0.27.0",

@@ -10147,19 +10250,29 @@ }

} }, "strapi-connector-mongoose": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-connector-mongoose/-/strapi-connector-mongoose-3.0.5.tgz", - "integrity": "sha512-YNTVZJE/R5cc3DJtaD5ouKZAm4JnCGZZqsWsUkjlOsJS3reCOr3Lpm9fDlJSNN2Npp85bvE5VYY9HfC8IGRxuw==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-connector-mongoose/-/strapi-connector-mongoose-3.1.4.tgz", + "integrity": "sha512-UR0nfx6xuo5n4pMqZEejt+fZlnl3TkcVitB82RuzSSsJs/GUDQKqZjK5/X0VNL77tlszo32RLICSFV1fLvN4lw==", "requires": { - "lodash": "^4.17.11", + "lodash": "4.17.19", "mongoose": "5.8.0", "mongoose-float": "^1.0.4", "mongoose-long": "^0.2.1", - "pluralize": "^7.0.0", + "pluralize": "^8.0.0", "semver": "^7.3.2", - "strapi-utils": "3.0.5" + "strapi-utils": "3.1.4" }, "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://npm-8ee.hidora.com/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + }, "semver": { "version": "7.3.2", "resolved": "https://npm-8ee.hidora.com/semver/-/semver-7.3.2.tgz",

@@ -10168,24 +10281,32 @@ }

} }, "strapi-database": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-database/-/strapi-database-3.0.5.tgz", - "integrity": "sha512-Fehr7XfIDN8y5wZXJMRf7G2V5NMr/gmMi6bPEqVfhGI5unlhyP8KVbQsDDyuzIteZy1YaP/PPcKzUYaD4bZj9Q==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-database/-/strapi-database-3.1.4.tgz", + "integrity": "sha512-qgEF4my15JulKAI8tj4DLPEkVjpSwtr3BCyimmr9qlIvcca2T6DIzMsgRhgx1YlKV7/8pJ+mHZG/YMQwRTby3g==", "requires": { - "lodash": "^4.17.11", + "lodash": "4.17.19", + "p-map": "4.0.0", "verror": "^1.10.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + } } }, "strapi-generate": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-generate/-/strapi-generate-3.0.5.tgz", - "integrity": "sha512-6Z9NvQanF2ABis8hjYV0jfkUlyMzkuMn0BusJ8E/LKpIkBvgkeTUh1PFfyXsEaaJBsD9BnlXxgoYLelPOZWYgg==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-generate/-/strapi-generate-3.1.4.tgz", + "integrity": "sha512-TaIgjAS4m1eIim4hDuzN+IJZQwXyHb+qcRT87tsZW/80LHCf+bYsdO41Gyf1SkpNlH7sTwWevTLq+xofZH6m0g==", "requires": { "async": "^2.6.2", "fs-extra": "^8.0.1", - "lodash": "^4.17.11", + "lodash": "4.17.19", "reportback": "^2.0.2", - "strapi-utils": "3.0.5" + "strapi-utils": "3.1.4" }, "dependencies": { "fs-extra": {

@@ -10197,49 +10318,85 @@ "graceful-fs": "^4.2.0",

"jsonfile": "^4.0.0", "universalify": "^0.1.0" } + }, + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" } } }, "strapi-generate-api": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-generate-api/-/strapi-generate-api-3.0.5.tgz", - "integrity": "sha512-foVwThLRfL5+0coAGOTp1r3HjrObOpHSpzJKh7vAYUPycmqDAotiZq60NLwg6cq2rwm2afKl5WO3pCJ+P7eQfg==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-generate-api/-/strapi-generate-api-3.1.4.tgz", + "integrity": "sha512-2P8dR9YllPrXcAO2wi5z/wkFe/pbbUwN88MwqwdQ50gU/E8oalBS5oUa0mbUv0fVSJ28rZG8wtB2pfoil2ddMQ==", "requires": { - "lodash": "^4.17.11", - "pluralize": "^7.0.0", - "strapi-utils": "3.0.5" + "lodash": "4.17.19", + "pluralize": "^8.0.0", + "strapi-utils": "3.1.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://npm-8ee.hidora.com/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + } } }, "strapi-generate-controller": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-generate-controller/-/strapi-generate-controller-3.0.5.tgz", - "integrity": "sha512-pOhnqsyqRf54jFGXsNesrcj1asmB/XQToD0HMTHUADkp/+W20X/u6nHev7GuTsbJ6sF1xrl8ap1hPuz3QVW0uQ==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-generate-controller/-/strapi-generate-controller-3.1.4.tgz", + "integrity": "sha512-Qv+WnmhWC3TaK88gBZtyD9KrcUI2ijhSYMvyt3u/zF12lc6P69XUygZRouO8TqYa0Zyv+I6KsKJh2Dig8tnO+w==", "requires": { - "lodash": "^4.17.11", - "strapi-utils": "3.0.5" + "lodash": "4.17.19", + "strapi-utils": "3.1.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + } } }, "strapi-generate-model": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-generate-model/-/strapi-generate-model-3.0.5.tgz", - "integrity": "sha512-VN+XQiXkuSP+BTPkFebFWQwW8sWbHVT+s5b/xZSFrgh3XE18akXAovHHvj/QwUmuZogyhNKdPUJxUpmUwe+5hg==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-generate-model/-/strapi-generate-model-3.1.4.tgz", + "integrity": "sha512-wO1aSiMIDgfqADj2wWpuTr9J2CMmgZnyo3m3Logx6+RRul2KgoAenpJyQkyL0bBzXUmNDIQxhxG2TarSNmIfvA==", "requires": { - "lodash": "^4.17.11", - "pluralize": "^7.0.0", - "strapi-utils": "3.0.5" + "lodash": "4.17.19", + "pluralize": "^8.0.0", + "strapi-utils": "3.1.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://npm-8ee.hidora.com/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + } } }, "strapi-generate-new": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-generate-new/-/strapi-generate-new-3.0.5.tgz", - "integrity": "sha512-eRdXWTZfI9sPy26edGAAQ/KL9YcWp4nyjsBqcn2kLCP9X1ySJ0wNvS9ef9B1GjqbuvAZL90hZb6FF+PIGREp0A==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-generate-new/-/strapi-generate-new-3.1.4.tgz", + "integrity": "sha512-Q7L4FXM9xl4+KsaFLBdp3XAF7Yfs1nKGuwFPPPVXVY0RxI7uRdKQKMa1xS82XCIzuZcofyVMQTshe0YoxhAkHg==", "requires": { "@sentry/node": "^5.7.1", "chalk": "^2.4.2", "execa": "^1.0.0", "fs-extra": "^8.0.1", "inquirer": "^6.3.1", - "lodash": "^4.17.11", + "lodash": "4.17.19", "node-fetch": "^1.7.3", "node-machine-id": "^1.1.10", "ora": "^3.4.0",

@@ -10256,6 +10413,11 @@ "jsonfile": "^4.0.0",

"universalify": "^0.1.0" } }, + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + }, "node-fetch": { "version": "1.7.3", "resolved": "https://npm-8ee.hidora.com/node-fetch/-/node-fetch-1.7.3.tgz",

@@ -10268,13 +10430,13 @@ }

} }, "strapi-generate-plugin": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-generate-plugin/-/strapi-generate-plugin-3.0.5.tgz", - "integrity": "sha512-vc8lVKvzNzygPrwiopKjr8br3l70wVjlDkPTvZeXBa9c+xdggjX8q/AD6ZLHmJJg7nZEqYvDqX3B+eqeULu6gA==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-generate-plugin/-/strapi-generate-plugin-3.1.4.tgz", + "integrity": "sha512-76YpnPNxpRqW4DpS3UjIR1szDZDyJntce+eZi5ORV6XuGFk6eZVLOhnsfnYTXXGkjBiKOcvgQXfA/hRf+/D2SQ==", "requires": { "fs-extra": "^8.0.1", - "lodash": "^4.17.11", - "strapi-utils": "3.0.5" + "lodash": "4.17.19", + "strapi-utils": "3.1.4" }, "dependencies": { "fs-extra": {

@@ -10286,37 +10448,61 @@ "graceful-fs": "^4.2.0",

"jsonfile": "^4.0.0", "universalify": "^0.1.0" } + }, + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" } } }, "strapi-generate-policy": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-generate-policy/-/strapi-generate-policy-3.0.5.tgz", - "integrity": "sha512-vs8w5K9ceAU2TW/Ij+o3ihw53poPcjg/7jh22SVk1+rlMOuNk0HJADJPDmAv0C+XVcK0B2niSEEXr4BgG/VduQ==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-generate-policy/-/strapi-generate-policy-3.1.4.tgz", + "integrity": "sha512-jUdGJXc9/r+y+RHOGnHZBT1PZlLTMrN8ZOnQX4Zw1vxiYMaj2RtuG/EHMfy5RZzOAj6LUKj3r9lLAvvOXmitDw==", "requires": { - "lodash": "^4.17.11", - "strapi-utils": "3.0.5" + "lodash": "4.17.19", + "strapi-utils": "3.1.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + } } }, "strapi-generate-service": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-generate-service/-/strapi-generate-service-3.0.5.tgz", - "integrity": "sha512-5/8CHZM/lT0RA/HDJjIGflJqT7ckOScm7JtYc4jDnFvIhXGbKE+6GD5LwmcC9IhrpWGmuN0oQG1XnO4Ft1E3wQ==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-generate-service/-/strapi-generate-service-3.1.4.tgz", + "integrity": "sha512-w1HJYyBVlF8ytnmc6bWStStDtcFDgPDfNiJhyTA6i1c1pGFGfdSXnrnxQeya0OdDNoFWl+BanGH3mNrCGVrm3A==", "requires": { - "lodash": "^4.17.11", - "strapi-utils": "3.0.5" + "lodash": "4.17.19", + "strapi-utils": "3.1.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + } } }, "strapi-helper-plugin": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-helper-plugin/-/strapi-helper-plugin-3.0.5.tgz", - "integrity": "sha512-2mfgI/z3TCX8BpqTP6NiX1mu5hRHC78zud7roWSYE6H6QhoWmPhpLpWeB6eQGok3n6tc21huJSFBdu0WiiyAXA==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-helper-plugin/-/strapi-helper-plugin-3.1.4.tgz", + "integrity": "sha512-qjV+v8JUvhFFUErAEAAmrPXjY+/a9YvShMxNZFzpGjT/pK8He6ceUuFK0ck16rBjZCUtoyW2iDhiZcNaAsgcVg==", "requires": { + "@buffetjs/core": "3.2.1", + "@buffetjs/hooks": "3.2.1", + "@buffetjs/icons": "3.2.1", + "@buffetjs/styles": "3.2.1", + "@buffetjs/utils": "3.2.1", "bootstrap": "^4.3.1", "classnames": "^2.2.5", "immutable": "^3.8.2", "invariant": "^2.2.1", - "lodash": "^4.17.5", + "lodash": "4.17.19", "moment": "^2.16.0", "react": "^16.9.0", "react-dom": "^16.9.0",

@@ -10325,7 +10511,14 @@ "react-router": "^5.0.0",

"react-router-dom": "^5.0.0", "reactstrap": "8.4.1", "styled-components": "^5.0.0", - "whatwg-fetch": "^2.0.3" + "whatwg-fetch": "^3.3.1" + }, + "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + } } }, "strapi-middleware-reactapp": {

@@ -10334,19 +10527,31 @@ "resolved": "https://npm-8ee.hidora.com/strapi-middleware-reactapp/-/strapi-middleware-reactapp-0.1.1.tgz",

"integrity": "sha512-jJYVJNxSKcmccS/dlZF/DK+4cXCCO1id2h+58OBTbaFmu6VNeukev+nE+P8UOin9q1wHtlCM4XTo+6vL8ywerg==" }, "strapi-plugin-content-manager": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-plugin-content-manager/-/strapi-plugin-content-manager-3.0.5.tgz", - "integrity": "sha512-Vs8u/O8YU2iH+oAJnlhB1bpuuBnbPXEKfxdxB8yg5AXHQSUNmbctteWVUrQvC3q87opLyaM0C2y7uugZAhxnwg==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-plugin-content-manager/-/strapi-plugin-content-manager-3.1.4.tgz", + "integrity": "sha512-6sULHwrT6LwL0VF87uKQsTQxtWr8+lldQp+/8xVBeIPZT1EPbsB2glgndl2dZyflhseNKWGGdvWO6/4nPbvoBA==", "requires": { - "@sindresorhus/slugify": "0.9.1", + "@sindresorhus/slugify": "1.1.0", "classnames": "^2.2.6", "codemirror": "^5.46.0", "draft-js": "^0.11.5", + "highlight.js": "^10.1.1", "immutable": "^3.8.2", - "lodash": "^4.17.11", - "pluralize": "^7.0.0", + "lodash": "4.17.19", + "markdown-it": "^11.0.0", + "markdown-it-abbr": "^1.0.4", + "markdown-it-container": "^3.0.0", + "markdown-it-deflist": "^2.0.3", + "markdown-it-emoji": "^1.4.0", + "markdown-it-footnote": "^3.0.2", + "markdown-it-ins": "^3.0.0", + "markdown-it-mark": "^3.0.0", + "markdown-it-sub": "^1.0.0", + "markdown-it-sup": "^1.0.0", + "pluralize": "^8.0.0", "react": "^16.9.0", "react-dom": "^16.9.0", + "react-fast-compare": "^3.2.0", "react-intl": "4.5.0", "react-redux": "^7.0.2", "react-router": "^5.0.0",

@@ -10355,21 +10560,35 @@ "reactstrap": "8.4.1",

"redux": "^4.0.1", "redux-immutable": "^4.0.0", "reselect": "^4.0.0", - "showdown": "^1.9.0", - "strapi-helper-plugin": "3.0.5", - "strapi-utils": "3.0.5", + "strapi-helper-plugin": "3.1.4", + "strapi-utils": "3.1.4", "yup": "^0.27.0" }, "dependencies": { "@sindresorhus/slugify": { - "version": "0.9.1", - "resolved": "https://npm-8ee.hidora.com/@sindresorhus%2fslugify/-/slugify-0.9.1.tgz", - "integrity": "sha512-b6heYM9dzZD13t2GOiEQTDE0qX+I1GyOotMwKh9VQqzuNiVdPVT8dM43fe9HNb/3ul+Qwd5oKSEDrDIfhq3bnQ==", + "version": "1.1.0", + "resolved": "https://npm-8ee.hidora.com/@sindresorhus%2fslugify/-/slugify-1.1.0.tgz", + "integrity": "sha512-ujZRbmmizX26yS/HnB3P9QNlNa4+UvHh+rIse3RbOXLp8yl6n1TxB4t7NHggtVgS8QmmOtzXo48kCxZGACpkPw==", "requires": { - "escape-string-regexp": "^1.0.5", - "lodash.deburr": "^4.1.0" + "@sindresorhus/transliterate": "^0.1.1", + "escape-string-regexp": "^4.0.0" } }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://npm-8ee.hidora.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://npm-8ee.hidora.com/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + }, "yup": { "version": "0.27.0", "resolved": "https://npm-8ee.hidora.com/yup/-/yup-0.27.0.tgz",

@@ -10386,15 +10605,15 @@ }

} }, "strapi-plugin-content-type-builder": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-plugin-content-type-builder/-/strapi-plugin-content-type-builder-3.0.5.tgz", - "integrity": "sha512-Bs7P2TobHV4TLJeQ+k8ZLoiGbDk8/ElVsTB43lfx0yZV3z0TlMfGT7pDgrVqkV2l84ARdU5bYVLofR3Zmj+KCw==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-plugin-content-type-builder/-/strapi-plugin-content-type-builder-3.1.4.tgz", + "integrity": "sha512-Bj5ToTfCtw0/JZQNl87nYagwrNxYNPpnjF5nr9SRjUSKssQoOcqKvfBEeotnag5NNMB8TW3ciBek6HKrxe2lKg==", "requires": { - "@sindresorhus/slugify": "0.9.1", + "@sindresorhus/slugify": "1.1.0", "fs-extra": "^7.0.0", "immutable": "^3.8.2", - "lodash": "^4.17.11", - "pluralize": "^7.0.0", + "lodash": "4.17.19", + "pluralize": "^8.0.0", "react": "^16.9.0", "react-dom": "^16.9.0", "react-intl": "4.5.0",

@@ -10405,166 +10624,36 @@ "reactstrap": "8.4.1",

"redux": "^4.0.1", "redux-immutable": "^4.0.0", "reselect": "^4.0.0", - "strapi-generate": "3.0.5", - "strapi-generate-api": "3.0.5", - "strapi-helper-plugin": "3.0.5", - "strapi-utils": "3.0.5", + "strapi-generate": "3.1.4", + "strapi-generate-api": "3.1.4", + "strapi-helper-plugin": "3.1.4", + "strapi-utils": "3.1.4", "yup": "^0.27.0" }, "dependencies": { "@sindresorhus/slugify": { - "version": "0.9.1", - "resolved": "https://npm-8ee.hidora.com/@sindresorhus%2fslugify/-/slugify-0.9.1.tgz", - "integrity": "sha512-b6heYM9dzZD13t2GOiEQTDE0qX+I1GyOotMwKh9VQqzuNiVdPVT8dM43fe9HNb/3ul+Qwd5oKSEDrDIfhq3bnQ==", - "requires": { - "escape-string-regexp": "^1.0.5", - "lodash.deburr": "^4.1.0" - } - }, - "yup": { - "version": "0.27.0", - "resolved": "https://npm-8ee.hidora.com/yup/-/yup-0.27.0.tgz", - "integrity": "sha512-v1yFnE4+u9za42gG/b/081E7uNW9mUj3qtkmelLbW5YPROZzSH/KUUyJu9Wt8vxFJcT9otL/eZopS0YK1L5yPQ==", - "requires": { - "@babel/runtime": "^7.0.0", - "fn-name": "~2.0.1", - "lodash": "^4.17.11", - "property-expr": "^1.5.0", - "synchronous-promise": "^2.0.6", - "toposort": "^2.0.2" - } - } - } - }, - "strapi-plugin-documentation": { - "version": "3.1.4", - "resolved": "https://npm-8ee.hidora.com/strapi-plugin-documentation/-/strapi-plugin-documentation-3.1.4.tgz", - "integrity": "sha512-B3KVp3dTBenBS6rSxuN2y59/81f+EdiyIXzF89QZugi0w1vrUPL5F4ehR41kQrqrt7vrgWU8G+pjk7G5Ob8sfQ==", - "requires": { - "cheerio": "^1.0.0-rc.3", - "fs-extra": "^8.1.0", - "immutable": "^3.8.2", - "koa-static": "^5.0.0", - "lodash": "4.17.19", - "moment": "^2.24.0", - "path-to-regexp": "^3.1.0", - "react": "^16.9.0", - "react-copy-to-clipboard": "^5.0.1", - "react-dom": "^16.9.0", - "react-intl": "4.5.0", - "react-redux": "^7.0.3", - "react-router": "^5.0.0", - "react-router-dom": "^5.0.0", - "reactstrap": "8.4.1", - "redux": "^4.0.1", - "redux-immutable": "^4.0.0", - "reselect": "^4.0.0", - "strapi-helper-plugin": "3.1.4", - "swagger-ui-dist": "3.24.3" - }, - "dependencies": { - "@buffetjs/core": { - "version": "3.2.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fcore/-/core-3.2.1.tgz", - "integrity": "sha512-ojoWjmEmq9l2U4U2Gro7sh85WRJEuFQlBLJvSv/fygqU+/1hpRoNYUWNWv3e3o4qjNocjrEdy163O8iKfwd8BQ==", - "requires": { - "@buffetjs/hooks": "3.2.1", - "@buffetjs/icons": "3.2.1", - "@buffetjs/styles": "3.2.1", - "@buffetjs/utils": "3.2.1", - "@fortawesome/fontawesome-svg-core": "^1.2.25", - "@fortawesome/free-regular-svg-icons": "^5.11.2", - "@fortawesome/free-solid-svg-icons": "^5.11.2", - "@fortawesome/react-fontawesome": "^0.1.4", - "invariant": "^2.2.4", - "moment": "^2.24.0", - "rc-input-number": "^4.5.0", - "react-dates": "^21.5.1", - "react-moment-proptypes": "^1.7.0", - "react-with-direction": "^1.3.1" - } - }, - "@buffetjs/hooks": { - "version": "3.2.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fhooks/-/hooks-3.2.1.tgz", - "integrity": "sha512-+ckjVGxDy0/0IkF8Hv2bLGjf+pv0IqmmklrwQisTkBLBfhy85UCjHxitalAOn9d9jZHT6wjNjoiRjcVKd5zS8A==" - }, - "@buffetjs/icons": { - "version": "3.2.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2ficons/-/icons-3.2.1.tgz", - "integrity": "sha512-50rw19kCAsC3SOmcUSrXexZg3DEhmVYSDuPrctBdYZhsT07giGcz9yJtPLwF74nxHwr29lTDEJn7i6rAbz9xdg==" - }, - "@buffetjs/styles": { - "version": "3.2.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2fstyles/-/styles-3.2.1.tgz", - "integrity": "sha512-TkfzbCMj7w1jrowe25mQLM/LdXF+l9ogOj9lRrjfpSSGw4y9m6kEz6f3+73uMQROeyB7dg95CmlIniBeV/zMQQ==", - "requires": { - "@fortawesome/fontawesome-free": "^5.12.0", - "@fortawesome/fontawesome-svg-core": "^1.2.22", - "@fortawesome/free-regular-svg-icons": "^5.10.2", - "@fortawesome/free-solid-svg-icons": "^5.10.2", - "@fortawesome/react-fontawesome": "^0.1.4", - "react-dates": "^21.1.0" - } - }, - "@buffetjs/utils": { - "version": "3.2.1", - "resolved": "https://npm-8ee.hidora.com/@buffetjs%2futils/-/utils-3.2.1.tgz", - "integrity": "sha512-hzN98LPkqNNTvr2iyp5h4UM06iSJ/fXyrVhneTcQBh8LWX9lMFXCttQJRZgRsBCjhcM16Zh6vn0Wv4LqN4bcxA==", + "version": "1.1.0", + "resolved": "https://npm-8ee.hidora.com/@sindresorhus%2fslugify/-/slugify-1.1.0.tgz", + "integrity": "sha512-ujZRbmmizX26yS/HnB3P9QNlNa4+UvHh+rIse3RbOXLp8yl6n1TxB4t7NHggtVgS8QmmOtzXo48kCxZGACpkPw==", "requires": { - "yup": "^0.27.0" + "@sindresorhus/transliterate": "^0.1.1", + "escape-string-regexp": "^4.0.0" } }, - "fs-extra": { - "version": "8.1.0", - "resolved": "https://npm-8ee.hidora.com/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://npm-8ee.hidora.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" }, "lodash": { "version": "4.17.19", "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" }, - "path-to-regexp": { - "version": "3.2.0", - "resolved": "https://npm-8ee.hidora.com/path-to-regexp/-/path-to-regexp-3.2.0.tgz", - "integrity": "sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==" - }, - "strapi-helper-plugin": { - "version": "3.1.4", - "resolved": "https://npm-8ee.hidora.com/strapi-helper-plugin/-/strapi-helper-plugin-3.1.4.tgz", - "integrity": "sha512-qjV+v8JUvhFFUErAEAAmrPXjY+/a9YvShMxNZFzpGjT/pK8He6ceUuFK0ck16rBjZCUtoyW2iDhiZcNaAsgcVg==", - "requires": { - "@buffetjs/core": "3.2.1", - "@buffetjs/hooks": "3.2.1", - "@buffetjs/icons": "3.2.1", - "@buffetjs/styles": "3.2.1", - "@buffetjs/utils": "3.2.1", - "bootstrap": "^4.3.1", - "classnames": "^2.2.5", - "immutable": "^3.8.2", - "invariant": "^2.2.1", - "lodash": "4.17.19", - "moment": "^2.16.0", - "react": "^16.9.0", - "react-dom": "^16.9.0", - "react-intl": "4.5.0", - "react-router": "^5.0.0", - "react-router-dom": "^5.0.0", - "reactstrap": "8.4.1", - "styled-components": "^5.0.0", - "whatwg-fetch": "^3.3.1" - } - }, - "whatwg-fetch": { - "version": "3.4.0", - "resolved": "https://npm-8ee.hidora.com/whatwg-fetch/-/whatwg-fetch-3.4.0.tgz", - "integrity": "sha512-rsum2ulz2iuZH08mJkT0Yi6JnKhwdw4oeyMjokgxd+mmqYSd9cPpOQf01TIWgjxG/U4+QR+AwKq6lSbXVxkyoQ==" + "pluralize": { + "version": "8.0.0", + "resolved": "https://npm-8ee.hidora.com/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" }, "yup": { "version": "0.27.0",

@@ -10793,17 +10882,17 @@ }

} }, "strapi-plugin-users-permissions": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-plugin-users-permissions/-/strapi-plugin-users-permissions-3.0.5.tgz", - "integrity": "sha512-Ov+E6VNTmzGMvCJYo5EOt1wY/8nLAJyHJ0AaGNx8W6gWHctlGVqke4TkN9Lz3jGIsdls0vi1QlGj/+qDaG9Ubw==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-plugin-users-permissions/-/strapi-plugin-users-permissions-3.1.4.tgz", + "integrity": "sha512-y9A+r9Aq/AiqXZb6o/dBJ8OfdUlfIojYyNM3g+7FNXXKKeWQ+sj2MWW0+oq0TE0AulrowHY9LCb8gwIwD6MwKw==", "requires": { "@purest/providers": "^1.0.1", "bcryptjs": "^2.4.3", - "grant-koa": "^5.0.1", + "grant-koa": "5.2.0", "immutable": "^3.8.2", "jsonwebtoken": "^8.1.0", "koa2-ratelimit": "^0.9.0", - "lodash": "^4.17.11", + "lodash": "4.17.19", "purest": "3.1.0", "react": "^16.9.0", "react-dom": "^16.9.0",

@@ -10814,9 +10903,16 @@ "react-router-dom": "^5.0.0",

"reactstrap": "8.4.1", "redux-saga": "^0.16.0", "request": "^2.83.0", - "strapi-helper-plugin": "3.0.5", - "strapi-utils": "3.0.5", + "strapi-helper-plugin": "3.1.4", + "strapi-utils": "3.1.4", "uuid": "^3.1.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + } } }, "strapi-provider-upload-local": {

@@ -10825,23 +10921,41 @@ "resolved": "https://npm-8ee.hidora.com/strapi-provider-upload-local/-/strapi-provider-upload-local-3.1.4.tgz",

"integrity": "sha512-m2vGOQMO4/wKrjy4W6jKbjaMrUBF7kZVmYyw8/vdihkMPOb271sJGpIqQ+RYOcSJbRmyJc/1ISwvooBrmvfkmA==" }, "strapi-utils": { - "version": "3.0.5", - "resolved": "https://npm-8ee.hidora.com/strapi-utils/-/strapi-utils-3.0.5.tgz", - "integrity": "sha512-XcVZgdBzk9SHwePk6IUMibJ5/z4aQDrVo3l97a/19QEJmVRYPkJfSYQfxV+6A41HaiHGN+kKbIgG4lAlT4dN0w==", + "version": "3.1.4", + "resolved": "https://npm-8ee.hidora.com/strapi-utils/-/strapi-utils-3.1.4.tgz", + "integrity": "sha512-BcRW6xcwW0glisgJ3VR+XkakV9Bza5JLY9+ndgo/yjmCthjLobUO/Dc/9T35eCkyReXYweCquW/HoPkOMbdm9g==", "requires": { - "@sindresorhus/slugify": "^0.11.0", + "@sindresorhus/slugify": "1.1.0", "date-fns": "^2.8.1", - "lodash": "4.17.12", + "lodash": "4.17.19", "pino": "^4.7.1", - "pluralize": "^7.0.0", - "shelljs": "^0.8.3", + "pluralize": "^8.0.0", "yup": "0.28.1" }, "dependencies": { + "@sindresorhus/slugify": { + "version": "1.1.0", + "resolved": "https://npm-8ee.hidora.com/@sindresorhus%2fslugify/-/slugify-1.1.0.tgz", + "integrity": "sha512-ujZRbmmizX26yS/HnB3P9QNlNa4+UvHh+rIse3RbOXLp8yl6n1TxB4t7NHggtVgS8QmmOtzXo48kCxZGACpkPw==", + "requires": { + "@sindresorhus/transliterate": "^0.1.1", + "escape-string-regexp": "^4.0.0" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://npm-8ee.hidora.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, "lodash": { - "version": "4.17.12", - "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.12.tgz", - "integrity": "sha512-+CiwtLnsJhX03p20mwXuvhoebatoh5B3tt+VvYlrPgZC1g36y+RRbkufX95Xa+X4I59aWEacDFYwnJZiyBh9gA==" + "version": "4.17.19", + "resolved": "https://npm-8ee.hidora.com/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://npm-8ee.hidora.com/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" } } },

@@ -10882,12 +10996,12 @@ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ=="

}, "stream-slice": { "version": "0.1.2", - "resolved": "https://npm-8ee.hidora.com/stream-slice/-/stream-slice-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/stream-slice/-/stream-slice-0.1.2.tgz", "integrity": "sha1-LcT04bk2+xPz6zmi3vGTJ5jQeks=" }, "stream-to-array": { "version": "2.3.0", - "resolved": "https://npm-8ee.hidora.com/stream-to-array/-/stream-to-array-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/stream-to-array/-/stream-to-array-2.3.0.tgz", "integrity": "sha1-u/azn19D7DC8cbq8s3VXrOzzQ1M=", "requires": { "any-promise": "^1.1.0"

@@ -10900,7 +11014,7 @@ "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM="

}, "string-width": { "version": "2.1.1", - "resolved": "https://npm-8ee.hidora.com/string-width/-/string-width-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "requires": { "is-fullwidth-code-point": "^2.0.0",

@@ -10909,7 +11023,7 @@ }

}, "string.prototype.trimend": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==", "requires": { "define-properties": "^1.1.3",

@@ -10918,7 +11032,7 @@ }

}, "string.prototype.trimstart": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==", "requires": { "define-properties": "^1.1.3",

@@ -10927,7 +11041,7 @@ }

}, "string_decoder": { "version": "1.1.1", - "resolved": "https://npm-8ee.hidora.com/string_decoder/-/string_decoder-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "requires": { "safe-buffer": "~5.1.0"

@@ -10935,7 +11049,7 @@ }

}, "strip-ansi": { "version": "4.0.0", - "resolved": "https://npm-8ee.hidora.com/strip-ansi/-/strip-ansi-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "requires": { "ansi-regex": "^3.0.0"

@@ -10948,7 +11062,7 @@ "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8="

}, "strip-json-comments": { "version": "2.0.1", - "resolved": "https://npm-8ee.hidora.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" }, "style-loader": {

@@ -10974,7 +11088,7 @@ }

}, "styled-components": { "version": "5.1.1", - "resolved": "https://npm-8ee.hidora.com/styled-components/-/styled-components-5.1.1.tgz", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.1.1.tgz", "integrity": "sha512-1ps8ZAYu2Husx+Vz8D+MvXwEwvMwFv+hqqUwhNlDN5ybg6A+3xyW1ECrAgywhvXapNfXiz79jJyU0x22z0FFTg==", "requires": { "@babel/helper-module-imports": "^7.0.0",

@@ -10991,16 +11105,11 @@ }

}, "supports-color": { "version": "5.5.0", - "resolved": "https://npm-8ee.hidora.com/supports-color/-/supports-color-5.5.0.tgz", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "requires": { "has-flag": "^3.0.0" } - }, - "swagger-ui-dist": { - "version": "3.24.3", - "resolved": "https://npm-8ee.hidora.com/swagger-ui-dist/-/swagger-ui-dist-3.24.3.tgz", - "integrity": "sha512-kB8qobP42Xazaym7sD9g5mZuRL4416VIIYZMqPEIskkzKqbPLQGEiHA3ga31bdzyzFLgr6Z797+6X1Am6zYpbg==" }, "switchback": { "version": "2.0.5",

@@ -11017,12 +11126,12 @@ "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="

}, "synchronous-promise": { "version": "2.0.13", - "resolved": "https://npm-8ee.hidora.com/synchronous-promise/-/synchronous-promise-2.0.13.tgz", + "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.13.tgz", "integrity": "sha512-R9N6uDkVsghHePKh1TEqbnLddO2IY25OcsksyFp/qBe7XYd0PVbKEWxhcdMhpLzE1I6skj5l4aEZ3CRxcbArlA==" }, "table": { "version": "5.4.6", - "resolved": "https://npm-8ee.hidora.com/table/-/table-5.4.6.tgz", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", "dev": true, "requires": {

@@ -11034,13 +11143,13 @@ },

"dependencies": { "ansi-regex": { "version": "4.1.0", - "resolved": "https://npm-8ee.hidora.com/ansi-regex/-/ansi-regex-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, "string-width": { "version": "3.1.0", - "resolved": "https://npm-8ee.hidora.com/string-width/-/string-width-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": {

@@ -11051,7 +11160,7 @@ }

}, "strip-ansi": { "version": "5.2.0", - "resolved": "https://npm-8ee.hidora.com/strip-ansi/-/strip-ansi-5.2.0.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": {

@@ -11097,7 +11206,7 @@ }

}, "tar-fs": { "version": "2.1.0", - "resolved": "https://npm-8ee.hidora.com/tar-fs/-/tar-fs-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.0.tgz", "integrity": "sha512-9uW5iDvrIMCVpvasdFHW0wJPez0K4JnMZtsuIeDI7HyMGJNxmDZDOCQROr7lXyS+iL/QMpj07qcjGYTSdRFXUg==", "requires": { "chownr": "^1.1.1",

@@ -11182,7 +11291,7 @@ }

}, "text-table": { "version": "0.2.0", - "resolved": "https://npm-8ee.hidora.com/text-table/-/text-table-0.2.0.tgz", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" }, "thenify": {

@@ -11208,7 +11317,7 @@ "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="

}, "through2": { "version": "2.0.5", - "resolved": "https://npm-8ee.hidora.com/through2/-/through2-2.0.5.tgz", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "requires": { "readable-stream": "~2.3.6",

@@ -11230,12 +11339,12 @@ }

}, "tiny-invariant": { "version": "1.1.0", - "resolved": "https://npm-8ee.hidora.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" }, "tiny-warning": { "version": "1.0.3", - "resolved": "https://npm-8ee.hidora.com/tiny-warning/-/tiny-warning-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" }, "tmp": {

@@ -11253,7 +11362,7 @@ "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M="

}, "to-fast-properties": { "version": "2.0.0", - "resolved": "https://npm-8ee.hidora.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" }, "to-object-path": {

@@ -11295,17 +11404,17 @@ }

}, "toggle-selection": { "version": "1.0.6", - "resolved": "https://npm-8ee.hidora.com/toggle-selection/-/toggle-selection-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" }, "toidentifier": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/toidentifier/-/toidentifier-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" }, "toposort": { "version": "2.0.2", - "resolved": "https://npm-8ee.hidora.com/toposort/-/toposort-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", "integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=" }, "toposort-class": {

@@ -11339,7 +11448,7 @@ "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY="

}, "tunnel-agent": { "version": "0.6.0", - "resolved": "https://npm-8ee.hidora.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", "requires": { "safe-buffer": "^5.0.1"

@@ -11352,7 +11461,7 @@ "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q="

}, "type-check": { "version": "0.4.0", - "resolved": "https://npm-8ee.hidora.com/type-check/-/type-check-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "requires": {

@@ -11375,7 +11484,7 @@ }

}, "typed-styles": { "version": "0.0.7", - "resolved": "https://npm-8ee.hidora.com/typed-styles/-/typed-styles-0.0.7.tgz", + "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz", "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==" }, "typedarray": {

@@ -11387,6 +11496,11 @@ "ua-parser-js": {

"version": "0.7.21", "resolved": "https://npm-8ee.hidora.com/ua-parser-js/-/ua-parser-js-0.7.21.tgz", "integrity": "sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==" + }, + "uc.micro": { + "version": "1.0.6", + "resolved": "https://npm-8ee.hidora.com/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" }, "uglify-js": { "version": "3.4.10",

@@ -11528,7 +11642,7 @@ "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg="

}, "uri-js": { "version": "4.2.2", - "resolved": "https://npm-8ee.hidora.com/uri-js/-/uri-js-4.2.2.tgz", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", "requires": { "punycode": "^2.1.0"

@@ -11613,7 +11727,7 @@ }

}, "util-deprecate": { "version": "1.0.2", - "resolved": "https://npm-8ee.hidora.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, "util.promisify": {

@@ -11637,12 +11751,12 @@ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="

}, "uuid": { "version": "3.4.0", - "resolved": "https://npm-8ee.hidora.com/uuid/-/uuid-3.4.0.tgz", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" }, "v8-compile-cache": { "version": "2.1.1", - "resolved": "https://npm-8ee.hidora.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", "integrity": "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==" }, "validator": {

@@ -11652,7 +11766,7 @@ "integrity": "sha512-X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw=="

}, "value-equal": { "version": "1.0.1", - "resolved": "https://npm-8ee.hidora.com/value-equal/-/value-equal-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" }, "vary": {

@@ -11689,7 +11803,7 @@ "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="

}, "warning": { "version": "4.0.3", - "resolved": "https://npm-8ee.hidora.com/warning/-/warning-4.0.3.tgz", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", "requires": { "loose-envify": "^1.0.0"

@@ -12319,9 +12433,9 @@ "resolved": "https://npm-8ee.hidora.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz",

"integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" }, "whatwg-fetch": { - "version": "2.0.4", - "resolved": "https://npm-8ee.hidora.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + "version": "3.4.0", + "resolved": "https://npm-8ee.hidora.com/whatwg-fetch/-/whatwg-fetch-3.4.0.tgz", + "integrity": "sha512-rsum2ulz2iuZH08mJkT0Yi6JnKhwdw4oeyMjokgxd+mmqYSd9cPpOQf01TIWgjxG/U4+QR+AwKq6lSbXVxkyoQ==" }, "which": { "version": "1.3.1",

@@ -12338,12 +12452,12 @@ "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho="

}, "which-pm-runs": { "version": "1.0.0", - "resolved": "https://npm-8ee.hidora.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz", "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=" }, "wide-align": { "version": "1.1.3", - "resolved": "https://npm-8ee.hidora.com/wide-align/-/wide-align-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", "requires": { "string-width": "^1.0.2 || 2"

@@ -12359,7 +12473,7 @@ }

}, "word-wrap": { "version": "1.2.3", - "resolved": "https://npm-8ee.hidora.com/word-wrap/-/word-wrap-1.2.3.tgz", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true },

@@ -12408,12 +12522,12 @@ }

}, "wrappy": { "version": "1.0.2", - "resolved": "https://npm-8ee.hidora.com/wrappy/-/wrappy-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "write": { "version": "1.0.3", - "resolved": "https://npm-8ee.hidora.com/write/-/write-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", "dev": true, "requires": {

@@ -12430,7 +12544,7 @@ }

}, "xtend": { "version": "4.0.2", - "resolved": "https://npm-8ee.hidora.com/xtend/-/xtend-4.0.2.tgz", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" }, "y18n": {

@@ -12506,7 +12620,7 @@ "integrity": "sha512-faQrqNMzcPCHGVC2aaOINk13K+aaBDUPjGWl0teOXywElLjyVAB6Oe2jj62jHYtwsU49jXhScYbvPENK+6zAvQ=="

}, "yup": { "version": "0.28.1", - "resolved": "https://npm-8ee.hidora.com/yup/-/yup-0.28.1.tgz", + "resolved": "https://registry.npmjs.org/yup/-/yup-0.28.1.tgz", "integrity": "sha512-xSHMZA7UyecSG/CCTDCtnYZMjBrYDR/C7hu0fMsZ6UcS/ngko4qCVFbw+CAmNtHlbItKkvQ3YXITODeTj/dUkw==", "requires": { "@babel/runtime": "^7.0.0",
M package.jsonpackage.json

@@ -17,17 +17,16 @@ },

"dependencies": { "axios": "^0.19.2", "moment": "^2.27.0", - "strapi": "3.0.5", - "strapi-admin": "3.0.5", - "strapi-connector-mongoose": "3.0.5", + "strapi": "3.1.4", + "strapi-admin": "3.1.4", + "strapi-connector-mongoose": "3.1.4", "strapi-middleware-reactapp": "^0.1.0", - "strapi-plugin-content-manager": "3.0.5", - "strapi-plugin-content-type-builder": "3.0.5", - "strapi-plugin-documentation": "^3.0.5", + "strapi-plugin-content-manager": "3.1.4", + "strapi-plugin-content-type-builder": "3.1.4", "strapi-plugin-email": "^0.1.1", - "strapi-plugin-upload": "^3.0.5", - "strapi-plugin-users-permissions": "3.0.5", - "strapi-utils": "3.0.5" + "strapi-plugin-upload": "^3.1.4", + "strapi-plugin-users-permissions": "3.1.4", + "strapi-utils": "3.1.4" }, "author": { "name": "A Strapi developer"