Version Description
- Improved: Templates Library
Download this release
Release Info
Developer | munirkamal |
Plugin | Gutenberg Blocks – ACF Blocks Suite |
Version | 2.6.7 |
Comparing to | |
See all releases |
Code changes from version 2.6.6 to 2.6.7
- acf-blocks.php +25 -8
- extendify-sdk/.eslintrc.js +1 -0
- extendify-sdk/app/Admin.php +6 -1
- extendify-sdk/app/ApiRouter.php +1 -14
- extendify-sdk/app/App.php +18 -0
- extendify-sdk/app/Controllers/PingController.php +30 -0
- extendify-sdk/app/User.php +2 -0
- extendify-sdk/editorplus/EditorPlus.php +14 -13
- extendify-sdk/extendify-sdk.php +1 -1
- extendify-sdk/package-lock.json +19924 -5039
acf-blocks.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: ACF Blocks Suite
|
5 |
* Plugin URI: https://acfblocks.com/
|
6 |
* Description: Supercharge your Gutenberg editor with high quality beautiful WordPress blocks. Ready-to-use ACF Blocks!
|
7 |
-
* Version: 2.6.
|
8 |
* Author: munirkamal
|
9 |
* Author URI: https://munirkamal.wordpress.com
|
10 |
* License: GPL2
|
@@ -15,7 +15,12 @@
|
|
15 |
if ( !defined( 'ABSPATH' ) ) {
|
16 |
exit;
|
17 |
}
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
if ( function_exists( 'acfb_fs' ) ) {
|
21 |
acfb_fs()->set_basename( false, __FILE__ );
|
@@ -109,12 +114,24 @@ if ( function_exists( 'acfb_fs' ) ) {
|
|
109 |
) ) );
|
110 |
}
|
111 |
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
// Save Acf
|
119 |
add_filter( 'acf/settings/save_json', 'acfb_json_save_point' );
|
120 |
function acfb_json_save_point( $acfb_path )
|
4 |
* Plugin Name: ACF Blocks Suite
|
5 |
* Plugin URI: https://acfblocks.com/
|
6 |
* Description: Supercharge your Gutenberg editor with high quality beautiful WordPress blocks. Ready-to-use ACF Blocks!
|
7 |
+
* Version: 2.6.7
|
8 |
* Author: munirkamal
|
9 |
* Author URI: https://munirkamal.wordpress.com
|
10 |
* License: GPL2
|
15 |
if ( !defined( 'ABSPATH' ) ) {
|
16 |
exit;
|
17 |
}
|
18 |
+
|
19 |
+
if ( is_readable( dirname( __FILE__ ) . '/extendify-sdk/loader.php' ) ) {
|
20 |
+
$GLOBALS['extendifySdkSourcePlugin'] = 'Acf Blocks Suite';
|
21 |
+
require plugin_dir_path( __FILE__ ) . 'extendify-sdk/loader.php';
|
22 |
+
}
|
23 |
+
|
24 |
|
25 |
if ( function_exists( 'acfb_fs' ) ) {
|
26 |
acfb_fs()->set_basename( false, __FILE__ );
|
114 |
) ) );
|
115 |
}
|
116 |
|
117 |
+
// "block_categories" filter is deprecated for WP version above 5.8
|
118 |
+
|
119 |
+
if ( version_compare( get_bloginfo( 'version' ), '5.8', '>=' ) ) {
|
120 |
+
add_filter(
|
121 |
+
'block_categories_all',
|
122 |
+
'acfb_block_categories',
|
123 |
+
10,
|
124 |
+
2
|
125 |
+
);
|
126 |
+
} else {
|
127 |
+
add_filter(
|
128 |
+
'block_categories',
|
129 |
+
'acfb_block_categories',
|
130 |
+
10,
|
131 |
+
2
|
132 |
+
);
|
133 |
+
}
|
134 |
+
|
135 |
// Save Acf
|
136 |
add_filter( 'acf/settings/save_json', 'acfb_json_save_point' );
|
137 |
function acfb_json_save_point( $acfb_path )
|
extendify-sdk/.eslintrc.js
CHANGED
@@ -17,6 +17,7 @@ module.exports = {
|
|
17 |
indent: ['error', 4, {
|
18 |
SwitchCase: 1,
|
19 |
}],
|
|
|
20 |
quotes: ['error', 'single'],
|
21 |
'comma-dangle': ['error', 'always-multiline'],
|
22 |
'multiline-ternary': ['error', 'always'],
|
17 |
indent: ['error', 4, {
|
18 |
SwitchCase: 1,
|
19 |
}],
|
20 |
+
'require-await': 'error',
|
21 |
quotes: ['error', 'single'],
|
22 |
'comma-dangle': ['error', 'always-multiline'],
|
23 |
'multiline-ternary': ['error', 'always'],
|
extendify-sdk/app/Admin.php
CHANGED
@@ -46,6 +46,10 @@ class Admin
|
|
46 |
\add_action(
|
47 |
'admin_enqueue_scripts',
|
48 |
function ($hook) {
|
|
|
|
|
|
|
|
|
49 |
if (!$this->checkItsGutenbergPost($hook)) {
|
50 |
return;
|
51 |
}
|
@@ -63,7 +67,7 @@ class Admin
|
|
63 |
*/
|
64 |
public function checkItsGutenbergPost($hook = '')
|
65 |
{
|
66 |
-
if (isset($GLOBALS['typenow']) && use_block_editor_for_post_type($GLOBALS['typenow'])) {
|
67 |
return $hook && in_array($hook, ['post.php', 'post-new.php'], true);
|
68 |
}
|
69 |
|
@@ -99,6 +103,7 @@ class Admin
|
|
99 |
'root' => \esc_url_raw(rest_url(APP::$slug . '/' . APP::$apiVersion)),
|
100 |
'nonce' => \wp_create_nonce('wp_rest'),
|
101 |
'user' => json_decode(User::data('extendifysdk_user_data'), true),
|
|
|
102 |
]
|
103 |
);
|
104 |
\wp_enqueue_script(App::$slug . '-scripts');
|
46 |
\add_action(
|
47 |
'admin_enqueue_scripts',
|
48 |
function ($hook) {
|
49 |
+
if (!current_user_can(App::$requiredCapability)) {
|
50 |
+
return;
|
51 |
+
}
|
52 |
+
|
53 |
if (!$this->checkItsGutenbergPost($hook)) {
|
54 |
return;
|
55 |
}
|
67 |
*/
|
68 |
public function checkItsGutenbergPost($hook = '')
|
69 |
{
|
70 |
+
if (isset($GLOBALS['typenow']) && \use_block_editor_for_post_type($GLOBALS['typenow'])) {
|
71 |
return $hook && in_array($hook, ['post.php', 'post-new.php'], true);
|
72 |
}
|
73 |
|
103 |
'root' => \esc_url_raw(rest_url(APP::$slug . '/' . APP::$apiVersion)),
|
104 |
'nonce' => \wp_create_nonce('wp_rest'),
|
105 |
'user' => json_decode(User::data('extendifysdk_user_data'), true),
|
106 |
+
'source' => \esc_attr(APP::$sourcePlugin),
|
107 |
]
|
108 |
);
|
109 |
\wp_enqueue_script(App::$slug . '-scripts');
|
extendify-sdk/app/ApiRouter.php
CHANGED
@@ -34,7 +34,7 @@ class ApiRouter extends \WP_REST_Controller
|
|
34 |
*/
|
35 |
public function __construct()
|
36 |
{
|
37 |
-
$this->capability =
|
38 |
add_filter(
|
39 |
'rest_request_before_callbacks',
|
40 |
// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundInExtendedClassBeforeLastUsed
|
@@ -51,19 +51,6 @@ class ApiRouter extends \WP_REST_Controller
|
|
51 |
);
|
52 |
}
|
53 |
|
54 |
-
/**
|
55 |
-
* Check the capability
|
56 |
-
*
|
57 |
-
* @param string $capability - The capability.
|
58 |
-
*
|
59 |
-
* @return boolean
|
60 |
-
*/
|
61 |
-
public function permission($capability)
|
62 |
-
{
|
63 |
-
$this->capability = $capability;
|
64 |
-
return $this;
|
65 |
-
}
|
66 |
-
|
67 |
/**
|
68 |
* Check the authorization of the request
|
69 |
*
|
34 |
*/
|
35 |
public function __construct()
|
36 |
{
|
37 |
+
$this->capability = App::$requiredCapability;
|
38 |
add_filter(
|
39 |
'rest_request_before_callbacks',
|
40 |
// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundInExtendedClassBeforeLastUsed
|
51 |
);
|
52 |
}
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
/**
|
55 |
* Check the authorization of the request
|
56 |
*
|
extendify-sdk/app/App.php
CHANGED
@@ -55,6 +55,20 @@ class App
|
|
55 |
*/
|
56 |
public static $environment = '';
|
57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
/**
|
59 |
* Plugin config
|
60 |
*
|
@@ -69,6 +83,10 @@ class App
|
|
69 |
*/
|
70 |
public function __construct()
|
71 |
{
|
|
|
|
|
|
|
|
|
72 |
// phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
|
73 |
$readme = file_get_contents(dirname(__DIR__) . '/readme.txt');
|
74 |
|
55 |
*/
|
56 |
public static $environment = '';
|
57 |
|
58 |
+
/**
|
59 |
+
* Host plugin
|
60 |
+
*
|
61 |
+
* @var string
|
62 |
+
*/
|
63 |
+
public static $sourcePlugin = 'Not set';
|
64 |
+
|
65 |
+
/**
|
66 |
+
* Host plugin
|
67 |
+
*
|
68 |
+
* @var string
|
69 |
+
*/
|
70 |
+
public static $requiredCapability = 'upload_files';
|
71 |
+
|
72 |
/**
|
73 |
* Plugin config
|
74 |
*
|
83 |
*/
|
84 |
public function __construct()
|
85 |
{
|
86 |
+
if (isset($GLOBALS['extendifySdkSourcePlugin'])) {
|
87 |
+
self::$sourcePlugin = $GLOBALS['extendifySdkSourcePlugin'];
|
88 |
+
}
|
89 |
+
|
90 |
// phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
|
91 |
$readme = file_get_contents(dirname(__DIR__) . '/readme.txt');
|
92 |
|
extendify-sdk/app/Controllers/PingController.php
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Controls Http requests
|
4 |
+
*/
|
5 |
+
|
6 |
+
namespace Extendify\ExtendifySdk\Controllers;
|
7 |
+
|
8 |
+
use Extendify\ExtendifySdk\Http;
|
9 |
+
|
10 |
+
if (!defined('ABSPATH')) {
|
11 |
+
die('No direct access.');
|
12 |
+
}
|
13 |
+
|
14 |
+
/**
|
15 |
+
* The controller for sending little bits of info
|
16 |
+
*/
|
17 |
+
class PingController
|
18 |
+
{
|
19 |
+
/**
|
20 |
+
* Send data about a specific topic
|
21 |
+
*
|
22 |
+
* @param \WP_REST_Request $request - The request.
|
23 |
+
* @return WP_REST_Response|WP_Error
|
24 |
+
*/
|
25 |
+
public static function ping($request)
|
26 |
+
{
|
27 |
+
$response = Http::post('/ping', $request->get_params());
|
28 |
+
return new \WP_REST_Response($response);
|
29 |
+
}
|
30 |
+
}
|
extendify-sdk/app/User.php
CHANGED
@@ -110,6 +110,8 @@ class User
|
|
110 |
}
|
111 |
|
112 |
$userData['state']['uuid'] = self::data('uuid');
|
|
|
|
|
113 |
|
114 |
return \wp_json_encode($userData);
|
115 |
}
|
110 |
}
|
111 |
|
112 |
$userData['state']['uuid'] = self::data('uuid');
|
113 |
+
$userData['state']['canInstallPlugins'] = \current_user_can('install_plugins');
|
114 |
+
$userData['state']['canActivatePlugins'] = \current_user_can('activate_plugins');
|
115 |
|
116 |
return \wp_json_encode($userData);
|
117 |
}
|
extendify-sdk/editorplus/EditorPlus.php
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Handles editor related changes.
|
|
|
4 |
*/
|
5 |
|
6 |
if (!class_exists('edpl__EditorPlus')) {
|
@@ -29,6 +30,10 @@ if (!class_exists('edpl__EditorPlus')) {
|
|
29 |
*/
|
30 |
public static function getInstance()
|
31 |
{
|
|
|
|
|
|
|
|
|
32 |
if (is_null(self::$instance)) {
|
33 |
self::$instance = new ExtendifySdkEditorPlus();
|
34 |
}
|
@@ -167,7 +172,7 @@ if (!class_exists('edpl__EditorPlus')) {
|
|
167 |
public function registerProjectTemplates($attributes)
|
168 |
{
|
169 |
// Create the key used for the themes cache.
|
170 |
-
$cacheKey = 'page_templates-' .
|
171 |
// Retrieve the cache list.
|
172 |
// If it doesn't exist, or it's empty prepare an array.
|
173 |
$templates = wp_get_theme()->get_page_templates();
|
@@ -198,23 +203,19 @@ if (!class_exists('edpl__EditorPlus')) {
|
|
198 |
return $template;
|
199 |
}
|
200 |
|
201 |
-
|
202 |
-
|
|
|
|
|
203 |
return $template;
|
204 |
}
|
205 |
|
206 |
-
$file = plugin_dir_path(__FILE__) .
|
207 |
-
|
208 |
-
|
209 |
-
true
|
210 |
-
);
|
211 |
-
|
212 |
-
// Just to be safe, we check if the file exist first.
|
213 |
-
if (file_exists($file)) {
|
214 |
-
return $file;
|
215 |
}
|
216 |
|
217 |
-
return $
|
218 |
}
|
219 |
// phpcs:ignore Squiz.Classes.ClassDeclaration.SpaceBeforeCloseBrace
|
220 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
* Handles editor related changes.
|
4 |
+
* Loaded (or not) in /bootstrap.php
|
5 |
*/
|
6 |
|
7 |
if (!class_exists('edpl__EditorPlus')) {
|
30 |
*/
|
31 |
public static function getInstance()
|
32 |
{
|
33 |
+
if (!current_user_can('install_plugins')) {
|
34 |
+
return;
|
35 |
+
}
|
36 |
+
|
37 |
if (is_null(self::$instance)) {
|
38 |
self::$instance = new ExtendifySdkEditorPlus();
|
39 |
}
|
172 |
public function registerProjectTemplates($attributes)
|
173 |
{
|
174 |
// Create the key used for the themes cache.
|
175 |
+
$cacheKey = 'page_templates-' . \wp_hash(get_theme_root() . '/' . get_stylesheet());
|
176 |
// Retrieve the cache list.
|
177 |
// If it doesn't exist, or it's empty prepare an array.
|
178 |
$templates = wp_get_theme()->get_page_templates();
|
203 |
return $template;
|
204 |
}
|
205 |
|
206 |
+
$currentTemplate = get_post_meta($post->ID, '_wp_page_template', true);
|
207 |
+
|
208 |
+
// Check that the set template is one we have defined.
|
209 |
+
if (!is_string($currentTemplate) || !array_key_exists($currentTemplate, $this->templates)) {
|
210 |
return $template;
|
211 |
}
|
212 |
|
213 |
+
$file = plugin_dir_path(__FILE__) . $currentTemplate;
|
214 |
+
if (!file_exists($file)) {
|
215 |
+
return $template;
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
}
|
217 |
|
218 |
+
return $file;
|
219 |
}
|
220 |
// phpcs:ignore Squiz.Classes.ClassDeclaration.SpaceBeforeCloseBrace
|
221 |
}
|
extendify-sdk/extendify-sdk.php
CHANGED
@@ -31,7 +31,7 @@ if (!class_exists('ExtendifySdk')) :
|
|
31 |
return;
|
32 |
}
|
33 |
|
34 |
-
if (version_compare(PHP_VERSION, '5.6', '<') || version_compare($GLOBALS['wp_version'], '5.
|
35 |
return;
|
36 |
}
|
37 |
|
31 |
return;
|
32 |
}
|
33 |
|
34 |
+
if (version_compare(PHP_VERSION, '5.6', '<') || version_compare($GLOBALS['wp_version'], '5.5', '<')) {
|
35 |
return;
|
36 |
}
|
37 |
|
extendify-sdk/package-lock.json
CHANGED
@@ -1,37 +1,72 @@
|
|
1 |
{
|
2 |
"name": "extendify-sdk",
|
|
|
3 |
"requires": true,
|
4 |
-
"
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
"@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
}
|
13 |
},
|
14 |
-
"
|
15 |
-
"version": "7.14.
|
16 |
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.
|
17 |
-
"integrity": "sha512-
|
18 |
-
"
|
|
|
|
|
19 |
},
|
20 |
-
"
|
21 |
-
"version": "7.14.
|
22 |
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.14.
|
23 |
-
"integrity": "sha512-
|
24 |
-
"
|
25 |
-
|
26 |
-
"@babel/
|
27 |
-
"@babel/
|
28 |
-
"@babel/helper-
|
29 |
-
"@babel/
|
30 |
-
"@babel/
|
31 |
-
"@babel/
|
32 |
-
"@babel/
|
33 |
-
"@babel/
|
34 |
-
"@babel/types": "^7.14.2",
|
35 |
"convert-source-map": "^1.7.0",
|
36 |
"debug": "^4.1.0",
|
37 |
"gensync": "^1.0.0-beta.2",
|
@@ -39,95 +74,122 @@
|
|
39 |
"semver": "^6.3.0",
|
40 |
"source-map": "^0.5.0"
|
41 |
},
|
42 |
-
"
|
43 |
-
"
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
}
|
49 |
}
|
50 |
},
|
51 |
-
"
|
52 |
-
"version": "
|
53 |
-
"resolved": "https://registry.npmjs.org
|
54 |
-
"integrity": "sha512-
|
55 |
-
"
|
56 |
-
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
"jsesc": "^2.5.1",
|
59 |
"source-map": "^0.5.0"
|
|
|
|
|
|
|
60 |
}
|
61 |
},
|
62 |
-
"
|
63 |
-
"version": "7.
|
64 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
65 |
-
"integrity": "sha512-
|
66 |
-
"
|
67 |
-
|
68 |
-
|
|
|
|
|
69 |
}
|
70 |
},
|
71 |
-
"
|
72 |
-
"version": "7.
|
73 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.
|
74 |
-
"integrity": "sha512-
|
75 |
-
"
|
76 |
-
|
77 |
-
"@babel/
|
78 |
-
|
|
|
|
|
79 |
}
|
80 |
},
|
81 |
-
"
|
82 |
-
"version": "7.
|
83 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
84 |
-
"integrity": "sha512-
|
85 |
-
"
|
86 |
-
|
87 |
-
"@babel/
|
88 |
-
"
|
89 |
-
"browserslist": "^4.14.5",
|
90 |
"semver": "^6.3.0"
|
91 |
},
|
92 |
-
"
|
93 |
-
"
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
"dev": true
|
98 |
-
}
|
99 |
}
|
100 |
},
|
101 |
-
"
|
102 |
-
"version": "
|
103 |
-
"resolved": "https://registry.npmjs.org
|
104 |
-
"integrity": "sha512-
|
105 |
-
"
|
106 |
-
|
107 |
-
"@babel/helper-annotate-as-pure": "^7.12.13",
|
108 |
-
"@babel/helper-function-name": "^7.14.2",
|
109 |
-
"@babel/helper-member-expression-to-functions": "^7.13.12",
|
110 |
-
"@babel/helper-optimise-call-expression": "^7.12.13",
|
111 |
-
"@babel/helper-replace-supers": "^7.14.3",
|
112 |
-
"@babel/helper-split-export-declaration": "^7.12.13"
|
113 |
}
|
114 |
},
|
115 |
-
"
|
116 |
-
"version": "7.14.
|
117 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-create-
|
118 |
-
"integrity": "sha512-
|
119 |
-
"
|
120 |
-
|
121 |
-
"@babel/helper-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
"regexpu-core": "^4.7.1"
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
}
|
124 |
},
|
125 |
-
"
|
126 |
-
"version": "0.2.
|
127 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.
|
128 |
-
"integrity": "sha512-
|
129 |
-
"
|
130 |
-
"requires": {
|
131 |
"@babel/helper-compilation-targets": "^7.13.0",
|
132 |
"@babel/helper-module-imports": "^7.12.13",
|
133 |
"@babel/helper-plugin-utils": "^7.13.0",
|
@@ -137,918 +199,1413 @@
|
|
137 |
"resolve": "^1.14.2",
|
138 |
"semver": "^6.1.2"
|
139 |
},
|
140 |
-
"
|
141 |
-
"
|
142 |
-
"version": "6.3.0",
|
143 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
144 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
145 |
-
"dev": true
|
146 |
-
}
|
147 |
}
|
148 |
},
|
149 |
-
"
|
150 |
-
"version": "
|
151 |
-
"resolved": "https://registry.npmjs.org
|
152 |
-
"integrity": "sha512-
|
153 |
-
"
|
154 |
-
|
155 |
-
"@babel/types": "^7.13.0"
|
156 |
}
|
157 |
},
|
158 |
-
"
|
159 |
-
"version": "7.14.
|
160 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
161 |
-
"integrity": "sha512-
|
162 |
-
"
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
"
|
167 |
}
|
168 |
},
|
169 |
-
"
|
170 |
-
"version": "7.
|
171 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
172 |
-
"integrity": "sha512-
|
173 |
-
"
|
174 |
-
|
175 |
-
"@babel/
|
|
|
|
|
|
|
|
|
176 |
}
|
177 |
},
|
178 |
-
"
|
179 |
-
"version": "7.
|
180 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
181 |
-
"integrity": "sha512-
|
182 |
-
"
|
183 |
-
|
184 |
-
|
185 |
-
|
|
|
186 |
}
|
187 |
},
|
188 |
-
"
|
189 |
-
"version": "7.
|
190 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
191 |
-
"integrity": "sha512-
|
192 |
-
"
|
193 |
-
|
194 |
-
|
|
|
|
|
195 |
}
|
196 |
},
|
197 |
-
"
|
198 |
-
"version": "7.
|
199 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
200 |
-
"integrity": "sha512-
|
201 |
-
"
|
202 |
-
"@babel/types": "^7.
|
|
|
|
|
|
|
203 |
}
|
204 |
},
|
205 |
-
"
|
206 |
-
"version": "7.14.
|
207 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-
|
208 |
-
"integrity": "sha512-
|
209 |
-
"
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
"
|
214 |
-
"@babel/helper-split-export-declaration": "^7.12.13",
|
215 |
-
"@babel/helper-validator-identifier": "^7.14.0",
|
216 |
-
"@babel/template": "^7.12.13",
|
217 |
-
"@babel/traverse": "^7.14.2",
|
218 |
-
"@babel/types": "^7.14.2"
|
219 |
}
|
220 |
},
|
221 |
-
"
|
222 |
-
"version": "7.
|
223 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
224 |
-
"integrity": "sha512-
|
225 |
-
"
|
226 |
-
|
227 |
-
"@babel/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
}
|
229 |
},
|
230 |
-
"
|
231 |
-
"version": "7.
|
232 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
233 |
-
"integrity": "sha512-
|
234 |
-
"
|
|
|
|
|
|
|
|
|
|
|
235 |
},
|
236 |
-
"
|
237 |
-
"version": "7.
|
238 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
239 |
-
"integrity": "sha512
|
240 |
-
"
|
241 |
-
|
242 |
-
"@babel/helper-annotate-as-pure": "^7.12.13",
|
243 |
-
"@babel/helper-wrap-function": "^7.13.0",
|
244 |
-
"@babel/types": "^7.13.0"
|
245 |
}
|
246 |
},
|
247 |
-
"
|
248 |
-
"version": "7.14.
|
249 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
250 |
-
"integrity": "sha512-
|
251 |
-
"
|
252 |
-
|
253 |
-
"@babel/helper-
|
254 |
-
"@babel/
|
255 |
-
|
256 |
-
|
|
|
257 |
}
|
258 |
},
|
259 |
-
"
|
260 |
-
"version": "7.
|
261 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
262 |
-
"integrity": "sha512-
|
263 |
-
"
|
264 |
-
|
265 |
-
"@babel/
|
|
|
|
|
|
|
|
|
|
|
266 |
}
|
267 |
},
|
268 |
-
"
|
269 |
-
"version": "7.
|
270 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
271 |
-
"integrity": "sha512-
|
272 |
-
"
|
273 |
-
|
274 |
-
|
|
|
|
|
275 |
}
|
276 |
},
|
277 |
-
"
|
278 |
-
"version": "7.
|
279 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
280 |
-
"integrity": "sha512-
|
281 |
-
"
|
282 |
-
|
283 |
-
|
|
|
|
|
284 |
}
|
285 |
},
|
286 |
-
"
|
287 |
-
"version": "7.14.
|
288 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
289 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
},
|
291 |
-
"
|
292 |
-
"version": "7.
|
293 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-
|
294 |
-
"integrity": "sha512-
|
295 |
-
"
|
|
|
|
|
296 |
},
|
297 |
-
"
|
298 |
-
"version": "7.
|
299 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-
|
300 |
-
"integrity": "sha512-
|
301 |
-
"
|
302 |
-
|
303 |
-
"@babel/helper-function-name": "^7.12.13",
|
304 |
-
"@babel/template": "^7.12.13",
|
305 |
-
"@babel/traverse": "^7.13.0",
|
306 |
-
"@babel/types": "^7.13.0"
|
307 |
}
|
308 |
},
|
309 |
-
"
|
310 |
-
"version": "7.14.
|
311 |
-
"resolved": "https://registry.npmjs.org/@babel/
|
312 |
-
"integrity": "sha512
|
313 |
-
"
|
314 |
-
|
315 |
-
"@babel/template": "^7.
|
316 |
-
"@babel/traverse": "^7.14.
|
317 |
-
"@babel/types": "^7.14.
|
|
|
|
|
|
|
318 |
}
|
319 |
},
|
320 |
-
"
|
321 |
-
"version": "7.14.
|
322 |
-
"resolved": "https://registry.npmjs.org/@babel/
|
323 |
-
"integrity": "sha512-
|
324 |
-
"
|
325 |
-
"@babel/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
"chalk": "^2.0.0",
|
327 |
"js-tokens": "^4.0.0"
|
|
|
|
|
|
|
328 |
}
|
329 |
},
|
330 |
-
"
|
331 |
-
"version": "7.14.
|
332 |
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.
|
333 |
-
"integrity": "sha512-
|
334 |
-
"
|
|
|
|
|
|
|
|
|
|
|
335 |
},
|
336 |
-
"
|
337 |
-
"version": "7.
|
338 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.
|
339 |
-
"integrity": "sha512-
|
340 |
-
"
|
341 |
-
|
342 |
-
"@babel/helper-
|
343 |
-
"@babel/
|
344 |
-
|
|
|
|
|
|
|
|
|
|
|
345 |
}
|
346 |
},
|
347 |
-
"
|
348 |
-
"version": "7.14.
|
349 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.
|
350 |
-
"integrity": "sha512-
|
351 |
-
"
|
352 |
-
|
353 |
-
"@babel/helper-
|
354 |
-
"@babel/helper-remap-async-to-generator": "^7.13.0",
|
355 |
"@babel/plugin-syntax-async-generators": "^7.8.4"
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
}
|
357 |
},
|
358 |
-
"
|
359 |
-
"version": "7.
|
360 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.
|
361 |
-
"integrity": "sha512-
|
362 |
-
"
|
363 |
-
|
364 |
-
"@babel/helper-
|
365 |
-
|
|
|
|
|
|
|
|
|
|
|
366 |
}
|
367 |
},
|
368 |
-
"
|
369 |
-
"version": "7.14.
|
370 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.
|
371 |
-
"integrity": "sha512-
|
372 |
-
"
|
373 |
-
|
374 |
-
"@babel/helper-
|
375 |
-
"@babel/
|
376 |
-
|
|
|
|
|
|
|
|
|
|
|
377 |
}
|
378 |
},
|
379 |
-
"
|
380 |
-
"version": "7.14.
|
381 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.
|
382 |
-
"integrity": "sha512-
|
383 |
-
"
|
384 |
-
|
385 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
386 |
"@babel/plugin-syntax-dynamic-import": "^7.8.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
387 |
}
|
388 |
},
|
389 |
-
"
|
390 |
-
"version": "7.14.
|
391 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-
|
392 |
-
"integrity": "sha512-
|
393 |
-
"
|
394 |
-
"
|
395 |
-
"@babel/helper-plugin-utils": "^7.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
}
|
398 |
},
|
399 |
-
"
|
400 |
-
"version": "7.14.
|
401 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.
|
402 |
-
"integrity": "sha512-
|
403 |
-
"
|
404 |
-
|
405 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
406 |
"@babel/plugin-syntax-json-strings": "^7.8.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
407 |
}
|
408 |
},
|
409 |
-
"
|
410 |
-
"version": "7.14.
|
411 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.
|
412 |
-
"integrity": "sha512-
|
413 |
-
"
|
414 |
-
|
415 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
416 |
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
}
|
418 |
},
|
419 |
-
"
|
420 |
-
"version": "7.14.
|
421 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.
|
422 |
-
"integrity": "sha512-
|
423 |
-
"
|
424 |
-
|
425 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
426 |
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
427 |
}
|
428 |
},
|
429 |
-
"
|
430 |
-
"version": "7.14.
|
431 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.
|
432 |
-
"integrity": "sha512-
|
433 |
-
"
|
434 |
-
|
435 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
436 |
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
}
|
438 |
},
|
439 |
-
"
|
440 |
-
"version": "7.14.
|
441 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.
|
442 |
-
"integrity": "sha512-
|
443 |
-
"
|
444 |
-
|
445 |
-
"@babel/
|
446 |
-
"@babel/helper-
|
447 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
448 |
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
|
449 |
-
"@babel/plugin-transform-parameters": "^7.14.
|
450 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
},
|
452 |
-
"
|
453 |
-
"version": "7.14.
|
454 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.
|
455 |
-
"integrity": "sha512-
|
456 |
-
"
|
457 |
-
|
458 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
459 |
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
}
|
461 |
},
|
462 |
-
"
|
463 |
-
"version": "7.14.
|
464 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.
|
465 |
-
"integrity": "sha512-
|
466 |
-
"
|
467 |
-
|
468 |
-
"@babel/helper-
|
469 |
-
"@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
|
470 |
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
}
|
472 |
},
|
473 |
-
"
|
474 |
-
"version": "7.
|
475 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.
|
476 |
-
"integrity": "sha512-
|
477 |
-
"
|
478 |
-
|
479 |
-
"@babel/helper-
|
480 |
-
|
|
|
|
|
|
|
|
|
|
|
481 |
}
|
482 |
},
|
483 |
-
"
|
484 |
-
"version": "7.14.
|
485 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.
|
486 |
-
"integrity": "sha512-
|
487 |
-
"
|
488 |
-
|
489 |
-
"@babel/helper-
|
490 |
-
"@babel/helper-
|
491 |
-
"@babel/
|
492 |
-
|
|
|
|
|
|
|
|
|
|
|
493 |
}
|
494 |
},
|
495 |
-
"
|
496 |
-
"version": "7.
|
497 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.
|
498 |
-
"integrity": "sha512-
|
499 |
-
"
|
500 |
-
|
501 |
-
"@babel/helper-
|
502 |
-
|
|
|
|
|
|
|
|
|
|
|
503 |
}
|
504 |
},
|
505 |
-
"
|
506 |
"version": "7.8.4",
|
507 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
|
508 |
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
|
509 |
-
"
|
510 |
-
"requires": {
|
511 |
"@babel/helper-plugin-utils": "^7.8.0"
|
|
|
|
|
|
|
512 |
}
|
513 |
},
|
514 |
-
"
|
515 |
"version": "7.12.13",
|
516 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
|
517 |
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
|
518 |
-
"
|
519 |
-
"requires": {
|
520 |
"@babel/helper-plugin-utils": "^7.12.13"
|
|
|
|
|
|
|
521 |
}
|
522 |
},
|
523 |
-
"
|
524 |
-
"version": "7.
|
525 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.
|
526 |
-
"integrity": "sha512-
|
527 |
-
"
|
528 |
-
|
529 |
-
|
|
|
|
|
|
|
|
|
|
|
530 |
}
|
531 |
},
|
532 |
-
"
|
533 |
"version": "7.8.3",
|
534 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
|
535 |
"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
|
536 |
-
"
|
537 |
-
"requires": {
|
538 |
"@babel/helper-plugin-utils": "^7.8.0"
|
|
|
|
|
|
|
539 |
}
|
540 |
},
|
541 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
"version": "7.8.3",
|
543 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
|
544 |
"integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
|
545 |
-
"
|
546 |
-
"requires": {
|
547 |
"@babel/helper-plugin-utils": "^7.8.3"
|
|
|
|
|
|
|
548 |
}
|
549 |
},
|
550 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
"version": "7.8.3",
|
552 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
|
553 |
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
|
554 |
-
"
|
555 |
-
"requires": {
|
556 |
"@babel/helper-plugin-utils": "^7.8.0"
|
|
|
|
|
|
|
557 |
}
|
558 |
},
|
559 |
-
"
|
560 |
-
"version": "7.
|
561 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.
|
562 |
-
"integrity": "sha512-
|
563 |
-
"
|
564 |
-
|
565 |
-
|
|
|
|
|
|
|
|
|
|
|
566 |
}
|
567 |
},
|
568 |
-
"
|
569 |
"version": "7.10.4",
|
570 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
|
571 |
"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
|
572 |
-
"
|
573 |
-
"requires": {
|
574 |
"@babel/helper-plugin-utils": "^7.10.4"
|
|
|
|
|
|
|
575 |
}
|
576 |
},
|
577 |
-
"
|
578 |
"version": "7.8.3",
|
579 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
|
580 |
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
|
581 |
-
"
|
582 |
-
"requires": {
|
583 |
"@babel/helper-plugin-utils": "^7.8.0"
|
|
|
|
|
|
|
584 |
}
|
585 |
},
|
586 |
-
"
|
587 |
"version": "7.10.4",
|
588 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
|
589 |
"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
|
590 |
-
"
|
591 |
-
"requires": {
|
592 |
"@babel/helper-plugin-utils": "^7.10.4"
|
|
|
|
|
|
|
593 |
}
|
594 |
},
|
595 |
-
"
|
596 |
"version": "7.8.3",
|
597 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
|
598 |
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
|
599 |
-
"
|
600 |
-
"requires": {
|
601 |
"@babel/helper-plugin-utils": "^7.8.0"
|
|
|
|
|
|
|
602 |
}
|
603 |
},
|
604 |
-
"
|
605 |
"version": "7.8.3",
|
606 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
|
607 |
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
|
608 |
-
"
|
609 |
-
"requires": {
|
610 |
"@babel/helper-plugin-utils": "^7.8.0"
|
|
|
|
|
|
|
611 |
}
|
612 |
},
|
613 |
-
"
|
614 |
"version": "7.8.3",
|
615 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
|
616 |
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
|
617 |
-
"
|
618 |
-
"requires": {
|
619 |
"@babel/helper-plugin-utils": "^7.8.0"
|
|
|
|
|
|
|
620 |
}
|
621 |
},
|
622 |
-
"
|
623 |
-
"version": "7.14.
|
624 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.
|
625 |
-
"integrity": "sha512-
|
626 |
-
"
|
627 |
-
|
628 |
-
|
|
|
|
|
|
|
|
|
|
|
629 |
}
|
630 |
},
|
631 |
-
"
|
632 |
-
"version": "7.
|
633 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.
|
634 |
-
"integrity": "sha512-
|
635 |
-
"
|
636 |
-
|
637 |
-
|
|
|
|
|
|
|
|
|
|
|
638 |
}
|
639 |
},
|
640 |
-
"
|
641 |
-
"version": "7.
|
642 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-
|
643 |
-
"integrity": "sha512-
|
644 |
-
"
|
645 |
-
"
|
646 |
-
"@babel/helper-plugin-utils": "^7.
|
|
|
|
|
|
|
|
|
|
|
|
|
647 |
}
|
648 |
},
|
649 |
-
"
|
650 |
-
"version": "7.
|
651 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
652 |
-
"integrity": "sha512-
|
653 |
-
"
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
"
|
|
|
|
|
|
|
658 |
}
|
659 |
},
|
660 |
-
"
|
661 |
-
"version": "7.
|
662 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
663 |
-
"integrity": "sha512-
|
664 |
-
"
|
665 |
-
|
666 |
-
"@babel/helper-plugin-utils": "^7.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
}
|
668 |
},
|
669 |
-
"
|
670 |
-
"version": "7.14.
|
671 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-
|
672 |
-
"integrity": "sha512-
|
673 |
-
"
|
674 |
-
|
675 |
-
|
|
|
|
|
|
|
|
|
|
|
676 |
}
|
677 |
},
|
678 |
-
"
|
679 |
-
"version": "7.14.
|
680 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
681 |
-
"integrity": "sha512-
|
682 |
-
"
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
"
|
687 |
-
|
688 |
-
|
689 |
-
"@babel/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
690 |
"globals": "^11.1.0"
|
691 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
692 |
"dependencies": {
|
693 |
-
"
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
|
|
699 |
}
|
700 |
},
|
701 |
-
"
|
702 |
-
"version": "7.
|
703 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
704 |
-
"integrity": "sha512-
|
705 |
-
"
|
706 |
-
|
707 |
-
|
|
|
|
|
|
|
|
|
|
|
708 |
}
|
709 |
},
|
710 |
-
"
|
711 |
-
"version": "7.
|
712 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
713 |
-
"integrity": "sha512-
|
714 |
-
"
|
715 |
-
|
716 |
-
"@babel/helper-plugin-utils": "^7.
|
|
|
|
|
|
|
|
|
|
|
|
|
717 |
}
|
718 |
},
|
719 |
-
"
|
720 |
-
"version": "7.
|
721 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
722 |
-
"integrity": "sha512-
|
723 |
-
"
|
724 |
-
|
725 |
-
|
726 |
-
|
|
|
|
|
|
|
|
|
727 |
}
|
728 |
},
|
729 |
-
"
|
730 |
-
"version": "7.
|
731 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
732 |
-
"integrity": "sha512-
|
733 |
-
"
|
734 |
-
|
735 |
-
"@babel/helper-plugin-utils": "^7.
|
|
|
|
|
|
|
|
|
|
|
|
|
736 |
}
|
737 |
},
|
738 |
-
"
|
739 |
-
"version": "7.
|
740 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
741 |
-
"integrity": "sha512-
|
742 |
-
"
|
743 |
-
"
|
744 |
-
"@babel/helper-
|
745 |
-
"@babel/
|
|
|
|
|
|
|
|
|
|
|
|
|
746 |
}
|
747 |
},
|
748 |
-
"
|
749 |
-
"version": "7.
|
750 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
751 |
-
"integrity": "sha512-
|
752 |
-
"
|
753 |
-
|
754 |
-
|
|
|
|
|
|
|
|
|
|
|
755 |
}
|
756 |
},
|
757 |
-
"
|
758 |
-
"version": "7.
|
759 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.
|
760 |
-
"integrity": "sha512-
|
761 |
-
"
|
762 |
-
|
763 |
-
"@babel/helper-
|
764 |
-
|
|
|
|
|
|
|
|
|
|
|
765 |
}
|
766 |
},
|
767 |
-
"
|
768 |
-
"version": "7.
|
769 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.
|
770 |
-
"integrity": "sha512-
|
771 |
-
"
|
772 |
-
|
773 |
-
|
|
|
|
|
|
|
|
|
|
|
774 |
}
|
775 |
},
|
776 |
-
"
|
777 |
-
"version": "7.
|
778 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.
|
779 |
-
"integrity": "sha512-
|
780 |
-
"
|
781 |
-
|
782 |
-
|
|
|
|
|
|
|
|
|
|
|
783 |
}
|
784 |
},
|
785 |
-
"
|
786 |
-
"version": "7.14.
|
787 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.
|
788 |
-
"integrity": "sha512-
|
789 |
-
"
|
790 |
-
|
791 |
-
"@babel/helper-
|
792 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
793 |
"babel-plugin-dynamic-import-node": "^2.3.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
794 |
}
|
795 |
},
|
796 |
-
"
|
797 |
-
"version": "7.14.
|
798 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.
|
799 |
-
"integrity": "sha512-
|
800 |
-
"
|
801 |
-
|
802 |
-
"@babel/helper-
|
803 |
-
"@babel/helper-
|
804 |
-
"@babel/helper-simple-access": "^7.13.12",
|
805 |
"babel-plugin-dynamic-import-node": "^2.3.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
806 |
}
|
807 |
},
|
808 |
-
"
|
809 |
-
"version": "7.
|
810 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
811 |
-
"integrity": "sha512-
|
812 |
-
"
|
813 |
-
|
814 |
-
"@babel/helper-
|
815 |
-
"@babel/helper-
|
816 |
-
"@babel/helper-
|
817 |
-
"@babel/helper-validator-identifier": "^7.12.11",
|
818 |
"babel-plugin-dynamic-import-node": "^2.3.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
819 |
}
|
820 |
},
|
821 |
-
"
|
822 |
-
"version": "7.14.
|
823 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.
|
824 |
-
"integrity": "sha512-
|
825 |
-
"
|
826 |
-
|
827 |
-
"@babel/helper-
|
828 |
-
|
|
|
|
|
|
|
|
|
|
|
829 |
}
|
830 |
},
|
831 |
-
"
|
832 |
-
"version": "7.
|
833 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
834 |
-
"integrity": "sha512-
|
835 |
-
"
|
836 |
-
|
837 |
-
|
|
|
|
|
|
|
|
|
|
|
838 |
}
|
839 |
},
|
840 |
-
"
|
841 |
-
"version": "7.
|
842 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
843 |
-
"integrity": "sha512
|
844 |
-
"
|
845 |
-
|
846 |
-
|
|
|
|
|
|
|
|
|
|
|
847 |
}
|
848 |
},
|
849 |
-
"
|
850 |
-
"version": "7.
|
851 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-
|
852 |
-
"integrity": "sha512-
|
853 |
-
"
|
854 |
-
"
|
855 |
-
"@babel/helper-plugin-utils": "^7.
|
856 |
-
|
|
|
|
|
|
|
|
|
|
|
857 |
}
|
858 |
},
|
859 |
-
"
|
860 |
-
"version": "7.14.
|
861 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
862 |
-
"integrity": "sha512-
|
863 |
-
"
|
864 |
-
|
865 |
-
"@babel/helper-
|
|
|
|
|
|
|
|
|
|
|
|
|
866 |
}
|
867 |
},
|
868 |
-
"
|
869 |
-
"version": "7.
|
870 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
871 |
-
"integrity": "sha512-
|
872 |
-
"
|
873 |
-
|
874 |
-
|
|
|
|
|
|
|
|
|
|
|
875 |
}
|
876 |
},
|
877 |
-
"
|
878 |
-
"version": "7.14.
|
879 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
880 |
-
"integrity": "sha512-
|
881 |
-
"
|
882 |
-
|
883 |
-
|
|
|
|
|
|
|
|
|
|
|
884 |
}
|
885 |
},
|
886 |
-
"
|
887 |
-
"version": "7.14.
|
888 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-
|
889 |
-
"integrity": "sha512-
|
890 |
-
"
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
"
|
895 |
-
|
896 |
-
|
|
|
897 |
}
|
898 |
},
|
899 |
-
"
|
900 |
-
"version": "7.
|
901 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx
|
902 |
-
"integrity": "sha512-
|
903 |
-
"
|
904 |
-
|
905 |
-
"@babel/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
906 |
}
|
907 |
},
|
908 |
-
"
|
909 |
-
"version": "7.
|
910 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-
|
911 |
-
"integrity": "sha512-
|
912 |
"dev": true,
|
913 |
-
"
|
914 |
-
"@babel/
|
915 |
-
|
|
|
|
|
|
|
|
|
|
|
916 |
}
|
917 |
},
|
918 |
-
"
|
919 |
-
"version": "7.
|
920 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
921 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
922 |
"dev": true,
|
923 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
924 |
"regenerator-transform": "^0.14.2"
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
}
|
926 |
},
|
927 |
-
"
|
928 |
-
"version": "7.
|
929 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.
|
930 |
-
"integrity": "sha512-
|
931 |
-
"
|
932 |
-
|
933 |
-
|
|
|
|
|
|
|
|
|
|
|
934 |
}
|
935 |
},
|
936 |
-
"
|
937 |
-
"version": "7.14.
|
938 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.
|
939 |
-
"integrity": "sha512-
|
940 |
-
"
|
941 |
-
|
942 |
-
"@babel/helper-
|
943 |
-
"
|
944 |
-
"babel-plugin-polyfill-
|
945 |
-
"babel-plugin-polyfill-
|
946 |
-
"babel-plugin-polyfill-regenerator": "^0.2.0",
|
947 |
"semver": "^6.3.0"
|
948 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
"dependencies": {
|
950 |
-
"
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
|
|
956 |
}
|
957 |
},
|
958 |
-
"
|
959 |
-
"version": "7.
|
960 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
961 |
-
"integrity": "sha512-
|
962 |
-
"
|
963 |
-
|
964 |
-
"@babel/helper-
|
|
|
|
|
|
|
|
|
|
|
|
|
965 |
}
|
966 |
},
|
967 |
-
"
|
968 |
-
"version": "7.
|
969 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
970 |
-
"integrity": "sha512-
|
971 |
-
"
|
972 |
-
|
973 |
-
|
974 |
-
|
|
|
|
|
|
|
|
|
975 |
}
|
976 |
},
|
977 |
-
"
|
978 |
-
"version": "7.
|
979 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
980 |
-
"integrity": "sha512-
|
981 |
-
"
|
982 |
-
|
983 |
-
|
|
|
|
|
|
|
|
|
|
|
984 |
}
|
985 |
},
|
986 |
-
"
|
987 |
-
"version": "7.
|
988 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
989 |
-
"integrity": "sha512-
|
990 |
-
"
|
991 |
-
|
992 |
-
|
|
|
|
|
|
|
|
|
|
|
993 |
}
|
994 |
},
|
995 |
-
"
|
996 |
-
"version": "7.
|
997 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
998 |
-
"integrity": "sha512-
|
999 |
-
"
|
1000 |
-
"
|
1001 |
-
"@babel/helper-plugin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
}
|
1003 |
},
|
1004 |
-
"
|
1005 |
-
"version": "7.
|
1006 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.
|
1007 |
-
"integrity": "sha512-
|
1008 |
-
"
|
1009 |
-
|
1010 |
-
|
|
|
|
|
|
|
|
|
|
|
1011 |
}
|
1012 |
},
|
1013 |
-
"
|
1014 |
-
"version": "7.
|
1015 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.
|
1016 |
-
"integrity": "sha512-
|
1017 |
-
"
|
1018 |
-
|
1019 |
-
"@babel/helper-
|
1020 |
-
|
|
|
|
|
|
|
|
|
|
|
1021 |
}
|
1022 |
},
|
1023 |
-
"
|
1024 |
-
"version": "7.14.
|
1025 |
-
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.
|
1026 |
-
"integrity": "sha512-
|
1027 |
-
"
|
1028 |
-
|
1029 |
-
"@babel/
|
1030 |
-
"@babel/helper-
|
1031 |
-
"@babel/helper-
|
1032 |
-
"@babel/
|
1033 |
-
"@babel/plugin-
|
1034 |
-
"@babel/plugin-proposal-
|
1035 |
-
"@babel/plugin-proposal-class-
|
1036 |
-
"@babel/plugin-proposal-
|
1037 |
-
"@babel/plugin-proposal-
|
1038 |
-
"@babel/plugin-proposal-
|
1039 |
-
"@babel/plugin-proposal-
|
1040 |
-
"@babel/plugin-proposal-
|
1041 |
-
"@babel/plugin-proposal-
|
1042 |
-
"@babel/plugin-proposal-
|
1043 |
-
"@babel/plugin-proposal-
|
1044 |
-
"@babel/plugin-proposal-optional-
|
1045 |
-
"@babel/plugin-proposal-
|
1046 |
-
"@babel/plugin-proposal-private-
|
1047 |
-
"@babel/plugin-proposal-
|
1048 |
-
"@babel/plugin-proposal-unicode-property-regex": "^7.12.13",
|
1049 |
"@babel/plugin-syntax-async-generators": "^7.8.4",
|
1050 |
"@babel/plugin-syntax-class-properties": "^7.12.13",
|
1051 |
-
"@babel/plugin-syntax-class-static-block": "^7.
|
1052 |
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
1053 |
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
|
1054 |
"@babel/plugin-syntax-json-strings": "^7.8.3",
|
@@ -1058,1175 +1615,1836 @@
|
|
1058 |
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
|
1059 |
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
|
1060 |
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
|
1061 |
-
"@babel/plugin-syntax-private-property-in-object": "^7.14.
|
1062 |
-
"@babel/plugin-syntax-top-level-await": "^7.
|
1063 |
-
"@babel/plugin-transform-arrow-functions": "^7.
|
1064 |
-
"@babel/plugin-transform-async-to-generator": "^7.
|
1065 |
-
"@babel/plugin-transform-block-scoped-functions": "^7.
|
1066 |
-
"@babel/plugin-transform-block-scoping": "^7.14.
|
1067 |
-
"@babel/plugin-transform-classes": "^7.14.
|
1068 |
-
"@babel/plugin-transform-computed-properties": "^7.
|
1069 |
-
"@babel/plugin-transform-destructuring": "^7.
|
1070 |
-
"@babel/plugin-transform-dotall-regex": "^7.
|
1071 |
-
"@babel/plugin-transform-duplicate-keys": "^7.
|
1072 |
-
"@babel/plugin-transform-exponentiation-operator": "^7.
|
1073 |
-
"@babel/plugin-transform-for-of": "^7.
|
1074 |
-
"@babel/plugin-transform-function-name": "^7.
|
1075 |
-
"@babel/plugin-transform-literals": "^7.
|
1076 |
-
"@babel/plugin-transform-member-expression-literals": "^7.
|
1077 |
-
"@babel/plugin-transform-modules-amd": "^7.14.
|
1078 |
-
"@babel/plugin-transform-modules-commonjs": "^7.14.
|
1079 |
-
"@babel/plugin-transform-modules-systemjs": "^7.
|
1080 |
-
"@babel/plugin-transform-modules-umd": "^7.14.
|
1081 |
-
"@babel/plugin-transform-named-capturing-groups-regex": "^7.
|
1082 |
-
"@babel/plugin-transform-new-target": "^7.
|
1083 |
-
"@babel/plugin-transform-object-super": "^7.
|
1084 |
-
"@babel/plugin-transform-parameters": "^7.14.
|
1085 |
-
"@babel/plugin-transform-property-literals": "^7.
|
1086 |
-
"@babel/plugin-transform-regenerator": "^7.
|
1087 |
-
"@babel/plugin-transform-reserved-words": "^7.
|
1088 |
-
"@babel/plugin-transform-shorthand-properties": "^7.
|
1089 |
-
"@babel/plugin-transform-spread": "^7.
|
1090 |
-
"@babel/plugin-transform-sticky-regex": "^7.
|
1091 |
-
"@babel/plugin-transform-template-literals": "^7.
|
1092 |
-
"@babel/plugin-transform-typeof-symbol": "^7.
|
1093 |
-
"@babel/plugin-transform-unicode-escapes": "^7.
|
1094 |
-
"@babel/plugin-transform-unicode-regex": "^7.
|
1095 |
"@babel/preset-modules": "^0.1.4",
|
1096 |
-
"@babel/types": "^7.14.
|
1097 |
-
"babel-plugin-polyfill-corejs2": "^0.2.
|
1098 |
-
"babel-plugin-polyfill-corejs3": "^0.2.
|
1099 |
-
"babel-plugin-polyfill-regenerator": "^0.2.
|
1100 |
-
"core-js-compat": "^3.
|
1101 |
"semver": "^6.3.0"
|
1102 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1103 |
"dependencies": {
|
1104 |
-
"
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
|
|
|
|
|
|
1110 |
}
|
1111 |
},
|
1112 |
-
"
|
1113 |
"version": "0.1.4",
|
1114 |
"resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz",
|
1115 |
"integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==",
|
1116 |
-
"
|
1117 |
-
"requires": {
|
1118 |
"@babel/helper-plugin-utils": "^7.0.0",
|
1119 |
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
|
1120 |
"@babel/plugin-transform-dotall-regex": "^7.4.4",
|
1121 |
"@babel/types": "^7.4.4",
|
1122 |
"esutils": "^2.0.2"
|
|
|
|
|
|
|
1123 |
}
|
1124 |
},
|
1125 |
-
"
|
1126 |
-
"version": "7.
|
1127 |
-
"resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.
|
1128 |
-
"integrity": "sha512-
|
1129 |
"dev": true,
|
1130 |
-
"
|
1131 |
-
"@babel/helper-plugin-utils": "^7.
|
1132 |
-
"@babel/helper-validator-option": "^7.
|
1133 |
-
"@babel/plugin-transform-react-display-name": "^7.
|
1134 |
-
"@babel/plugin-transform-react-jsx": "^7.
|
1135 |
-
"@babel/plugin-transform-react-jsx-development": "^7.
|
1136 |
-
"@babel/plugin-transform-react-pure-annotations": "^7.
|
|
|
|
|
|
|
|
|
|
|
|
|
1137 |
}
|
1138 |
},
|
1139 |
-
"
|
1140 |
-
"version": "7.14.
|
1141 |
-
"resolved": "https://registry.npmjs.org/@babel/
|
1142 |
-
"integrity": "sha512-
|
1143 |
-
"
|
1144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1145 |
}
|
1146 |
},
|
1147 |
-
"
|
1148 |
-
"version": "7.
|
1149 |
-
"resolved": "https://registry.npmjs.org/@babel/
|
1150 |
-
"integrity": "sha512
|
1151 |
-
"
|
1152 |
-
"
|
1153 |
-
"
|
1154 |
-
"
|
1155 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1156 |
}
|
1157 |
},
|
1158 |
-
"
|
1159 |
-
"version": "
|
1160 |
-
"resolved": "https://registry.npmjs.org
|
1161 |
-
"integrity": "sha512-
|
1162 |
-
"
|
1163 |
-
"requires": {
|
1164 |
-
"@babel/code-frame": "^7.12.13",
|
1165 |
-
"@babel/generator": "^7.14.2",
|
1166 |
-
"@babel/helper-function-name": "^7.14.2",
|
1167 |
-
"@babel/helper-split-export-declaration": "^7.12.13",
|
1168 |
-
"@babel/parser": "^7.14.2",
|
1169 |
-
"@babel/types": "^7.14.2",
|
1170 |
-
"debug": "^4.1.0",
|
1171 |
-
"globals": "^11.1.0"
|
1172 |
-
},
|
1173 |
"dependencies": {
|
1174 |
-
"
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
}
|
1181 |
},
|
1182 |
-
"
|
1183 |
-
"version": "
|
1184 |
-
"resolved": "https://registry.npmjs.org
|
1185 |
-
"integrity": "sha512-
|
1186 |
-
"
|
1187 |
-
|
1188 |
-
"
|
|
|
|
|
|
|
|
|
1189 |
}
|
1190 |
},
|
1191 |
-
"
|
1192 |
-
"version": "0.
|
1193 |
-
"resolved": "https://registry.npmjs.org
|
1194 |
-
"integrity": "sha512
|
1195 |
-
"
|
1196 |
-
|
|
|
|
|
|
|
|
|
1197 |
}
|
1198 |
},
|
1199 |
-
"
|
1200 |
-
"version": "
|
1201 |
-
"resolved": "https://registry.npmjs.org
|
1202 |
-
"integrity": "sha512-
|
1203 |
-
"
|
|
|
|
|
|
|
1204 |
},
|
1205 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1206 |
"version": "10.0.29",
|
1207 |
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz",
|
1208 |
"integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==",
|
1209 |
-
"
|
1210 |
"@emotion/sheet": "0.9.4",
|
1211 |
"@emotion/stylis": "0.8.5",
|
1212 |
"@emotion/utils": "0.11.3",
|
1213 |
"@emotion/weak-memoize": "0.2.5"
|
1214 |
}
|
1215 |
},
|
1216 |
-
"
|
1217 |
"version": "10.1.1",
|
1218 |
"resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.1.1.tgz",
|
1219 |
"integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==",
|
1220 |
-
"
|
1221 |
"@babel/runtime": "^7.5.5",
|
1222 |
"@emotion/cache": "^10.0.27",
|
1223 |
"@emotion/css": "^10.0.27",
|
1224 |
"@emotion/serialize": "^0.11.15",
|
1225 |
"@emotion/sheet": "0.9.4",
|
1226 |
"@emotion/utils": "0.11.3"
|
|
|
|
|
|
|
1227 |
}
|
1228 |
},
|
1229 |
-
"
|
1230 |
"version": "10.0.27",
|
1231 |
"resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz",
|
1232 |
"integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==",
|
1233 |
-
"
|
1234 |
"@emotion/serialize": "^0.11.15",
|
1235 |
"@emotion/utils": "0.11.3",
|
1236 |
"babel-plugin-emotion": "^10.0.27"
|
1237 |
}
|
1238 |
},
|
1239 |
-
"
|
1240 |
"version": "0.8.0",
|
1241 |
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
|
1242 |
"integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
|
1243 |
},
|
1244 |
-
"
|
1245 |
"version": "0.8.8",
|
1246 |
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
|
1247 |
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
|
1248 |
-
"
|
1249 |
"@emotion/memoize": "0.7.4"
|
1250 |
}
|
1251 |
},
|
1252 |
-
"
|
1253 |
"version": "0.7.4",
|
1254 |
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
|
1255 |
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
|
1256 |
},
|
1257 |
-
"
|
1258 |
-
"version": "10.0.27",
|
1259 |
-
"resolved": "https://registry.npmjs.org/@emotion/native/-/native-10.0.27.tgz",
|
1260 |
-
"integrity": "sha512-3qxR2XFizGfABKKbX9kAYc0PHhKuCEuyxshoq3TaMEbi9asWHdQVChg32ULpblm4XAf9oxaitAU7J9SfdwFxtw==",
|
1261 |
-
"requires": {
|
1262 |
-
"@emotion/primitives-core": "10.0.27"
|
1263 |
-
}
|
1264 |
-
},
|
1265 |
-
"@emotion/primitives-core": {
|
1266 |
-
"version": "10.0.27",
|
1267 |
-
"resolved": "https://registry.npmjs.org/@emotion/primitives-core/-/primitives-core-10.0.27.tgz",
|
1268 |
-
"integrity": "sha512-fRBEDNPSFFOrBJ0OcheuElayrNTNdLF9DzMxtL0sFgsCFvvadlzwJHhJMSwEJuxwARm9GhVLr1p8G8JGkK98lQ==",
|
1269 |
-
"requires": {
|
1270 |
-
"css-to-react-native": "^2.2.1"
|
1271 |
-
}
|
1272 |
-
},
|
1273 |
-
"@emotion/serialize": {
|
1274 |
"version": "0.11.16",
|
1275 |
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
|
1276 |
"integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
|
1277 |
-
"
|
1278 |
"@emotion/hash": "0.8.0",
|
1279 |
"@emotion/memoize": "0.7.4",
|
1280 |
"@emotion/unitless": "0.7.5",
|
1281 |
"@emotion/utils": "0.11.3",
|
1282 |
"csstype": "^2.5.7"
|
1283 |
-
},
|
1284 |
-
"dependencies": {
|
1285 |
-
"csstype": {
|
1286 |
-
"version": "2.6.17",
|
1287 |
-
"resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.17.tgz",
|
1288 |
-
"integrity": "sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A=="
|
1289 |
-
}
|
1290 |
}
|
1291 |
},
|
1292 |
-
"
|
|
|
|
|
|
|
|
|
|
|
1293 |
"version": "0.9.4",
|
1294 |
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz",
|
1295 |
"integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="
|
1296 |
},
|
1297 |
-
"
|
1298 |
"version": "10.0.27",
|
1299 |
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.0.27.tgz",
|
1300 |
"integrity": "sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==",
|
1301 |
-
"
|
1302 |
"@emotion/styled-base": "^10.0.27",
|
1303 |
"babel-plugin-emotion": "^10.0.27"
|
|
|
|
|
|
|
|
|
1304 |
}
|
1305 |
},
|
1306 |
-
"
|
1307 |
"version": "10.0.31",
|
1308 |
"resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.0.31.tgz",
|
1309 |
"integrity": "sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==",
|
1310 |
-
"
|
1311 |
"@babel/runtime": "^7.5.5",
|
1312 |
"@emotion/is-prop-valid": "0.8.8",
|
1313 |
"@emotion/serialize": "^0.11.15",
|
1314 |
"@emotion/utils": "0.11.3"
|
|
|
|
|
|
|
|
|
1315 |
}
|
1316 |
},
|
1317 |
-
"
|
1318 |
"version": "0.8.5",
|
1319 |
"resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
|
1320 |
"integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
|
1321 |
},
|
1322 |
-
"
|
1323 |
"version": "0.7.5",
|
1324 |
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
|
1325 |
"integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
|
1326 |
},
|
1327 |
-
"
|
1328 |
"version": "0.11.3",
|
1329 |
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz",
|
1330 |
"integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw=="
|
1331 |
},
|
1332 |
-
"
|
1333 |
"version": "0.2.5",
|
1334 |
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
|
1335 |
"integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
|
1336 |
},
|
1337 |
-
"
|
1338 |
-
"version": "0.4.
|
1339 |
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.
|
1340 |
-
"integrity": "sha512-
|
1341 |
"dev": true,
|
1342 |
-
"
|
1343 |
"ajv": "^6.12.4",
|
1344 |
"debug": "^4.1.1",
|
1345 |
"espree": "^7.3.0",
|
1346 |
-
"globals": "^
|
1347 |
"ignore": "^4.0.6",
|
1348 |
"import-fresh": "^3.2.1",
|
1349 |
"js-yaml": "^3.13.1",
|
1350 |
"minimatch": "^3.0.4",
|
1351 |
"strip-json-comments": "^3.1.1"
|
1352 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1353 |
"dependencies": {
|
1354 |
-
"
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
"dev": true,
|
1359 |
-
"requires": {
|
1360 |
-
"type-fest": "^0.8.1"
|
1361 |
-
}
|
1362 |
-
},
|
1363 |
-
"strip-json-comments": {
|
1364 |
-
"version": "3.1.1",
|
1365 |
-
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
|
1366 |
-
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
|
1367 |
-
"dev": true
|
1368 |
-
}
|
1369 |
}
|
1370 |
},
|
1371 |
-
"
|
1372 |
-
"version": "
|
1373 |
-
"resolved": "https://registry.npmjs.org/@
|
1374 |
-
"integrity": "sha512-
|
1375 |
-
"
|
1376 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1377 |
}
|
1378 |
},
|
1379 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1380 |
"version": "1.2.0",
|
1381 |
-
"resolved": "https://registry.npmjs.org/@
|
1382 |
-
"integrity": "sha512-
|
|
|
1383 |
},
|
1384 |
-
"
|
1385 |
-
"version": "
|
1386 |
-
"resolved": "https://registry.npmjs.org/@
|
1387 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1388 |
},
|
1389 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|