mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 03:01:21 -04:00
Move production dependencies out of devDependencies (#93997)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
5518b04eed
commit
31ea160fc7
17 changed files with 197 additions and 312 deletions
118
.eslintrc.js
118
.eslintrc.js
|
@ -89,6 +89,72 @@ const SAFER_LODASH_SET_DEFINITELYTYPED_HEADER = `
|
||||||
*/
|
*/
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
/** Packages which should not be included within production code. */
|
||||||
|
const DEV_PACKAGES = [
|
||||||
|
'kbn-babel-code-parser',
|
||||||
|
'kbn-dev-utils',
|
||||||
|
'kbn-docs-utils',
|
||||||
|
'kbn-es*',
|
||||||
|
'kbn-eslint*',
|
||||||
|
'kbn-optimizer',
|
||||||
|
'kbn-plugin-generator',
|
||||||
|
'kbn-plugin-helpers',
|
||||||
|
'kbn-pm',
|
||||||
|
'kbn-storybook',
|
||||||
|
'kbn-telemetry-tools',
|
||||||
|
'kbn-test',
|
||||||
|
];
|
||||||
|
|
||||||
|
/** Directories (at any depth) which include dev-only code. */
|
||||||
|
const DEV_DIRECTORIES = [
|
||||||
|
'.storybook',
|
||||||
|
'__tests__',
|
||||||
|
'__test__',
|
||||||
|
'__jest__',
|
||||||
|
'__fixtures__',
|
||||||
|
'__mocks__',
|
||||||
|
'__stories__',
|
||||||
|
'e2e',
|
||||||
|
'fixtures',
|
||||||
|
'ftr_e2e',
|
||||||
|
'integration_tests',
|
||||||
|
'manual_tests',
|
||||||
|
'mock',
|
||||||
|
'storybook',
|
||||||
|
'scripts',
|
||||||
|
'test',
|
||||||
|
'test-d',
|
||||||
|
'test_utils',
|
||||||
|
'test_utilities',
|
||||||
|
'test_helpers',
|
||||||
|
'tests_client_integration',
|
||||||
|
];
|
||||||
|
|
||||||
|
/** File patterns for dev-only code. */
|
||||||
|
const DEV_FILE_PATTERNS = [
|
||||||
|
'*.mock.{js,ts,tsx}',
|
||||||
|
'*.test.{js,ts,tsx}',
|
||||||
|
'*.test.helpers.{js,ts,tsx}',
|
||||||
|
'*.stories.{js,ts,tsx}',
|
||||||
|
'*.story.{js,ts,tsx}',
|
||||||
|
'*.stub.{js,ts,tsx}',
|
||||||
|
'mock.{js,ts,tsx}',
|
||||||
|
'_stubs.{js,ts,tsx}',
|
||||||
|
'{testHelpers,test_helper,test_utils}.{js,ts,tsx}',
|
||||||
|
'{postcss,webpack}.config.js',
|
||||||
|
];
|
||||||
|
|
||||||
|
/** Glob patterns which describe dev-only code. */
|
||||||
|
const DEV_PATTERNS = [
|
||||||
|
...DEV_PACKAGES.map((pkg) => `packages/${pkg}/**/*`),
|
||||||
|
...DEV_DIRECTORIES.map((dir) => `{packages,src,x-pack}/**/${dir}/**/*`),
|
||||||
|
...DEV_FILE_PATTERNS.map((file) => `{packages,src,x-pack}/**/${file}`),
|
||||||
|
'packages/kbn-interpreter/tasks/**/*',
|
||||||
|
'src/dev/**/*',
|
||||||
|
'x-pack/{dev-tools,tasks,scripts,test,build_chromium}/**/*',
|
||||||
|
'x-pack/plugins/*/server/scripts/**/*',
|
||||||
|
];
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
root: true,
|
root: true,
|
||||||
|
|
||||||
|
@ -491,43 +557,17 @@ module.exports = {
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Files that ARE NOT allowed to use devDependencies
|
* Single package.json rules, it tells eslint to ignore the child package.json files
|
||||||
|
* and look for dependencies declarations in the single and root level package.json
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
files: ['x-pack/**/*.js', 'packages/kbn-interpreter/**/*.js'],
|
files: ['{src,x-pack,packages}/**/*.{js,mjs,ts,tsx}'],
|
||||||
rules: {
|
rules: {
|
||||||
'import/no-extraneous-dependencies': [
|
'import/no-extraneous-dependencies': [
|
||||||
'error',
|
'error',
|
||||||
{
|
{
|
||||||
devDependencies: false,
|
/* Files that ARE allowed to use devDependencies */
|
||||||
peerDependencies: true,
|
devDependencies: [...DEV_PATTERNS],
|
||||||
packageDir: '.',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Files that ARE allowed to use devDependencies
|
|
||||||
*/
|
|
||||||
{
|
|
||||||
files: [
|
|
||||||
'packages/kbn-es/src/**/*.js',
|
|
||||||
'packages/kbn-interpreter/tasks/**/*.js',
|
|
||||||
'packages/kbn-interpreter/src/plugin/**/*.js',
|
|
||||||
'x-pack/{dev-tools,tasks,scripts,test,build_chromium}/**/*.js',
|
|
||||||
'x-pack/**/{__tests__,__test__,__jest__,__fixtures__,__mocks__,public}/**/*.js',
|
|
||||||
'x-pack/**/*.test.js',
|
|
||||||
'x-pack/test_utils/**/*',
|
|
||||||
'x-pack/gulpfile.js',
|
|
||||||
'x-pack/plugins/apm/public/utils/testHelpers.js',
|
|
||||||
'x-pack/plugins/canvas/shareable_runtime/postcss.config.js',
|
|
||||||
],
|
|
||||||
rules: {
|
|
||||||
'import/no-extraneous-dependencies': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
devDependencies: true,
|
|
||||||
peerDependencies: true,
|
peerDependencies: true,
|
||||||
packageDir: '.',
|
packageDir: '.',
|
||||||
},
|
},
|
||||||
|
@ -1420,21 +1460,5 @@ module.exports = {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* Single package.json rules, it tells eslint to ignore the child package.json files
|
|
||||||
* and look for dependencies declarations in the single and root level package.json
|
|
||||||
*/
|
|
||||||
{
|
|
||||||
files: ['**/*.{js,mjs,ts,tsx}'],
|
|
||||||
rules: {
|
|
||||||
'import/no-extraneous-dependencies': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
packageDir: '.',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
202
package.json
202
package.json
|
@ -95,18 +95,23 @@
|
||||||
"yarn": "^1.21.1"
|
"yarn": "^1.21.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@elastic/apm-rum": "^5.6.1",
|
||||||
|
"@elastic/apm-rum-react": "^1.2.5",
|
||||||
|
"@elastic/charts": "26.0.0",
|
||||||
"@elastic/datemath": "link:packages/elastic-datemath",
|
"@elastic/datemath": "link:packages/elastic-datemath",
|
||||||
"@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@^8.0.0-canary.4",
|
"@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@^8.0.0-canary.4",
|
||||||
"@elastic/ems-client": "7.12.0",
|
"@elastic/ems-client": "7.12.0",
|
||||||
"@elastic/eui": "31.7.0",
|
"@elastic/eui": "31.7.0",
|
||||||
"@elastic/filesaver": "1.1.2",
|
"@elastic/filesaver": "1.1.2",
|
||||||
"@elastic/good": "^9.0.1-kibana3",
|
"@elastic/good": "^9.0.1-kibana3",
|
||||||
|
"@elastic/maki": "6.3.0",
|
||||||
"@elastic/node-crypto": "1.2.1",
|
"@elastic/node-crypto": "1.2.1",
|
||||||
"@elastic/numeral": "^2.5.0",
|
"@elastic/numeral": "^2.5.0",
|
||||||
"@elastic/react-search-ui": "^1.5.1",
|
"@elastic/react-search-ui": "^1.5.1",
|
||||||
"@elastic/request-crypto": "1.1.4",
|
"@elastic/request-crypto": "1.1.4",
|
||||||
"@elastic/safer-lodash-set": "link:packages/elastic-safer-lodash-set",
|
"@elastic/safer-lodash-set": "link:packages/elastic-safer-lodash-set",
|
||||||
"@elastic/search-ui-app-search-connector": "^1.5.0",
|
"@elastic/search-ui-app-search-connector": "^1.5.0",
|
||||||
|
"@elastic/ui-ace": "0.2.3",
|
||||||
"@hapi/boom": "^9.1.1",
|
"@hapi/boom": "^9.1.1",
|
||||||
"@hapi/cookie": "^11.0.2",
|
"@hapi/cookie": "^11.0.2",
|
||||||
"@hapi/good-squeeze": "6.0.0",
|
"@hapi/good-squeeze": "6.0.0",
|
||||||
|
@ -131,9 +136,15 @@
|
||||||
"@kbn/tinymath": "link:packages/kbn-tinymath",
|
"@kbn/tinymath": "link:packages/kbn-tinymath",
|
||||||
"@kbn/ui-framework": "link:packages/kbn-ui-framework",
|
"@kbn/ui-framework": "link:packages/kbn-ui-framework",
|
||||||
"@kbn/ui-shared-deps": "link:packages/kbn-ui-shared-deps",
|
"@kbn/ui-shared-deps": "link:packages/kbn-ui-shared-deps",
|
||||||
|
"@kbn/utility-types": "link:packages/kbn-utility-types",
|
||||||
"@kbn/utils": "link:packages/kbn-utils",
|
"@kbn/utils": "link:packages/kbn-utils",
|
||||||
"@loaders.gl/core": "^2.3.1",
|
"@loaders.gl/core": "^2.3.1",
|
||||||
"@loaders.gl/json": "^2.3.1",
|
"@loaders.gl/json": "^2.3.1",
|
||||||
|
"@mapbox/geojson-rewind": "^0.5.0",
|
||||||
|
"@mapbox/mapbox-gl-draw": "^1.2.0",
|
||||||
|
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
|
||||||
|
"@mapbox/vector-tile": "1.3.1",
|
||||||
|
"@scant/router": "^0.1.1",
|
||||||
"@slack/webhook": "^5.0.4",
|
"@slack/webhook": "^5.0.4",
|
||||||
"@turf/along": "6.0.1",
|
"@turf/along": "6.0.1",
|
||||||
"@turf/area": "6.0.1",
|
"@turf/area": "6.0.1",
|
||||||
|
@ -151,41 +162,59 @@
|
||||||
"accept": "3.0.2",
|
"accept": "3.0.2",
|
||||||
"ajv": "^6.12.4",
|
"ajv": "^6.12.4",
|
||||||
"angular": "^1.8.0",
|
"angular": "^1.8.0",
|
||||||
|
"angular-aria": "^1.8.0",
|
||||||
"angular-elastic": "^2.5.1",
|
"angular-elastic": "^2.5.1",
|
||||||
|
"angular-recursion": "^1.0.5",
|
||||||
"angular-resource": "1.8.0",
|
"angular-resource": "1.8.0",
|
||||||
|
"angular-route": "^1.8.0",
|
||||||
"angular-sanitize": "^1.8.0",
|
"angular-sanitize": "^1.8.0",
|
||||||
|
"angular-sortable-view": "^0.0.17",
|
||||||
"angular-ui-ace": "0.2.3",
|
"angular-ui-ace": "0.2.3",
|
||||||
"antlr4ts": "^0.5.0-alpha.3",
|
"antlr4ts": "^0.5.0-alpha.3",
|
||||||
"apollo-cache-inmemory": "1.6.2",
|
"apollo-cache-inmemory": "1.6.2",
|
||||||
"apollo-client": "^2.3.8",
|
"apollo-client": "^2.3.8",
|
||||||
|
"apollo-link": "^1.2.3",
|
||||||
|
"apollo-link-error": "^1.1.7",
|
||||||
"apollo-link-http": "^1.5.16",
|
"apollo-link-http": "^1.5.16",
|
||||||
"apollo-link-http-common": "^0.2.15",
|
"apollo-link-http-common": "^0.2.15",
|
||||||
"apollo-link-schema": "^1.1.0",
|
"apollo-link-schema": "^1.1.0",
|
||||||
|
"apollo-link-state": "^0.4.1",
|
||||||
"apollo-server-core": "^1.3.6",
|
"apollo-server-core": "^1.3.6",
|
||||||
"apollo-server-errors": "^2.0.2",
|
"apollo-server-errors": "^2.0.2",
|
||||||
"apollo-server-hapi": "^1.3.6",
|
"apollo-server-hapi": "^1.3.6",
|
||||||
"archiver": "^5.2.0",
|
"archiver": "^5.2.0",
|
||||||
"axios": "^0.21.1",
|
"axios": "^0.21.1",
|
||||||
|
"base64-js": "^1.3.1",
|
||||||
"bluebird": "3.5.5",
|
"bluebird": "3.5.5",
|
||||||
"brace": "0.11.1",
|
"brace": "0.11.1",
|
||||||
|
"broadcast-channel": "^3.0.3",
|
||||||
"chalk": "^4.1.0",
|
"chalk": "^4.1.0",
|
||||||
"check-disk-space": "^2.1.0",
|
"check-disk-space": "^2.1.0",
|
||||||
|
"cheerio": "0.22.0",
|
||||||
"chokidar": "^3.4.3",
|
"chokidar": "^3.4.3",
|
||||||
"chroma-js": "^1.4.1",
|
"chroma-js": "^1.4.1",
|
||||||
"classnames": "2.2.6",
|
"classnames": "2.2.6",
|
||||||
"color": "1.0.3",
|
"color": "1.0.3",
|
||||||
"commander": "^3.0.2",
|
"commander": "^3.0.2",
|
||||||
|
"compare-versions": "3.5.1",
|
||||||
"concat-stream": "1.6.2",
|
"concat-stream": "1.6.2",
|
||||||
|
"constate": "^1.3.2",
|
||||||
|
"cronstrue": "^1.51.0",
|
||||||
"content-disposition": "0.5.3",
|
"content-disposition": "0.5.3",
|
||||||
|
"copy-to-clipboard": "^3.0.8",
|
||||||
"core-js": "^3.6.5",
|
"core-js": "^3.6.5",
|
||||||
"custom-event-polyfill": "^0.3.0",
|
"custom-event-polyfill": "^0.3.0",
|
||||||
"cytoscape": "^3.10.0",
|
"cytoscape": "^3.10.0",
|
||||||
"cytoscape-dagre": "^2.2.2",
|
"cytoscape-dagre": "^2.2.2",
|
||||||
|
"d3": "3.5.17",
|
||||||
"d3-array": "1.2.4",
|
"d3-array": "1.2.4",
|
||||||
|
"d3-cloud": "1.2.5",
|
||||||
|
"d3-scale": "1.0.7",
|
||||||
"d3-shape": "^1.1.0",
|
"d3-shape": "^1.1.0",
|
||||||
"d3-time": "^1.1.0",
|
"d3-time": "^1.1.0",
|
||||||
"dedent": "^0.7.0",
|
"dedent": "^0.7.0",
|
||||||
"deep-freeze-strict": "^1.1.1",
|
"deep-freeze-strict": "^1.1.1",
|
||||||
|
"deepmerge": "^4.2.2",
|
||||||
"del": "^5.1.0",
|
"del": "^5.1.0",
|
||||||
"elastic-apm-node": "^3.10.0",
|
"elastic-apm-node": "^3.10.0",
|
||||||
"elasticsearch": "^16.7.0",
|
"elasticsearch": "^16.7.0",
|
||||||
|
@ -194,9 +223,11 @@
|
||||||
"expiry-js": "0.1.7",
|
"expiry-js": "0.1.7",
|
||||||
"extract-zip": "^2.0.1",
|
"extract-zip": "^2.0.1",
|
||||||
"fast-deep-equal": "^3.1.1",
|
"fast-deep-equal": "^3.1.1",
|
||||||
|
"file-saver": "^1.3.8",
|
||||||
"file-type": "^10.9.0",
|
"file-type": "^10.9.0",
|
||||||
"focus-trap-react": "^3.1.1",
|
"focus-trap-react": "^3.1.1",
|
||||||
"font-awesome": "4.7.0",
|
"font-awesome": "4.7.0",
|
||||||
|
"formsy-react": "^1.1.5",
|
||||||
"fp-ts": "^2.3.1",
|
"fp-ts": "^2.3.1",
|
||||||
"geojson-vt": "^3.2.1",
|
"geojson-vt": "^3.2.1",
|
||||||
"get-port": "^5.0.0",
|
"get-port": "^5.0.0",
|
||||||
|
@ -212,31 +243,51 @@
|
||||||
"graphql-tag": "^2.10.3",
|
"graphql-tag": "^2.10.3",
|
||||||
"graphql-tools": "^3.0.2",
|
"graphql-tools": "^3.0.2",
|
||||||
"handlebars": "4.7.7",
|
"handlebars": "4.7.7",
|
||||||
|
"he": "^1.2.0",
|
||||||
"history": "^4.9.0",
|
"history": "^4.9.0",
|
||||||
|
"history-extra": "^5.0.1",
|
||||||
"hjson": "3.2.1",
|
"hjson": "3.2.1",
|
||||||
"http-proxy-agent": "^2.1.0",
|
"http-proxy-agent": "^2.1.0",
|
||||||
"https-proxy-agent": "^5.0.0",
|
"https-proxy-agent": "^5.0.0",
|
||||||
|
"i18n-iso-countries": "^4.3.1",
|
||||||
|
"icalendar": "0.7.1",
|
||||||
"idx": "^2.5.6",
|
"idx": "^2.5.6",
|
||||||
"immer": "^8.0.1",
|
"immer": "^8.0.1",
|
||||||
"inline-style": "^2.0.0",
|
"inline-style": "^2.0.0",
|
||||||
"intl": "^1.2.5",
|
"intl": "^1.2.5",
|
||||||
"intl-format-cache": "^2.1.0",
|
"intl-format-cache": "^2.1.0",
|
||||||
"intl-messageformat": "^2.2.0",
|
"intl-messageformat": "^2.2.0",
|
||||||
|
"intl-messageformat-parser": "^1.4.0",
|
||||||
"intl-relativeformat": "^2.1.0",
|
"intl-relativeformat": "^2.1.0",
|
||||||
"io-ts": "^2.0.5",
|
"io-ts": "^2.0.5",
|
||||||
"ipaddr.js": "2.0.0",
|
"ipaddr.js": "2.0.0",
|
||||||
"isbinaryfile": "4.0.2",
|
"isbinaryfile": "4.0.2",
|
||||||
"joi": "^13.5.2",
|
"joi": "^13.5.2",
|
||||||
"jquery": "^3.5.0",
|
"jquery": "^3.5.0",
|
||||||
|
"js-levenshtein": "^1.1.6",
|
||||||
|
"js-search": "^1.4.3",
|
||||||
"js-yaml": "^3.14.0",
|
"js-yaml": "^3.14.0",
|
||||||
"json-stable-stringify": "^1.0.1",
|
"json-stable-stringify": "^1.0.1",
|
||||||
|
"json-stringify-pretty-compact": "1.2.0",
|
||||||
"json-stringify-safe": "5.0.1",
|
"json-stringify-safe": "5.0.1",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
|
"jsts": "^1.6.2",
|
||||||
|
"kea": "^2.3.0",
|
||||||
|
"leaflet": "1.5.1",
|
||||||
|
"leaflet-draw": "0.4.14",
|
||||||
|
"leaflet-responsive-popup": "0.6.4",
|
||||||
|
"leaflet.heat": "0.2.0",
|
||||||
|
"less": "npm:@elastic/less@2.7.3-kibana",
|
||||||
"load-json-file": "^6.2.0",
|
"load-json-file": "^6.2.0",
|
||||||
|
"loader-utils": "^1.2.3",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"lru-cache": "^4.1.5",
|
"lru-cache": "^4.1.5",
|
||||||
|
"lz-string": "^1.4.4",
|
||||||
"markdown-it": "^10.0.0",
|
"markdown-it": "^10.0.0",
|
||||||
|
"mapbox-gl": "1.13.1",
|
||||||
|
"mapbox-gl-draw-rectangle-mode": "^1.0.4",
|
||||||
"md5": "^2.1.0",
|
"md5": "^2.1.0",
|
||||||
|
"memoize-one": "^5.0.0",
|
||||||
"mime": "^2.4.4",
|
"mime": "^2.4.4",
|
||||||
"mime-types": "^2.1.27",
|
"mime-types": "^2.1.27",
|
||||||
"mini-css-extract-plugin": "0.8.0",
|
"mini-css-extract-plugin": "0.8.0",
|
||||||
|
@ -261,38 +312,69 @@
|
||||||
"papaparse": "^5.2.0",
|
"papaparse": "^5.2.0",
|
||||||
"pdfmake": "^0.1.65",
|
"pdfmake": "^0.1.65",
|
||||||
"pegjs": "0.10.0",
|
"pegjs": "0.10.0",
|
||||||
|
"p-limit": "^3.0.1",
|
||||||
|
"pluralize": "3.1.0",
|
||||||
"pngjs": "^3.4.0",
|
"pngjs": "^3.4.0",
|
||||||
|
"polished": "^1.9.2",
|
||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.7.2",
|
||||||
"proper-lockfile": "^3.2.0",
|
"proper-lockfile": "^3.2.0",
|
||||||
"proxy-from-env": "1.0.0",
|
"proxy-from-env": "1.0.0",
|
||||||
|
"proxyquire": "1.8.0",
|
||||||
"puid": "1.0.7",
|
"puid": "1.0.7",
|
||||||
"puppeteer": "npm:@elastic/puppeteer@5.4.1-patch.1",
|
"puppeteer": "npm:@elastic/puppeteer@5.4.1-patch.1",
|
||||||
"query-string": "^6.13.2",
|
"query-string": "^6.13.2",
|
||||||
"raw-loader": "^3.1.0",
|
"raw-loader": "^3.1.0",
|
||||||
|
"rbush": "^3.0.1",
|
||||||
|
"re-resizable": "^6.1.1",
|
||||||
"re2": "^1.15.4",
|
"re2": "^1.15.4",
|
||||||
"react": "^16.12.0",
|
"react": "^16.12.0",
|
||||||
"react-ace": "^5.9.0",
|
"react-ace": "^5.9.0",
|
||||||
|
"react-apollo": "^2.1.4",
|
||||||
|
"react-beautiful-dnd": "^13.0.0",
|
||||||
"react-color": "^2.13.8",
|
"react-color": "^2.13.8",
|
||||||
"react-datetime": "^2.14.0",
|
"react-datetime": "^2.14.0",
|
||||||
"react-dom": "^16.12.0",
|
"react-dom": "^16.12.0",
|
||||||
|
"react-dropzone": "^4.2.9",
|
||||||
|
"react-fast-compare": "^2.0.4",
|
||||||
|
"react-grid-layout": "^0.16.2",
|
||||||
"react-input-range": "^1.3.0",
|
"react-input-range": "^1.3.0",
|
||||||
"react-intl": "^2.8.0",
|
"react-intl": "^2.8.0",
|
||||||
"react-is": "^16.8.0",
|
"react-is": "^16.8.0",
|
||||||
|
"react-markdown": "^4.3.1",
|
||||||
"react-moment-proptypes": "^1.7.0",
|
"react-moment-proptypes": "^1.7.0",
|
||||||
|
"react-monaco-editor": "^0.41.2",
|
||||||
|
"react-popper-tooltip": "^2.10.1",
|
||||||
"react-query": "^3.12.0",
|
"react-query": "^3.12.0",
|
||||||
|
"react-resize-detector": "^4.2.0",
|
||||||
|
"react-reverse-portal": "^1.0.4",
|
||||||
|
"react-router-redux": "^4.0.8",
|
||||||
|
"react-shortcuts": "^2.0.0",
|
||||||
|
"react-sizeme": "^2.3.6",
|
||||||
|
"react-syntax-highlighter": "^15.3.1",
|
||||||
"react-redux": "^7.2.0",
|
"react-redux": "^7.2.0",
|
||||||
"react-resizable": "^1.7.5",
|
"react-resizable": "^1.7.5",
|
||||||
"react-router": "^5.2.0",
|
"react-router": "^5.2.0",
|
||||||
"react-router-dom": "^5.2.0",
|
"react-router-dom": "^5.2.0",
|
||||||
|
"react-tiny-virtual-list": "^2.2.0",
|
||||||
|
"react-virtualized": "^9.21.2",
|
||||||
"react-use": "^15.3.8",
|
"react-use": "^15.3.8",
|
||||||
|
"react-vis": "^1.8.1",
|
||||||
|
"react-visibility-sensor": "^5.1.1",
|
||||||
|
"reactcss": "1.2.3",
|
||||||
"recompose": "^0.26.0",
|
"recompose": "^0.26.0",
|
||||||
|
"reduce-reducers": "^1.0.4",
|
||||||
"redux": "^4.0.5",
|
"redux": "^4.0.5",
|
||||||
"redux-actions": "^2.6.5",
|
"redux-actions": "^2.6.5",
|
||||||
|
"redux-devtools-extension": "^2.13.8",
|
||||||
"redux-observable": "^1.2.0",
|
"redux-observable": "^1.2.0",
|
||||||
|
"redux-saga": "^1.1.3",
|
||||||
"redux-thunk": "^2.3.0",
|
"redux-thunk": "^2.3.0",
|
||||||
|
"redux-thunks": "^1.0.0",
|
||||||
"regenerator-runtime": "^0.13.3",
|
"regenerator-runtime": "^0.13.3",
|
||||||
"request": "^2.88.0",
|
"request": "^2.88.0",
|
||||||
"require-in-the-middle": "^5.0.2",
|
"require-in-the-middle": "^5.0.2",
|
||||||
|
"reselect": "^4.0.0",
|
||||||
|
"resize-observer-polyfill": "^1.5.0",
|
||||||
"rison-node": "1.0.2",
|
"rison-node": "1.0.2",
|
||||||
"rxjs": "^6.5.5",
|
"rxjs": "^6.5.5",
|
||||||
"seedrandom": "^3.0.5",
|
"seedrandom": "^3.0.5",
|
||||||
|
@ -305,17 +387,30 @@
|
||||||
"style-it": "^2.1.3",
|
"style-it": "^2.1.3",
|
||||||
"styled-components": "^5.1.0",
|
"styled-components": "^5.1.0",
|
||||||
"symbol-observable": "^1.2.0",
|
"symbol-observable": "^1.2.0",
|
||||||
|
"suricata-sid-db": "^1.0.2",
|
||||||
"tabbable": "1.1.3",
|
"tabbable": "1.1.3",
|
||||||
"tar": "4.4.13",
|
"tar": "4.4.13",
|
||||||
|
"tinycolor2": "1.4.1",
|
||||||
"tinygradient": "0.4.3",
|
"tinygradient": "0.4.3",
|
||||||
|
"topojson-client": "3.0.0",
|
||||||
"tree-kill": "^1.2.2",
|
"tree-kill": "^1.2.2",
|
||||||
"ts-easing": "^0.2.0",
|
"ts-easing": "^0.2.0",
|
||||||
"tslib": "^2.0.0",
|
"tslib": "^2.0.0",
|
||||||
"type-detect": "^4.0.8",
|
"type-detect": "^4.0.8",
|
||||||
|
"typescript-fsa": "^3.0.0",
|
||||||
|
"typescript-fsa-reducers": "^1.2.2",
|
||||||
"ui-select": "0.19.8",
|
"ui-select": "0.19.8",
|
||||||
"unified": "^9.2.1",
|
"unified": "^9.2.1",
|
||||||
|
"unstated": "^2.1.1",
|
||||||
|
"use-resize-observer": "^6.0.0",
|
||||||
"utility-types": "^3.10.0",
|
"utility-types": "^3.10.0",
|
||||||
"uuid": "3.3.2",
|
"uuid": "3.3.2",
|
||||||
|
"vega": "^5.19.1",
|
||||||
|
"vega-lite": "^4.17.0",
|
||||||
|
"vega-schema-url-parser": "^2.1.0",
|
||||||
|
"vega-spec-injector": "^0.0.2",
|
||||||
|
"vega-tooltip": "^0.25.0",
|
||||||
|
"venn.js": "0.2.20",
|
||||||
"vinyl": "^2.2.0",
|
"vinyl": "^2.2.0",
|
||||||
"vt-pbf": "^3.1.1",
|
"vt-pbf": "^3.1.1",
|
||||||
"wellknown": "^0.5.0",
|
"wellknown": "^0.5.0",
|
||||||
|
@ -347,13 +442,10 @@
|
||||||
"@cypress/webpack-preprocessor": "^5.5.0",
|
"@cypress/webpack-preprocessor": "^5.5.0",
|
||||||
"@elastic/apm-rum": "^5.6.1",
|
"@elastic/apm-rum": "^5.6.1",
|
||||||
"@elastic/apm-rum-react": "^1.2.5",
|
"@elastic/apm-rum-react": "^1.2.5",
|
||||||
"@elastic/charts": "26.0.0",
|
|
||||||
"@elastic/eslint-config-kibana": "link:packages/elastic-eslint-config-kibana",
|
"@elastic/eslint-config-kibana": "link:packages/elastic-eslint-config-kibana",
|
||||||
"@elastic/eslint-plugin-eui": "0.0.2",
|
"@elastic/eslint-plugin-eui": "0.0.2",
|
||||||
"@elastic/github-checks-reporter": "0.0.20b3",
|
"@elastic/github-checks-reporter": "0.0.20b3",
|
||||||
"@elastic/makelogs": "^6.0.0",
|
"@elastic/makelogs": "^6.0.0",
|
||||||
"@elastic/maki": "6.3.0",
|
|
||||||
"@elastic/ui-ace": "0.2.3",
|
|
||||||
"@istanbuljs/schema": "^0.1.2",
|
"@istanbuljs/schema": "^0.1.2",
|
||||||
"@jest/reporters": "^26.5.2",
|
"@jest/reporters": "^26.5.2",
|
||||||
"@kbn/babel-code-parser": "link:packages/kbn-babel-code-parser",
|
"@kbn/babel-code-parser": "link:packages/kbn-babel-code-parser",
|
||||||
|
@ -373,17 +465,11 @@
|
||||||
"@kbn/telemetry-tools": "link:packages/kbn-telemetry-tools",
|
"@kbn/telemetry-tools": "link:packages/kbn-telemetry-tools",
|
||||||
"@kbn/test": "link:packages/kbn-test",
|
"@kbn/test": "link:packages/kbn-test",
|
||||||
"@kbn/test-subj-selector": "link:packages/kbn-test-subj-selector",
|
"@kbn/test-subj-selector": "link:packages/kbn-test-subj-selector",
|
||||||
"@kbn/utility-types": "link:packages/kbn-utility-types",
|
|
||||||
"@loaders.gl/polyfills": "^2.3.5",
|
"@loaders.gl/polyfills": "^2.3.5",
|
||||||
"@mapbox/geojson-rewind": "^0.5.0",
|
|
||||||
"@mapbox/mapbox-gl-draw": "^1.2.0",
|
|
||||||
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
|
|
||||||
"@mapbox/vector-tile": "1.3.1",
|
|
||||||
"@microsoft/api-documenter": "7.7.2",
|
"@microsoft/api-documenter": "7.7.2",
|
||||||
"@microsoft/api-extractor": "7.7.0",
|
"@microsoft/api-extractor": "7.7.0",
|
||||||
"@octokit/rest": "^16.35.0",
|
"@octokit/rest": "^16.35.0",
|
||||||
"@percy/agent": "^0.28.6",
|
"@percy/agent": "^0.28.6",
|
||||||
"@scant/router": "^0.1.0",
|
|
||||||
"@storybook/addon-a11y": "^6.1.20",
|
"@storybook/addon-a11y": "^6.1.20",
|
||||||
"@storybook/addon-actions": "^6.1.20",
|
"@storybook/addon-actions": "^6.1.20",
|
||||||
"@storybook/addon-docs": "^6.1.20",
|
"@storybook/addon-docs": "^6.1.20",
|
||||||
|
@ -456,7 +542,6 @@
|
||||||
"@types/he": "^1.1.1",
|
"@types/he": "^1.1.1",
|
||||||
"@types/history": "^4.7.3",
|
"@types/history": "^4.7.3",
|
||||||
"@types/hjson": "^2.4.2",
|
"@types/hjson": "^2.4.2",
|
||||||
"@types/hoist-non-react-statics": "^3.3.1",
|
|
||||||
"@types/http-proxy": "^1.17.4",
|
"@types/http-proxy": "^1.17.4",
|
||||||
"@types/http-proxy-agent": "^2.0.2",
|
"@types/http-proxy-agent": "^2.0.2",
|
||||||
"@types/inquirer": "^7.3.1",
|
"@types/inquirer": "^7.3.1",
|
||||||
|
@ -476,7 +561,6 @@
|
||||||
"@types/listr": "^0.14.0",
|
"@types/listr": "^0.14.0",
|
||||||
"@types/loader-utils": "^1.1.3",
|
"@types/loader-utils": "^1.1.3",
|
||||||
"@types/lodash": "^4.14.159",
|
"@types/lodash": "^4.14.159",
|
||||||
"@types/log-symbols": "^2.0.0",
|
|
||||||
"@types/lru-cache": "^5.1.0",
|
"@types/lru-cache": "^5.1.0",
|
||||||
"@types/mapbox-gl": "^1.9.1",
|
"@types/mapbox-gl": "^1.9.1",
|
||||||
"@types/markdown-it": "^0.0.7",
|
"@types/markdown-it": "^0.0.7",
|
||||||
|
@ -563,21 +647,13 @@
|
||||||
"@types/zen-observable": "^0.8.0",
|
"@types/zen-observable": "^0.8.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^4.14.1",
|
"@typescript-eslint/eslint-plugin": "^4.14.1",
|
||||||
"@typescript-eslint/parser": "^4.14.1",
|
"@typescript-eslint/parser": "^4.14.1",
|
||||||
"@welldone-software/why-did-you-render": "^5.0.0",
|
|
||||||
"@yarnpkg/lockfile": "^1.1.0",
|
"@yarnpkg/lockfile": "^1.1.0",
|
||||||
"abab": "^2.0.4",
|
"abab": "^2.0.4",
|
||||||
"aggregate-error": "^3.1.0",
|
"aggregate-error": "^3.1.0",
|
||||||
"angular-aria": "^1.8.0",
|
|
||||||
"angular-mocks": "^1.7.9",
|
"angular-mocks": "^1.7.9",
|
||||||
"angular-recursion": "^1.0.5",
|
|
||||||
"angular-route": "^1.8.0",
|
|
||||||
"angular-sortable-view": "^0.0.17",
|
|
||||||
"antlr4ts-cli": "^0.5.0-alpha.3",
|
"antlr4ts-cli": "^0.5.0-alpha.3",
|
||||||
"apidoc": "^0.25.0",
|
"apidoc": "^0.25.0",
|
||||||
"apidoc-markdown": "^5.1.8",
|
"apidoc-markdown": "^5.1.8",
|
||||||
"apollo-link": "^1.2.3",
|
|
||||||
"apollo-link-error": "^1.1.7",
|
|
||||||
"apollo-link-state": "^0.4.1",
|
|
||||||
"argsplit": "^1.0.5",
|
"argsplit": "^1.0.5",
|
||||||
"autoprefixer": "^9.7.4",
|
"autoprefixer": "^9.7.4",
|
||||||
"axe-core": "^4.0.2",
|
"axe-core": "^4.0.2",
|
||||||
|
@ -590,34 +666,23 @@
|
||||||
"babel-plugin-styled-components": "^1.10.7",
|
"babel-plugin-styled-components": "^1.10.7",
|
||||||
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
||||||
"backport": "^5.6.6",
|
"backport": "^5.6.6",
|
||||||
"base64-js": "^1.3.1",
|
|
||||||
"base64url": "^3.0.1",
|
"base64url": "^3.0.1",
|
||||||
"broadcast-channel": "^3.0.3",
|
|
||||||
"callsites": "^3.1.0",
|
"callsites": "^3.1.0",
|
||||||
"chai": "3.5.0",
|
"chai": "3.5.0",
|
||||||
"chance": "1.0.18",
|
"chance": "1.0.18",
|
||||||
"cheerio": "0.22.0",
|
|
||||||
"chromedriver": "^89.0.0",
|
"chromedriver": "^89.0.0",
|
||||||
"clean-webpack-plugin": "^3.0.0",
|
"clean-webpack-plugin": "^3.0.0",
|
||||||
"cmd-shim": "^2.1.0",
|
"cmd-shim": "^2.1.0",
|
||||||
"compare-versions": "3.5.1",
|
|
||||||
"compression-webpack-plugin": "^4.0.0",
|
"compression-webpack-plugin": "^4.0.0",
|
||||||
"constate": "^1.3.2",
|
|
||||||
"copy-to-clipboard": "^3.0.8",
|
|
||||||
"copy-webpack-plugin": "^6.0.2",
|
"copy-webpack-plugin": "^6.0.2",
|
||||||
"cpy": "^8.1.1",
|
"cpy": "^8.1.1",
|
||||||
"cronstrue": "^1.51.0",
|
|
||||||
"css-loader": "^3.4.2",
|
"css-loader": "^3.4.2",
|
||||||
"cypress": "^6.2.1",
|
"cypress": "^6.2.1",
|
||||||
"cypress-cucumber-preprocessor": "^2.5.2",
|
"cypress-cucumber-preprocessor": "^2.5.2",
|
||||||
"cypress-multi-reporters": "^1.4.0",
|
"cypress-multi-reporters": "^1.4.0",
|
||||||
"cypress-pipe": "^2.0.0",
|
"cypress-pipe": "^2.0.0",
|
||||||
"cypress-promise": "^1.1.0",
|
"cypress-promise": "^1.1.0",
|
||||||
"d3": "3.5.17",
|
|
||||||
"d3-cloud": "1.2.5",
|
|
||||||
"d3-scale": "1.0.7",
|
|
||||||
"debug": "^2.6.9",
|
"debug": "^2.6.9",
|
||||||
"deepmerge": "^4.2.2",
|
|
||||||
"del-cli": "^3.0.1",
|
"del-cli": "^3.0.1",
|
||||||
"delete-empty": "^2.0.0",
|
"delete-empty": "^2.0.0",
|
||||||
"dependency-check": "^4.1.0",
|
"dependency-check": "^4.1.0",
|
||||||
|
@ -654,9 +719,7 @@
|
||||||
"fast-glob": "2.2.7",
|
"fast-glob": "2.2.7",
|
||||||
"fetch-mock": "^7.3.9",
|
"fetch-mock": "^7.3.9",
|
||||||
"file-loader": "^4.2.0",
|
"file-loader": "^4.2.0",
|
||||||
"file-saver": "^1.3.8",
|
|
||||||
"form-data": "^4.0.0",
|
"form-data": "^4.0.0",
|
||||||
"formsy-react": "^1.1.5",
|
|
||||||
"geckodriver": "^1.22.2",
|
"geckodriver": "^1.22.2",
|
||||||
"glob-watcher": "5.0.3",
|
"glob-watcher": "5.0.3",
|
||||||
"graphql-code-generator": "^0.18.2",
|
"graphql-code-generator": "^0.18.2",
|
||||||
|
@ -675,19 +738,10 @@
|
||||||
"gulp-zip": "^5.0.2",
|
"gulp-zip": "^5.0.2",
|
||||||
"has-ansi": "^3.0.0",
|
"has-ansi": "^3.0.0",
|
||||||
"hdr-histogram-js": "^1.2.0",
|
"hdr-histogram-js": "^1.2.0",
|
||||||
"he": "^1.2.0",
|
|
||||||
"highlight.js": "^9.18.5",
|
|
||||||
"history-extra": "^5.0.1",
|
|
||||||
"hoist-non-react-statics": "^3.3.2",
|
|
||||||
"html": "1.0.0",
|
"html": "1.0.0",
|
||||||
"html-loader": "^0.5.5",
|
"html-loader": "^0.5.5",
|
||||||
"http-proxy": "^1.18.1",
|
"http-proxy": "^1.18.1",
|
||||||
"i18n-iso-countries": "^4.3.1",
|
|
||||||
"icalendar": "0.7.1",
|
|
||||||
"iedriver": "^3.14.2",
|
|
||||||
"imports-loader": "^0.8.0",
|
|
||||||
"inquirer": "^7.3.3",
|
"inquirer": "^7.3.3",
|
||||||
"intl-messageformat-parser": "^1.4.0",
|
|
||||||
"is-glob": "^4.0.1",
|
"is-glob": "^4.0.1",
|
||||||
"is-path-inside": "^3.0.2",
|
"is-path-inside": "^3.0.2",
|
||||||
"istanbul-instrumenter-loader": "^3.0.1",
|
"istanbul-instrumenter-loader": "^3.0.1",
|
||||||
|
@ -705,31 +759,14 @@
|
||||||
"jest-styled-components": "^7.0.2",
|
"jest-styled-components": "^7.0.2",
|
||||||
"jest-when": "^2.7.2",
|
"jest-when": "^2.7.2",
|
||||||
"jimp": "^0.14.0",
|
"jimp": "^0.14.0",
|
||||||
"js-levenshtein": "^1.1.6",
|
|
||||||
"js-search": "^1.4.3",
|
|
||||||
"jsdom": "13.1.0",
|
"jsdom": "13.1.0",
|
||||||
"json-stringify-pretty-compact": "1.2.0",
|
|
||||||
"json5": "^1.0.1",
|
"json5": "^1.0.1",
|
||||||
"jsondiffpatch": "0.4.1",
|
"jsondiffpatch": "0.4.1",
|
||||||
"jsts": "^1.6.2",
|
|
||||||
"kea": "^2.3.0",
|
|
||||||
"keymirror": "0.1.1",
|
|
||||||
"leaflet": "1.5.1",
|
|
||||||
"leaflet-draw": "0.4.14",
|
|
||||||
"leaflet-responsive-popup": "0.6.4",
|
|
||||||
"leaflet.heat": "0.2.0",
|
|
||||||
"less": "npm:@elastic/less@2.7.3-kibana",
|
|
||||||
"license-checker": "^16.0.0",
|
"license-checker": "^16.0.0",
|
||||||
"listr": "^0.14.1",
|
"listr": "^0.14.1",
|
||||||
"lmdb-store": "^0.9.0",
|
"lmdb-store": "^0.9.0",
|
||||||
"load-grunt-config": "^3.0.1",
|
"load-grunt-config": "^3.0.1",
|
||||||
"loader-utils": "^1.2.3",
|
|
||||||
"log-symbols": "^2.2.0",
|
|
||||||
"lz-string": "^1.4.4",
|
|
||||||
"mapbox-gl": "1.13.1",
|
|
||||||
"mapbox-gl-draw-rectangle-mode": "^1.0.4",
|
|
||||||
"marge": "^1.0.1",
|
"marge": "^1.0.1",
|
||||||
"memoize-one": "^5.0.0",
|
|
||||||
"micromatch": "3.1.10",
|
"micromatch": "3.1.10",
|
||||||
"minimist": "^1.2.5",
|
"minimist": "^1.2.5",
|
||||||
"mkdirp": "0.5.1",
|
"mkdirp": "0.5.1",
|
||||||
|
@ -741,8 +778,6 @@
|
||||||
"mock-http-server": "1.3.0",
|
"mock-http-server": "1.3.0",
|
||||||
"ms-chromium-edge-driver": "^0.2.3",
|
"ms-chromium-edge-driver": "^0.2.3",
|
||||||
"multimatch": "^4.0.0",
|
"multimatch": "^4.0.0",
|
||||||
"multistream": "^2.1.1",
|
|
||||||
"murmurhash3js": "3.0.1",
|
|
||||||
"mutation-observer": "^1.0.3",
|
"mutation-observer": "^1.0.3",
|
||||||
"ncp": "^2.0.0",
|
"ncp": "^2.0.0",
|
||||||
"node-sass": "^4.14.1",
|
"node-sass": "^4.14.1",
|
||||||
|
@ -750,53 +785,19 @@
|
||||||
"nyc": "^15.0.1",
|
"nyc": "^15.0.1",
|
||||||
"oboe": "^2.1.4",
|
"oboe": "^2.1.4",
|
||||||
"ora": "^4.0.4",
|
"ora": "^4.0.4",
|
||||||
"p-limit": "^3.0.1",
|
|
||||||
"parse-link-header": "^1.0.1",
|
"parse-link-header": "^1.0.1",
|
||||||
"pbf": "3.2.1",
|
"pbf": "3.2.1",
|
||||||
"pirates": "^4.0.1",
|
"pirates": "^4.0.1",
|
||||||
"pixelmatch": "^5.1.0",
|
"pixelmatch": "^5.1.0",
|
||||||
"pkg-up": "^2.0.0",
|
|
||||||
"pluralize": "3.1.0",
|
|
||||||
"polished": "^1.9.2",
|
|
||||||
"postcss": "^7.0.32",
|
"postcss": "^7.0.32",
|
||||||
"postcss-loader": "^3.0.0",
|
"postcss-loader": "^3.0.0",
|
||||||
"postcss-prefix-selector": "^1.7.2",
|
"postcss-prefix-selector": "^1.7.2",
|
||||||
"prettier": "^2.2.0",
|
"prettier": "^2.2.0",
|
||||||
"pretty-ms": "5.0.0",
|
"pretty-ms": "5.0.0",
|
||||||
"proxyquire": "1.8.0",
|
|
||||||
"q": "^1.5.1",
|
"q": "^1.5.1",
|
||||||
"querystring": "^0.2.0",
|
|
||||||
"rbush": "^3.0.1",
|
|
||||||
"re-resizable": "^6.1.1",
|
|
||||||
"react-apollo": "^2.1.4",
|
|
||||||
"react-beautiful-dnd": "^13.0.0",
|
|
||||||
"react-docgen-typescript-loader": "^3.1.1",
|
|
||||||
"react-dropzone": "^4.2.9",
|
|
||||||
"react-fast-compare": "^2.0.4",
|
|
||||||
"react-grid-layout": "^0.16.2",
|
|
||||||
"react-markdown": "^4.3.1",
|
|
||||||
"react-monaco-editor": "^0.41.2",
|
|
||||||
"react-popper-tooltip": "^2.10.1",
|
|
||||||
"react-resize-detector": "^4.2.0",
|
|
||||||
"react-reverse-portal": "^1.0.4",
|
|
||||||
"react-router-redux": "^4.0.8",
|
|
||||||
"react-shortcuts": "^2.0.0",
|
|
||||||
"react-sizeme": "^2.3.6",
|
|
||||||
"react-syntax-highlighter": "^15.3.1",
|
|
||||||
"react-test-renderer": "^16.12.0",
|
"react-test-renderer": "^16.12.0",
|
||||||
"react-tiny-virtual-list": "^2.2.0",
|
|
||||||
"react-virtualized": "^9.21.2",
|
|
||||||
"react-vis": "^1.8.1",
|
|
||||||
"react-visibility-sensor": "^5.1.1",
|
|
||||||
"reactcss": "1.2.3",
|
|
||||||
"read-pkg": "^5.2.0",
|
"read-pkg": "^5.2.0",
|
||||||
"reduce-reducers": "^1.0.4",
|
|
||||||
"redux-devtools-extension": "^2.13.8",
|
|
||||||
"redux-saga": "^1.1.3",
|
|
||||||
"redux-thunks": "^1.0.0",
|
|
||||||
"regenerate": "^1.4.0",
|
"regenerate": "^1.4.0",
|
||||||
"reselect": "^4.0.0",
|
|
||||||
"resize-observer-polyfill": "^1.5.0",
|
|
||||||
"resolve": "^1.7.1",
|
"resolve": "^1.7.1",
|
||||||
"rxjs-marbles": "^5.0.6",
|
"rxjs-marbles": "^5.0.6",
|
||||||
"sass-loader": "^8.0.2",
|
"sass-loader": "^8.0.2",
|
||||||
|
@ -816,31 +817,18 @@
|
||||||
"supertest": "^3.1.0",
|
"supertest": "^3.1.0",
|
||||||
"supertest-as-promised": "^4.0.2",
|
"supertest-as-promised": "^4.0.2",
|
||||||
"supports-color": "^7.0.0",
|
"supports-color": "^7.0.0",
|
||||||
"suricata-sid-db": "^1.0.2",
|
|
||||||
"tape": "^5.0.1",
|
"tape": "^5.0.1",
|
||||||
"tar-fs": "^2.1.0",
|
"tar-fs": "^2.1.0",
|
||||||
"tempy": "^0.3.0",
|
"tempy": "^0.3.0",
|
||||||
"terminal-link": "^2.1.1",
|
"terminal-link": "^2.1.1",
|
||||||
"terser-webpack-plugin": "^2.1.2",
|
"terser-webpack-plugin": "^2.1.2",
|
||||||
"tinycolor2": "1.4.1",
|
|
||||||
"topojson-client": "3.0.0",
|
|
||||||
"ts-loader": "^7.0.5",
|
"ts-loader": "^7.0.5",
|
||||||
"ts-morph": "^9.1.0",
|
"ts-morph": "^9.1.0",
|
||||||
"tsd": "^0.13.1",
|
"tsd": "^0.13.1",
|
||||||
"typescript": "4.1.3",
|
"typescript": "4.1.3",
|
||||||
"typescript-fsa": "^3.0.0",
|
|
||||||
"typescript-fsa-reducers": "^1.2.2",
|
|
||||||
"unlazy-loader": "^0.1.3",
|
"unlazy-loader": "^0.1.3",
|
||||||
"unstated": "^2.1.1",
|
|
||||||
"url-loader": "^2.2.0",
|
"url-loader": "^2.2.0",
|
||||||
"use-resize-observer": "^6.0.0",
|
|
||||||
"val-loader": "^1.1.1",
|
"val-loader": "^1.1.1",
|
||||||
"vega": "^5.19.1",
|
|
||||||
"vega-lite": "^4.17.0",
|
|
||||||
"vega-schema-url-parser": "^2.1.0",
|
|
||||||
"vega-spec-injector": "^0.0.2",
|
|
||||||
"vega-tooltip": "^0.25.0",
|
|
||||||
"venn.js": "0.2.20",
|
|
||||||
"vinyl-fs": "^3.0.3",
|
"vinyl-fs": "^3.0.3",
|
||||||
"wait-on": "^5.2.1",
|
"wait-on": "^5.2.1",
|
||||||
"watchpack": "^1.6.0",
|
"watchpack": "^1.6.0",
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"main": "target",
|
"main": "target",
|
||||||
"types": "target/index.d.ts",
|
"types": "target/index.d.ts",
|
||||||
"kibana": {
|
"kibana": {
|
||||||
"devOnly": true
|
"devOnly": false
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "../../node_modules/.bin/tsc",
|
"build": "../../node_modules/.bin/tsc",
|
||||||
|
|
|
@ -68,6 +68,7 @@ function applyConfigOverrides(rawConfig, opts, extraCliOptions) {
|
||||||
|
|
||||||
if (opts.ssl) {
|
if (opts.ssl) {
|
||||||
// @kbn/dev-utils is part of devDependencies
|
// @kbn/dev-utils is part of devDependencies
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
const { CA_CERT_PATH, KBN_KEY_PATH, KBN_CERT_PATH } = require('@kbn/dev-utils');
|
const { CA_CERT_PATH, KBN_KEY_PATH, KBN_CERT_PATH } = require('@kbn/dev-utils');
|
||||||
const customElasticsearchHosts = opts.elasticsearch
|
const customElasticsearchHosts = opts.elasticsearch
|
||||||
? opts.elasticsearch.split(',')
|
? opts.elasticsearch.split(',')
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
* Side Public License, v 1.
|
* Side Public License, v 1.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
export { registerTestBed, TestBed } from '@kbn/test/jest';
|
export { registerTestBed, TestBed } from '@kbn/test/jest';
|
||||||
|
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
export { getRandomString } from '@kbn/test/jest';
|
export { getRandomString } from '@kbn/test/jest';
|
||||||
|
|
|
@ -7,4 +7,5 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require('./no_transpilation');
|
require('./no_transpilation');
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
require('@kbn/optimizer').registerNodeAutoTranspilation();
|
require('@kbn/optimizer').registerNodeAutoTranspilation();
|
||||||
|
|
|
@ -12,7 +12,7 @@ import React from 'react';
|
||||||
|
|
||||||
import { EuiBasicTable, EuiBadge, EuiEmptyPrompt } from '@elastic/eui';
|
import { EuiBasicTable, EuiBadge, EuiEmptyPrompt } from '@elastic/eui';
|
||||||
|
|
||||||
import { runActionColumnTests } from './shared_columns_tests';
|
import { runActionColumnTests } from './test_helpers/shared_columns_tests';
|
||||||
|
|
||||||
import { AnalyticsTable } from './';
|
import { AnalyticsTable } from './';
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ import React from 'react';
|
||||||
|
|
||||||
import { EuiBasicTable, EuiBadge, EuiEmptyPrompt } from '@elastic/eui';
|
import { EuiBasicTable, EuiBadge, EuiEmptyPrompt } from '@elastic/eui';
|
||||||
|
|
||||||
import { runActionColumnTests } from './shared_columns_tests';
|
import { runActionColumnTests } from './test_helpers/shared_columns_tests';
|
||||||
|
|
||||||
import { RecentQueriesTable } from './';
|
import { RecentQueriesTable } from './';
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ import {
|
||||||
mockHttpValues,
|
mockHttpValues,
|
||||||
mockKibanaValues,
|
mockKibanaValues,
|
||||||
mockFlashMessageHelpers,
|
mockFlashMessageHelpers,
|
||||||
} from '../../../../../__mocks__';
|
} from '../../../../../../__mocks__';
|
||||||
import '../../../../__mocks__/engine_logic.mock';
|
import '../../../../../__mocks__/engine_logic.mock';
|
||||||
|
|
||||||
import { ReactWrapper } from 'enzyme';
|
import { ReactWrapper } from 'enzyme';
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
* 2.0.
|
* 2.0.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
import { mount, ReactWrapper } from 'enzyme';
|
import { mount, ReactWrapper } from 'enzyme';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { act as reactAct } from 'react-dom/test-utils';
|
import { act as reactAct } from 'react-dom/test-utils';
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
* 2.0.
|
* 2.0.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
import * as ts from 'typescript';
|
import * as ts from 'typescript';
|
||||||
|
|
||||||
export interface DocEntry {
|
export interface DocEntry {
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
import { Client } from '@elastic/elasticsearch';
|
import { Client } from '@elastic/elasticsearch';
|
||||||
import seedrandom from 'seedrandom';
|
import seedrandom from 'seedrandom';
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
import { KbnClient } from '@kbn/test';
|
import { KbnClient } from '@kbn/test';
|
||||||
import { AxiosResponse } from 'axios';
|
import { AxiosResponse } from 'axios';
|
||||||
import { EndpointDocGenerator, TreeOptions, Event } from './generate_data';
|
import { EndpointDocGenerator, TreeOptions, Event } from './generate_data';
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
* 2.0.
|
* 2.0.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
import { mount } from 'enzyme';
|
import { mount } from 'enzyme';
|
||||||
|
|
||||||
type WrapperOf<F extends (...args: any) => any> = (...args: Parameters<F>) => ReturnType<F>; // eslint-disable-line
|
type WrapperOf<F extends (...args: any) => any> = (...args: Parameters<F>) => ReturnType<F>; // eslint-disable-line
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
* 2.0.
|
* 2.0.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
import { act } from '@testing-library/react';
|
import { act } from '@testing-library/react';
|
||||||
import { SideEffectSimulator } from '../types';
|
import { SideEffectSimulator } from '../types';
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@ import React, { ReactElement } from 'react';
|
||||||
import { Router } from 'react-router-dom';
|
import { Router } from 'react-router-dom';
|
||||||
import { MemoryHistory } from 'history/createMemoryHistory';
|
import { MemoryHistory } from 'history/createMemoryHistory';
|
||||||
import { createMemoryHistory, History } from 'history';
|
import { createMemoryHistory, History } from 'history';
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
import { mountWithIntl, renderWithIntl, shallowWithIntl } from '@kbn/test/jest';
|
import { mountWithIntl, renderWithIntl, shallowWithIntl } from '@kbn/test/jest';
|
||||||
import { MountWithReduxProvider } from './helper_with_redux';
|
import { MountWithReduxProvider } from './helper_with_redux';
|
||||||
import { AppState } from '../../state';
|
import { AppState } from '../../state';
|
||||||
|
|
|
@ -7,12 +7,14 @@
|
||||||
|
|
||||||
import React, { ReactElement } from 'react';
|
import React, { ReactElement } from 'react';
|
||||||
import { of } from 'rxjs';
|
import { of } from 'rxjs';
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
import { render as reactTestLibRender, RenderOptions } from '@testing-library/react';
|
import { render as reactTestLibRender, RenderOptions } from '@testing-library/react';
|
||||||
import { Router } from 'react-router-dom';
|
import { Router } from 'react-router-dom';
|
||||||
import { createMemoryHistory, History } from 'history';
|
import { createMemoryHistory, History } from 'history';
|
||||||
import { CoreStart } from 'kibana/public';
|
import { CoreStart } from 'kibana/public';
|
||||||
import { I18nProvider } from '@kbn/i18n/react';
|
import { I18nProvider } from '@kbn/i18n/react';
|
||||||
import { coreMock } from 'src/core/public/mocks';
|
import { coreMock } from 'src/core/public/mocks';
|
||||||
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
import { configure } from '@testing-library/dom';
|
import { configure } from '@testing-library/dom';
|
||||||
import { mockState } from '../__mocks__/uptime_store.mock';
|
import { mockState } from '../__mocks__/uptime_store.mock';
|
||||||
import { EuiThemeProvider } from '../../../../../../src/plugins/kibana_react/common';
|
import { EuiThemeProvider } from '../../../../../../src/plugins/kibana_react/common';
|
||||||
|
|
167
yarn.lock
167
yarn.lock
|
@ -3490,10 +3490,10 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
any-observable "^0.3.0"
|
any-observable "^0.3.0"
|
||||||
|
|
||||||
"@scant/router@^0.1.0":
|
"@scant/router@^0.1.1":
|
||||||
version "0.1.0"
|
version "0.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@scant/router/-/router-0.1.0.tgz#54e7e32282ee05d40ea410a4987ae6444080f989"
|
resolved "https://registry.yarnpkg.com/@scant/router/-/router-0.1.1.tgz#df3c9ae1796efce02f41c95c35166d708d88ef4a"
|
||||||
integrity sha1-VOfjIoLuBdQOpBCkmHrmRECA+Yk=
|
integrity sha512-9MiMXmEVFLm7jalyyVOtCvUN5dsIF9UgZW62BRw74vxEauLmeI0BTtJBmFdD4hMDL/QfHJc8egBPm2+f4s58wg==
|
||||||
dependencies:
|
dependencies:
|
||||||
url-pattern "^1.0.3"
|
url-pattern "^1.0.3"
|
||||||
|
|
||||||
|
@ -4927,7 +4927,7 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/hjson/-/hjson-2.4.2.tgz#fd0288a5b6778cda993c978e43cc978ddc8f22e9"
|
resolved "https://registry.yarnpkg.com/@types/hjson/-/hjson-2.4.2.tgz#fd0288a5b6778cda993c978e43cc978ddc8f22e9"
|
||||||
integrity sha512-MSKTfEyR8DbzJTOAY47BIJBD72ol4cu6BOw5inda0q1eEtEmurVHL4OmYB3Lxa4/DwXbWidkddvtoygbGQEDIw==
|
integrity sha512-MSKTfEyR8DbzJTOAY47BIJBD72ol4cu6BOw5inda0q1eEtEmurVHL4OmYB3Lxa4/DwXbWidkddvtoygbGQEDIw==
|
||||||
|
|
||||||
"@types/hoist-non-react-statics@*", "@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1":
|
"@types/hoist-non-react-statics@*", "@types/hoist-non-react-statics@^3.3.0":
|
||||||
version "3.3.1"
|
version "3.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f"
|
resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f"
|
||||||
integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==
|
integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==
|
||||||
|
@ -5164,11 +5164,6 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.159.tgz#61089719dc6fdd9c5cb46efc827f2571d1517065"
|
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.159.tgz#61089719dc6fdd9c5cb46efc827f2571d1517065"
|
||||||
integrity sha512-gF7A72f7WQN33DpqOWw9geApQPh4M3PxluMtaHxWHXEGSN12/WbcEk/eNSqWNQcQhF66VSZ06vCF94CrHwXJDg==
|
integrity sha512-gF7A72f7WQN33DpqOWw9geApQPh4M3PxluMtaHxWHXEGSN12/WbcEk/eNSqWNQcQhF66VSZ06vCF94CrHwXJDg==
|
||||||
|
|
||||||
"@types/log-symbols@^2.0.0":
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/log-symbols/-/log-symbols-2.0.0.tgz#7919e2ec3c8d13879bfdcab310dd7a3f7fc9466d"
|
|
||||||
integrity sha512-YJhbp0sz3egFFKl3BcCNPQKzuGFOP4PACcsifhK6ROGnJUW9ViYLuLybQ9GQZm7Zejy3tkGuiXYMq3GiyGkU4g==
|
|
||||||
|
|
||||||
"@types/lru-cache@^5.1.0":
|
"@types/lru-cache@^5.1.0":
|
||||||
version "5.1.0"
|
version "5.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@types/lru-cache/-/lru-cache-5.1.0.tgz#57f228f2b80c046b4a1bd5cac031f81f207f4f03"
|
resolved "https://registry.yarnpkg.com/@types/lru-cache/-/lru-cache-5.1.0.tgz#57f228f2b80c046b4a1bd5cac031f81f207f4f03"
|
||||||
|
@ -6259,25 +6254,6 @@
|
||||||
"@webassemblyjs/wast-parser" "1.9.0"
|
"@webassemblyjs/wast-parser" "1.9.0"
|
||||||
"@xtuc/long" "4.2.2"
|
"@xtuc/long" "4.2.2"
|
||||||
|
|
||||||
"@webpack-contrib/schema-utils@^1.0.0-beta.0":
|
|
||||||
version "1.0.0-beta.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@webpack-contrib/schema-utils/-/schema-utils-1.0.0-beta.0.tgz#bf9638c9464d177b48209e84209e23bee2eb4f65"
|
|
||||||
integrity sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==
|
|
||||||
dependencies:
|
|
||||||
ajv "^6.1.0"
|
|
||||||
ajv-keywords "^3.1.0"
|
|
||||||
chalk "^2.3.2"
|
|
||||||
strip-ansi "^4.0.0"
|
|
||||||
text-table "^0.2.0"
|
|
||||||
webpack-log "^1.1.2"
|
|
||||||
|
|
||||||
"@welldone-software/why-did-you-render@^5.0.0":
|
|
||||||
version "5.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@welldone-software/why-did-you-render/-/why-did-you-render-5.0.0.tgz#5dd8d20ad9f00fd500de852dd06eea0c057a0bce"
|
|
||||||
integrity sha512-A6xUP/55vJQwA1+L6iZbG81cQanSQQVR15yPcjLIp6lHmybXEOXsYcuXaDZHYqiNStZRzv64YPcYJC9wdphfhw==
|
|
||||||
dependencies:
|
|
||||||
lodash "^4"
|
|
||||||
|
|
||||||
"@wildpeaks/snapshot-dom@1.6.0":
|
"@wildpeaks/snapshot-dom@1.6.0":
|
||||||
version "1.6.0"
|
version "1.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/@wildpeaks/snapshot-dom/-/snapshot-dom-1.6.0.tgz#83297612bf93b97983beafbe6ae71672642ac884"
|
resolved "https://registry.yarnpkg.com/@wildpeaks/snapshot-dom/-/snapshot-dom-1.6.0.tgz#83297612bf93b97983beafbe6ae71672642ac884"
|
||||||
|
@ -9153,7 +9129,7 @@ chai@^4.1.2:
|
||||||
pathval "^1.1.0"
|
pathval "^1.1.0"
|
||||||
type-detect "^4.0.5"
|
type-detect "^4.0.5"
|
||||||
|
|
||||||
chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2:
|
chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2:
|
||||||
version "2.4.2"
|
version "2.4.2"
|
||||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
||||||
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
||||||
|
@ -9985,7 +9961,7 @@ concaveman@*:
|
||||||
robust-orientation "^1.1.3"
|
robust-orientation "^1.1.3"
|
||||||
tinyqueue "^1.1.0"
|
tinyqueue "^1.1.0"
|
||||||
|
|
||||||
config-chain@^1.1.12, config-chain@~1.1.8:
|
config-chain@^1.1.12:
|
||||||
version "1.1.12"
|
version "1.1.12"
|
||||||
resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
|
resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
|
||||||
integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==
|
integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==
|
||||||
|
@ -13301,7 +13277,7 @@ extract-stack@^1.0.0:
|
||||||
resolved "https://registry.yarnpkg.com/extract-stack/-/extract-stack-1.0.0.tgz#b97acaf9441eea2332529624b732fc5a1c8165fa"
|
resolved "https://registry.yarnpkg.com/extract-stack/-/extract-stack-1.0.0.tgz#b97acaf9441eea2332529624b732fc5a1c8165fa"
|
||||||
integrity sha1-uXrK+UQe6iMyUpYktzL8WhyBZfo=
|
integrity sha1-uXrK+UQe6iMyUpYktzL8WhyBZfo=
|
||||||
|
|
||||||
extract-zip@1.7.0, extract-zip@^1.7.0:
|
extract-zip@^1.7.0:
|
||||||
version "1.7.0"
|
version "1.7.0"
|
||||||
resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927"
|
resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927"
|
||||||
integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==
|
integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==
|
||||||
|
@ -14799,11 +14775,6 @@ graceful-fs@4.X, graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.15, g
|
||||||
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
|
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
|
||||||
integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
|
integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
|
||||||
|
|
||||||
graceful-fs@~1.1:
|
|
||||||
version "1.1.14"
|
|
||||||
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.1.14.tgz#07078db5f6377f6321fceaaedf497de124dc9465"
|
|
||||||
integrity sha1-BweNtfY3f2Mh/Oqu30l94STclGU=
|
|
||||||
|
|
||||||
graphlib@^2.1.8:
|
graphlib@^2.1.8:
|
||||||
version "2.1.8"
|
version "2.1.8"
|
||||||
resolved "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.8.tgz#5761d414737870084c92ec7b5dbcb0592c9d35da"
|
resolved "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.8.tgz#5761d414737870084c92ec7b5dbcb0592c9d35da"
|
||||||
|
@ -15938,18 +15909,6 @@ idx@^2.5.6:
|
||||||
resolved "https://registry.yarnpkg.com/idx/-/idx-2.5.6.tgz#1f824595070100ae9ad585c86db08dc74f83a59d"
|
resolved "https://registry.yarnpkg.com/idx/-/idx-2.5.6.tgz#1f824595070100ae9ad585c86db08dc74f83a59d"
|
||||||
integrity sha512-WFXLF7JgPytbMgelpRY46nHz5tyDcedJ76pLV+RJWdb8h33bxFq4bdZau38DhNSzk5eVniBf1K3jwfK+Lb5nYA==
|
integrity sha512-WFXLF7JgPytbMgelpRY46nHz5tyDcedJ76pLV+RJWdb8h33bxFq4bdZau38DhNSzk5eVniBf1K3jwfK+Lb5nYA==
|
||||||
|
|
||||||
iedriver@^3.14.2:
|
|
||||||
version "3.14.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/iedriver/-/iedriver-3.14.2.tgz#a19391ff123e21823ce0afe300e38b58a7dc79c4"
|
|
||||||
integrity sha512-vvFwfpOOZXmpXT/3Oa9SOFrr4uZNNUtBKPLRz7z8oZigvvIOokDiBlbImrd80q+rgjkmqUGi6a2NnpyCOAXnOw==
|
|
||||||
dependencies:
|
|
||||||
extract-zip "1.7.0"
|
|
||||||
kew "~0.1.7"
|
|
||||||
mkdirp "0.5.4"
|
|
||||||
npmconf "^2.1.3"
|
|
||||||
request "^2.88.0"
|
|
||||||
rimraf "~2.0.2"
|
|
||||||
|
|
||||||
ieee754@^1.1.12, ieee754@^1.1.4:
|
ieee754@^1.1.12, ieee754@^1.1.4:
|
||||||
version "1.1.13"
|
version "1.1.13"
|
||||||
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
|
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
|
||||||
|
@ -16073,14 +16032,6 @@ import-local@^3.0.2:
|
||||||
pkg-dir "^4.2.0"
|
pkg-dir "^4.2.0"
|
||||||
resolve-cwd "^3.0.0"
|
resolve-cwd "^3.0.0"
|
||||||
|
|
||||||
imports-loader@^0.8.0:
|
|
||||||
version "0.8.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.8.0.tgz#030ea51b8ca05977c40a3abfd9b4088fe0be9a69"
|
|
||||||
integrity sha512-kXWL7Scp8KQ4552ZcdVTeaQCZSLW+e6nJfp3cwUMB673T7Hr98Xjx5JK+ql7ADlJUvj1JS5O01RLbKoutN5QDQ==
|
|
||||||
dependencies:
|
|
||||||
loader-utils "^1.0.2"
|
|
||||||
source-map "^0.6.1"
|
|
||||||
|
|
||||||
imurmurhash@^0.1.4:
|
imurmurhash@^0.1.4:
|
||||||
version "0.1.4"
|
version "0.1.4"
|
||||||
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
||||||
|
@ -16146,7 +16097,7 @@ inherits@2.0.3:
|
||||||
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
||||||
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
|
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
|
||||||
|
|
||||||
ini@^1.2.0, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
|
ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
|
||||||
version "1.3.7"
|
version "1.3.7"
|
||||||
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84"
|
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84"
|
||||||
integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==
|
integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==
|
||||||
|
@ -18208,16 +18159,6 @@ kea@^2.3.0:
|
||||||
resolved "https://registry.yarnpkg.com/kea/-/kea-2.3.3.tgz#8fbd6d0c4ba5079c5abe46486bbc7dc1fd071a62"
|
resolved "https://registry.yarnpkg.com/kea/-/kea-2.3.3.tgz#8fbd6d0c4ba5079c5abe46486bbc7dc1fd071a62"
|
||||||
integrity sha512-NZQHisfEvlg+e6BsHckW03IYaIBY+fuK4xiov7ShZ0GudUmNLhqgHSxUsykU/wdrCPEI6ANX1gyDIRTnUd3HyA==
|
integrity sha512-NZQHisfEvlg+e6BsHckW03IYaIBY+fuK4xiov7ShZ0GudUmNLhqgHSxUsykU/wdrCPEI6ANX1gyDIRTnUd3HyA==
|
||||||
|
|
||||||
kew@~0.1.7:
|
|
||||||
version "0.1.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/kew/-/kew-0.1.7.tgz#0a32a817ff1a9b3b12b8c9bacf4bc4d679af8e72"
|
|
||||||
integrity sha1-CjKoF/8amzsSuMm6z0vE1nmvjnI=
|
|
||||||
|
|
||||||
keymirror@0.1.1:
|
|
||||||
version "0.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/keymirror/-/keymirror-0.1.1.tgz#918889ea13f8d0a42e7c557250eee713adc95c35"
|
|
||||||
integrity sha1-kYiJ6hP40KQufFVyUO7nE63JXDU=
|
|
||||||
|
|
||||||
keyv@^3.0.0:
|
keyv@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373"
|
resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373"
|
||||||
|
@ -18945,7 +18886,7 @@ lodash.uniq@4.5.0, lodash.uniq@^4.5.0:
|
||||||
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
||||||
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
||||||
|
|
||||||
lodash@4.17.11, lodash@4.17.15, lodash@>4.17.4, lodash@^4, lodash@^4.0.0, lodash@^4.0.1, lodash@^4.10.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.2.0, lodash@~4.17.10, lodash@~4.17.15, lodash@~4.17.19, lodash@~4.17.20:
|
lodash@4.17.11, lodash@4.17.15, lodash@>4.17.4, lodash@^4.0.0, lodash@^4.0.1, lodash@^4.10.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.2.0, lodash@~4.17.10, lodash@~4.17.15, lodash@~4.17.19, lodash@~4.17.20:
|
||||||
version "4.17.21"
|
version "4.17.21"
|
||||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
||||||
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
||||||
|
@ -18958,7 +18899,7 @@ log-ok@^0.1.1:
|
||||||
ansi-green "^0.1.1"
|
ansi-green "^0.1.1"
|
||||||
success-symbol "^0.1.0"
|
success-symbol "^0.1.0"
|
||||||
|
|
||||||
log-symbols@2.2.0, log-symbols@^2.1.0, log-symbols@^2.2.0:
|
log-symbols@2.2.0:
|
||||||
version "2.2.0"
|
version "2.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
|
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
|
||||||
integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
|
integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
|
||||||
|
@ -19011,14 +18952,6 @@ loglevel@^1.6.8:
|
||||||
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171"
|
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171"
|
||||||
integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA==
|
integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA==
|
||||||
|
|
||||||
loglevelnext@^1.0.1:
|
|
||||||
version "1.0.5"
|
|
||||||
resolved "https://registry.yarnpkg.com/loglevelnext/-/loglevelnext-1.0.5.tgz#36fc4f5996d6640f539ff203ba819641680d75a2"
|
|
||||||
integrity sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==
|
|
||||||
dependencies:
|
|
||||||
es6-symbol "^3.1.1"
|
|
||||||
object.assign "^4.1.0"
|
|
||||||
|
|
||||||
lolex@^4.2.0:
|
lolex@^4.2.0:
|
||||||
version "4.2.0"
|
version "4.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.2.0.tgz#ddbd7f6213ca1ea5826901ab1222b65d714b3cd7"
|
resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.2.0.tgz#ddbd7f6213ca1ea5826901ab1222b65d714b3cd7"
|
||||||
|
@ -19839,7 +19772,7 @@ mkdirp@0.5.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
minimist "0.0.8"
|
minimist "0.0.8"
|
||||||
|
|
||||||
mkdirp@0.5.4, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.4, mkdirp@~0.5.0, mkdirp@~0.5.1:
|
"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.4, mkdirp@~0.5.0, mkdirp@~0.5.1:
|
||||||
version "0.5.4"
|
version "0.5.4"
|
||||||
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.4.tgz#fd01504a6797ec5c9be81ff43d204961ed64a512"
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.4.tgz#fd01504a6797ec5c9be81ff43d204961ed64a512"
|
||||||
integrity sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==
|
integrity sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==
|
||||||
|
@ -20142,24 +20075,11 @@ multiparty@^4.1.2:
|
||||||
safe-buffer "5.1.2"
|
safe-buffer "5.1.2"
|
||||||
uid-safe "2.1.5"
|
uid-safe "2.1.5"
|
||||||
|
|
||||||
multistream@^2.1.1:
|
|
||||||
version "2.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/multistream/-/multistream-2.1.1.tgz#629d3a29bd76623489980d04519a2c365948148c"
|
|
||||||
integrity sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==
|
|
||||||
dependencies:
|
|
||||||
inherits "^2.0.1"
|
|
||||||
readable-stream "^2.0.5"
|
|
||||||
|
|
||||||
murmurhash-js@^1.0.0:
|
murmurhash-js@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51"
|
resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51"
|
||||||
integrity sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=
|
integrity sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=
|
||||||
|
|
||||||
murmurhash3js@3.0.1:
|
|
||||||
version "3.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/murmurhash3js/-/murmurhash3js-3.0.1.tgz#3e983e5b47c2a06f43a713174e7e435ca044b998"
|
|
||||||
integrity sha1-Ppg+W0fCoG9DpxMXTn5DXKBEuZg=
|
|
||||||
|
|
||||||
mustache@^2.3.2:
|
mustache@^2.3.2:
|
||||||
version "2.3.2"
|
version "2.3.2"
|
||||||
resolved "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz#a6d4d9c3f91d13359ab889a812954f9230a3d0c5"
|
resolved "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz#a6d4d9c3f91d13359ab889a812954f9230a3d0c5"
|
||||||
|
@ -20613,7 +20533,7 @@ nodemon@^2.0.4:
|
||||||
chalk "~0.4.0"
|
chalk "~0.4.0"
|
||||||
underscore "~1.6.0"
|
underscore "~1.6.0"
|
||||||
|
|
||||||
"nopt@2 || 3", nopt@~3.0.1, nopt@~3.0.6:
|
"nopt@2 || 3", nopt@~3.0.6:
|
||||||
version "3.0.6"
|
version "3.0.6"
|
||||||
resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
|
resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
|
||||||
integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k=
|
integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k=
|
||||||
|
@ -20730,22 +20650,6 @@ npm-run-path@^4.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
path-key "^3.0.0"
|
path-key "^3.0.0"
|
||||||
|
|
||||||
npmconf@^2.1.3:
|
|
||||||
version "2.1.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/npmconf/-/npmconf-2.1.3.tgz#1cbe5dd02e899d365fed7260b54055473f90a15c"
|
|
||||||
integrity sha512-iTK+HI68GceCoGOHAQiJ/ik1iDfI7S+cgyG8A+PP18IU3X83kRhQIRhAUNj4Bp2JMx6Zrt5kCiozYa9uGWTjhA==
|
|
||||||
dependencies:
|
|
||||||
config-chain "~1.1.8"
|
|
||||||
inherits "~2.0.0"
|
|
||||||
ini "^1.2.0"
|
|
||||||
mkdirp "^0.5.0"
|
|
||||||
nopt "~3.0.1"
|
|
||||||
once "~1.3.0"
|
|
||||||
osenv "^0.1.0"
|
|
||||||
safe-buffer "^5.1.1"
|
|
||||||
semver "2 || 3 || 4"
|
|
||||||
uid-number "0.0.5"
|
|
||||||
|
|
||||||
"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.1.2:
|
"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.1.2:
|
||||||
version "4.1.2"
|
version "4.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
||||||
|
@ -21042,13 +20946,6 @@ once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
wrappy "1"
|
wrappy "1"
|
||||||
|
|
||||||
once@~1.3.0:
|
|
||||||
version "1.3.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
|
|
||||||
integrity sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=
|
|
||||||
dependencies:
|
|
||||||
wrappy "1"
|
|
||||||
|
|
||||||
one-time@0.0.4:
|
one-time@0.0.4:
|
||||||
version "0.0.4"
|
version "0.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/one-time/-/one-time-0.0.4.tgz#f8cdf77884826fe4dff93e3a9cc37b1e4480742e"
|
resolved "https://registry.yarnpkg.com/one-time/-/one-time-0.0.4.tgz#f8cdf77884826fe4dff93e3a9cc37b1e4480742e"
|
||||||
|
@ -22966,15 +22863,6 @@ react-dev-utils@^11.0.3:
|
||||||
strip-ansi "6.0.0"
|
strip-ansi "6.0.0"
|
||||||
text-table "0.2.0"
|
text-table "0.2.0"
|
||||||
|
|
||||||
react-docgen-typescript-loader@^3.1.1:
|
|
||||||
version "3.7.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/react-docgen-typescript-loader/-/react-docgen-typescript-loader-3.7.2.tgz#45cb2305652c0602767242a8700ad1ebd66bbbbd"
|
|
||||||
integrity sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==
|
|
||||||
dependencies:
|
|
||||||
"@webpack-contrib/schema-utils" "^1.0.0-beta.0"
|
|
||||||
loader-utils "^1.2.3"
|
|
||||||
react-docgen-typescript "^1.15.0"
|
|
||||||
|
|
||||||
react-docgen-typescript-plugin@^0.6.2:
|
react-docgen-typescript-plugin@^0.6.2:
|
||||||
version "0.6.3"
|
version "0.6.3"
|
||||||
resolved "https://registry.yarnpkg.com/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-0.6.3.tgz#664b22601df083597ecb1e60bd21beca60125fdf"
|
resolved "https://registry.yarnpkg.com/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-0.6.3.tgz#664b22601df083597ecb1e60bd21beca60125fdf"
|
||||||
|
@ -22986,7 +22874,7 @@ react-docgen-typescript-plugin@^0.6.2:
|
||||||
react-docgen-typescript "^1.20.5"
|
react-docgen-typescript "^1.20.5"
|
||||||
tslib "^2.0.0"
|
tslib "^2.0.0"
|
||||||
|
|
||||||
react-docgen-typescript@^1.15.0, react-docgen-typescript@^1.20.5:
|
react-docgen-typescript@^1.20.5:
|
||||||
version "1.21.0"
|
version "1.21.0"
|
||||||
resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.21.0.tgz#3385dde81b63eb1d54f86a935bd4f65f96c821f6"
|
resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.21.0.tgz#3385dde81b63eb1d54f86a935bd4f65f96c821f6"
|
||||||
integrity sha512-E4y/OcXwHukgiVafCGlxwoNHr4BDmM70Ww7oimL/QkMo5dmGALhceewe/xmVjdMxxI7E5syOGOc9/tbHL742rg==
|
integrity sha512-E4y/OcXwHukgiVafCGlxwoNHr4BDmM70Ww7oimL/QkMo5dmGALhceewe/xmVjdMxxI7E5syOGOc9/tbHL742rg==
|
||||||
|
@ -24659,13 +24547,6 @@ rimraf@^2.7.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
glob "^7.1.3"
|
glob "^7.1.3"
|
||||||
|
|
||||||
rimraf@~2.0.2:
|
|
||||||
version "2.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.0.3.tgz#f50a2965e7144e9afd998982f15df706730f56a9"
|
|
||||||
integrity sha1-9QopZecUTpr9mYmC8V33BnMPVqk=
|
|
||||||
optionalDependencies:
|
|
||||||
graceful-fs "~1.1"
|
|
||||||
|
|
||||||
rimraf@~2.4.0:
|
rimraf@~2.4.0:
|
||||||
version "2.4.5"
|
version "2.4.5"
|
||||||
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz#ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"
|
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz#ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"
|
||||||
|
@ -25021,11 +24902,6 @@ semver-greatest-satisfied-range@^1.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
sver-compat "^1.5.0"
|
sver-compat "^1.5.0"
|
||||||
|
|
||||||
"semver@2 || 3 || 4":
|
|
||||||
version "4.3.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da"
|
|
||||||
integrity sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=
|
|
||||||
|
|
||||||
"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1:
|
"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1:
|
||||||
version "5.7.1"
|
version "5.7.1"
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
||||||
|
@ -27630,11 +27506,6 @@ ui-select@0.19.8:
|
||||||
resolved "https://registry.yarnpkg.com/ui-select/-/ui-select-0.19.8.tgz#74860848a7fd8bc494d9856d2f62776ea98637c1"
|
resolved "https://registry.yarnpkg.com/ui-select/-/ui-select-0.19.8.tgz#74860848a7fd8bc494d9856d2f62776ea98637c1"
|
||||||
integrity sha1-dIYISKf9i8SU2YVtL2J3bqmGN8E=
|
integrity sha1-dIYISKf9i8SU2YVtL2J3bqmGN8E=
|
||||||
|
|
||||||
uid-number@0.0.5:
|
|
||||||
version "0.0.5"
|
|
||||||
resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.5.tgz#5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e"
|
|
||||||
integrity sha1-Wj2yPvXb1VuB/ODsmirG/M3ruB4=
|
|
||||||
|
|
||||||
uid-safe@2.1.5:
|
uid-safe@2.1.5:
|
||||||
version "2.1.5"
|
version "2.1.5"
|
||||||
resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz#2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a"
|
resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz#2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a"
|
||||||
|
@ -29175,16 +29046,6 @@ webpack-hot-middleware@^2.25.0:
|
||||||
querystring "^0.2.0"
|
querystring "^0.2.0"
|
||||||
strip-ansi "^3.0.0"
|
strip-ansi "^3.0.0"
|
||||||
|
|
||||||
webpack-log@^1.1.2:
|
|
||||||
version "1.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-1.2.0.tgz#a4b34cda6b22b518dbb0ab32e567962d5c72a43d"
|
|
||||||
integrity sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==
|
|
||||||
dependencies:
|
|
||||||
chalk "^2.1.0"
|
|
||||||
log-symbols "^2.1.0"
|
|
||||||
loglevelnext "^1.0.1"
|
|
||||||
uuid "^3.1.0"
|
|
||||||
|
|
||||||
webpack-log@^2.0.0:
|
webpack-log@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
|
resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue