nodefony 7.0.0-beta.2 → 7.0.0-beta.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +534 -8028
- package/README.md +33 -30
- package/autoloader.es6 +46 -48
- package/builder.es6 +66 -76
- package/cli/builder/bundles/bundle.js +57 -63
- package/cli/builder/bundles/controller.js +34 -38
- package/cli/builder/bundles/users-bundle/Command/fixtureTask.js +11 -12
- package/cli/builder/bundles/users-bundle/Command/usersCommand.js +23 -24
- package/cli/builder/bundles/users-bundle/Entity/mongoose/userEntity.js +25 -30
- package/cli/builder/bundles/users-bundle/Entity/sequelize/userEntity.js +42 -31
- package/cli/builder/bundles/users-bundle/Fixtures/users.js +24 -26
- package/cli/builder/bundles/users-bundle/Fixtures/usersFixtures.js +28 -29
- package/cli/builder/bundles/users-bundle/Resources/config/config.js +4 -3
- package/cli/builder/bundles/users-bundle/Resources/config/routing.js +2 -2
- package/cli/builder/bundles/users-bundle/Resources/config/security.js +9 -8
- package/cli/builder/bundles/users-bundle/Resources/config/webpack/webpack.dev.config.js +3 -3
- package/cli/builder/bundles/users-bundle/Resources/config/webpack/webpack.prod.config.js +4 -3
- package/cli/builder/bundles/users-bundle/Resources/config/webpack.config.js +74 -75
- package/cli/builder/bundles/users-bundle/Resources/scss/awesome/font-awesome.config.js +9 -9
- package/cli/builder/bundles/users-bundle/Resources/swagger/openapi/login.js +13 -13
- package/cli/builder/bundles/users-bundle/Resources/swagger/openapi/users.js +14 -14
- package/cli/builder/bundles/users-bundle/controller/api/graphql/graphqlController.js +13 -15
- package/cli/builder/bundles/users-bundle/controller/api/graphql/userResolver.js +29 -29
- package/cli/builder/bundles/users-bundle/controller/api/graphql/usertype.js +2 -2
- package/cli/builder/bundles/users-bundle/controller/api/openapi/loginApiController.js +34 -36
- package/cli/builder/bundles/users-bundle/controller/api/openapi/restUserController.js +32 -36
- package/cli/builder/bundles/users-bundle/controller/loginController.js +30 -34
- package/cli/builder/bundles/users-bundle/controller/usersController.js +54 -60
- package/cli/builder/bundles/users-bundle/package.json +27 -25
- package/cli/builder/bundles/users-bundle/pnpm-lock.yaml +4262 -0
- package/cli/builder/bundles/users-bundle/readme.md +7 -7
- package/cli/builder/bundles/users-bundle/services/usersService.js +97 -102
- package/cli/builder/bundles/users-bundle/src/providers/mongoose/userProvider.js +6 -8
- package/cli/builder/bundles/users-bundle/src/providers/sequelize/userProvider.js +9 -10
- package/cli/builder/bundles/users-bundle/tests/loginTest.js +119 -70
- package/cli/builder/bundles/users-bundle/usersBundle.js +2 -3
- package/cli/builder/microService/microService.js +139 -141
- package/cli/builder/microService/skeletons/package.json +23 -22
- package/cli/builder/project/project.js +228 -181
- package/cli/builder/project/skeletons/README.md +33 -30
- package/cli/builder/project/skeletons/bin/dev-deploy.sh +5 -0
- package/cli/builder/project/skeletons/bin/prod-deploy.sh +3 -0
- package/cli/builder/project/skeletons/config/config.js.skeleton +1 -0
- package/cli/builder/project/skeletons/config/pm2.config.js.skeleton +41 -17
- package/cli/builder/project/skeletons/eslintignore.skeleton +15 -0
- package/cli/builder/project/skeletons/eslintrc.js.skeleton +97 -0
- package/cli/builder/project/skeletons/gitignore.skeleton +1 -0
- package/cli/builder/project/skeletons/migrations/2022.12.25T17.37.37.entity-user.js +137 -0
- package/cli/builder/project/skeletons/migrations/2022.12.25T17.37.38.entity-session.js +97 -0
- package/cli/builder/project/skeletons/migrations/2022.12.25T17.37.39.entity-requests.js +115 -0
- package/cli/builder/project/skeletons/migrations/2022.12.25T17.37.40.entity-jwts.js +97 -0
- package/cli/builder/project/skeletons/migrations/migrations.skeleton.js +0 -2
- package/cli/builder/project/skeletons/package.json.twig +70 -0
- package/cli/builder/react/reactBuilder.js +59 -65
- package/cli/builder/sandbox/sandBoxBuilder.js +132 -134
- package/cli/builder/skeletons/app/appKernel.js +120 -2
- package/cli/builder/skeletons/config/config.js +1 -1
- package/cli/builder/skeletons/config/nodefony/framework-bundle.js +2 -1
- package/cli/builder/skeletons/config/nodefony/http-bundle.js +1 -0
- package/cli/builder/skeletons/config/nodefony/mongoose-bundle.js +38 -12
- package/cli/builder/skeletons/config/nodefony/monitoring-bundle.js +21 -2
- package/cli/builder/skeletons/config/nodefony/sequelize-bundle.js +122 -13
- package/cli/builder/skeletons/package.json.twig +57 -0
- package/cli/builder/skeletons/unittest/testFile.js +44 -45
- package/cli/builder/vue/skeletons/vue.config.js +84 -10
- package/cli/builder/vue/vueBuilder.js +116 -114
- package/cli/generate/generate.es6 +38 -39
- package/cli/install/install.js +45 -58
- package/cli/sequelize/sequelize.js +50 -39
- package/cli/start.js +353 -347
- package/cli/tools/pm2.es6 +55 -57
- package/cli/tools/tools.es6 +36 -37
- package/cli.es6 +280 -228
- package/container.es6 +51 -59
- package/error.es6 +25 -27
- package/fileClass.es6 +53 -55
- package/finder/file.es6 +5 -4
- package/finder/fileResult.es6 +23 -22
- package/finder/finder2.es6 +46 -54
- package/finder.es6 +88 -97
- package/kernel/annotations/annotations.es6 +44 -46
- package/kernel/api/api.es6 +6 -8
- package/kernel/api/graphqlApi.es6 +21 -21
- package/kernel/api/jsonApi.es6 +40 -45
- package/kernel/api/openApi.es6 +9 -11
- package/kernel/api/schemas/openApiSchema.js +61 -32
- package/kernel/babylon.es6 +31 -38
- package/kernel/bundle.es6 +252 -220
- package/kernel/cliKernel.es6 +157 -170
- package/kernel/command.es6 +17 -20
- package/kernel/commands/nodefonyCommand.es6 +111 -58
- package/kernel/commands/tasks/bundlesTask.es6 +14 -19
- package/kernel/controllers/controller.es6 +167 -180
- package/kernel/fixture.es6 +4 -7
- package/kernel/injections/injections.es6 +97 -103
- package/kernel/kernel.es6 +476 -384
- package/kernel/kernelWatcher.es6 +64 -54
- package/kernel/orm/entity.es6 +10 -12
- package/kernel/orm/orm.es6 +68 -48
- package/kernel/reader.es6 +45 -47
- package/kernel/security/encoder.es6 +8 -6
- package/kernel/security/factories/factory.es6 +34 -37
- package/kernel/security/factories/passeportFactory.es6 +13 -14
- package/kernel/security/provider.es6 +11 -13
- package/kernel/security/providers/chainProvider.es6 +13 -28
- package/kernel/security/providers/memoryProvider.es6 +7 -11
- package/kernel/security/providers/providerManager.es6 +11 -14
- package/kernel/security/providers/userEntityProvider.es6 +7 -8
- package/kernel/security/role.es6 +3 -3
- package/kernel/security/secureArea.es6 +143 -149
- package/kernel/security/tokens/token.es6 +30 -32
- package/kernel/security/user.es6 +19 -19
- package/kernel/serviceRealTime.es6 +5 -7
- package/kernel/services/connectionsService.es6 +20 -22
- package/kernel/services/cron/cronService.es6 +14 -16
- package/kernel/task.es6 +20 -26
- package/kernel/templates.es6 +4 -5
- package/kernel/templating/twig.es6 +56 -47
- package/kernel/tests/cliTest.js +7 -11
- package/kernel/tests/containerTest.js +25 -37
- package/kernel/tests/kernelTest.js +9 -16
- package/nodefony.es6 +279 -256
- package/notificationsCenter.es6 +28 -20
- package/package.json +40 -40
- package/protocol.es6 +19 -21
- package/protocols/bayeux.es6 +35 -38
- package/protocols/jsonRpc/jsonrpc.es6 +12 -14
- package/result.es6 +11 -12
- package/service.es6 +62 -62
- package/syslog/pdu.es6 +99 -91
- package/syslog/syslog.es6 +101 -102
- package/watcher.es6 +21 -20
- package/cli/builder/project/skeletons/jshintignore.skeleton +0 -1
- package/cli/builder/project/skeletons/jshintrc.skeleton +0 -60
- package/cli/builder/project/skeletons/package.json.skeleton +0 -52
- package/cli/builder/skeletons/package.json +0 -61
|
@@ -0,0 +1,4262 @@
|
|
|
1
|
+
lockfileVersion: 5.4
|
|
2
|
+
|
|
3
|
+
specifiers:
|
|
4
|
+
'@babel/core': ^7.19.6
|
|
5
|
+
'@babel/plugin-proposal-class-properties': 7.18.6
|
|
6
|
+
'@babel/plugin-syntax-dynamic-import': ^7.8.3
|
|
7
|
+
'@babel/preset-env': ^7.19.4
|
|
8
|
+
'@babel/preset-react': 7.18.6
|
|
9
|
+
'@mapbox/node-pre-gyp': 1.0.10
|
|
10
|
+
'@popperjs/core': 2.11.6
|
|
11
|
+
'@withshepherd/faker': 5.5.5
|
|
12
|
+
babel-loader: ^9.0.1
|
|
13
|
+
babel-register: ^6.26.0
|
|
14
|
+
bootstrap: ^5.2.2
|
|
15
|
+
clean-webpack-plugin: ^4.0.0
|
|
16
|
+
css-hot-loader: ^1.4.4
|
|
17
|
+
css-loader: 6.7.1
|
|
18
|
+
expose-loader: 4.0.0
|
|
19
|
+
font-awesome: ^4.7.0
|
|
20
|
+
html-webpack-plugin: ^5.5.0
|
|
21
|
+
imports-loader: 4.0.1
|
|
22
|
+
jquery: 3.6.1
|
|
23
|
+
mini-css-extract-plugin: 2.6.1
|
|
24
|
+
mongoose-paginate-v2: 1.7.1
|
|
25
|
+
node-gyp: ^9.3.0
|
|
26
|
+
sass: 1.55.0
|
|
27
|
+
sass-loader: ^13.1.0
|
|
28
|
+
sequelize-cli: ^6.5.2
|
|
29
|
+
stream: 0.0.2
|
|
30
|
+
style-loader: ^3.3.1
|
|
31
|
+
svg-inline-loader: ^0.8.2
|
|
32
|
+
terser-webpack-plugin: 5.3.6
|
|
33
|
+
webpack: 5.74.0
|
|
34
|
+
webpack-merge: ^5.8.0
|
|
35
|
+
|
|
36
|
+
dependencies:
|
|
37
|
+
'@babel/core': 7.19.6
|
|
38
|
+
'@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.6
|
|
39
|
+
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.6
|
|
40
|
+
'@babel/preset-env': 7.19.4_@babel+core@7.19.6
|
|
41
|
+
'@babel/preset-react': 7.18.6_@babel+core@7.19.6
|
|
42
|
+
'@popperjs/core': 2.11.6
|
|
43
|
+
'@withshepherd/faker': 5.5.5
|
|
44
|
+
babel-loader: 9.0.1_6zc4kxld457avlfyhj3lzsljlm
|
|
45
|
+
babel-register: 6.26.0
|
|
46
|
+
bootstrap: 5.2.2_@popperjs+core@2.11.6
|
|
47
|
+
clean-webpack-plugin: 4.0.0_webpack@5.74.0
|
|
48
|
+
css-hot-loader: 1.4.4
|
|
49
|
+
css-loader: 6.7.1_webpack@5.74.0
|
|
50
|
+
expose-loader: 4.0.0_webpack@5.74.0
|
|
51
|
+
font-awesome: 4.7.0
|
|
52
|
+
html-webpack-plugin: 5.5.0_webpack@5.74.0
|
|
53
|
+
imports-loader: 4.0.1_webpack@5.74.0
|
|
54
|
+
jquery: 3.6.1
|
|
55
|
+
mini-css-extract-plugin: 2.6.1_webpack@5.74.0
|
|
56
|
+
mongoose-paginate-v2: 1.7.1
|
|
57
|
+
sass: 1.55.0
|
|
58
|
+
sass-loader: 13.1.0_sass@1.55.0+webpack@5.74.0
|
|
59
|
+
style-loader: 3.3.1_webpack@5.74.0
|
|
60
|
+
svg-inline-loader: 0.8.2
|
|
61
|
+
terser-webpack-plugin: 5.3.6_webpack@5.74.0
|
|
62
|
+
webpack: 5.74.0
|
|
63
|
+
webpack-merge: 5.8.0
|
|
64
|
+
|
|
65
|
+
devDependencies:
|
|
66
|
+
'@mapbox/node-pre-gyp': 1.0.10
|
|
67
|
+
node-gyp: 9.3.0
|
|
68
|
+
sequelize-cli: 6.5.2
|
|
69
|
+
stream: 0.0.2
|
|
70
|
+
|
|
71
|
+
packages:
|
|
72
|
+
|
|
73
|
+
/@ampproject/remapping/2.2.0:
|
|
74
|
+
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
|
|
75
|
+
engines: {node: '>=6.0.0'}
|
|
76
|
+
dependencies:
|
|
77
|
+
'@jridgewell/gen-mapping': 0.1.1
|
|
78
|
+
'@jridgewell/trace-mapping': 0.3.17
|
|
79
|
+
dev: false
|
|
80
|
+
|
|
81
|
+
/@babel/code-frame/7.18.6:
|
|
82
|
+
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
|
|
83
|
+
engines: {node: '>=6.9.0'}
|
|
84
|
+
dependencies:
|
|
85
|
+
'@babel/highlight': 7.18.6
|
|
86
|
+
dev: false
|
|
87
|
+
|
|
88
|
+
/@babel/compat-data/7.20.0:
|
|
89
|
+
resolution: {integrity: sha512-Gt9jszFJYq7qzXVK4slhc6NzJXnOVmRECWcVjF/T23rNXD9NtWQ0W3qxdg+p9wWIB+VQw3GYV/U2Ha9bRTfs4w==}
|
|
90
|
+
engines: {node: '>=6.9.0'}
|
|
91
|
+
dev: false
|
|
92
|
+
|
|
93
|
+
/@babel/core/7.19.6:
|
|
94
|
+
resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==}
|
|
95
|
+
engines: {node: '>=6.9.0'}
|
|
96
|
+
dependencies:
|
|
97
|
+
'@ampproject/remapping': 2.2.0
|
|
98
|
+
'@babel/code-frame': 7.18.6
|
|
99
|
+
'@babel/generator': 7.20.0
|
|
100
|
+
'@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6
|
|
101
|
+
'@babel/helper-module-transforms': 7.19.6
|
|
102
|
+
'@babel/helpers': 7.20.0
|
|
103
|
+
'@babel/parser': 7.20.0
|
|
104
|
+
'@babel/template': 7.18.10
|
|
105
|
+
'@babel/traverse': 7.20.0
|
|
106
|
+
'@babel/types': 7.20.0
|
|
107
|
+
convert-source-map: 1.9.0
|
|
108
|
+
debug: 4.3.4
|
|
109
|
+
gensync: 1.0.0-beta.2
|
|
110
|
+
json5: 2.2.1
|
|
111
|
+
semver: 6.3.0
|
|
112
|
+
transitivePeerDependencies:
|
|
113
|
+
- supports-color
|
|
114
|
+
dev: false
|
|
115
|
+
|
|
116
|
+
/@babel/generator/7.20.0:
|
|
117
|
+
resolution: {integrity: sha512-GUPcXxWibClgmYJuIwC2Bc2Lg+8b9VjaJ+HlNdACEVt+Wlr1eoU1OPZjZRm7Hzl0gaTsUZNQfeihvZJhG7oc3w==}
|
|
118
|
+
engines: {node: '>=6.9.0'}
|
|
119
|
+
dependencies:
|
|
120
|
+
'@babel/types': 7.20.0
|
|
121
|
+
'@jridgewell/gen-mapping': 0.3.2
|
|
122
|
+
jsesc: 2.5.2
|
|
123
|
+
dev: false
|
|
124
|
+
|
|
125
|
+
/@babel/helper-annotate-as-pure/7.18.6:
|
|
126
|
+
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
|
|
127
|
+
engines: {node: '>=6.9.0'}
|
|
128
|
+
dependencies:
|
|
129
|
+
'@babel/types': 7.20.0
|
|
130
|
+
dev: false
|
|
131
|
+
|
|
132
|
+
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
|
|
133
|
+
resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
|
|
134
|
+
engines: {node: '>=6.9.0'}
|
|
135
|
+
dependencies:
|
|
136
|
+
'@babel/helper-explode-assignable-expression': 7.18.6
|
|
137
|
+
'@babel/types': 7.20.0
|
|
138
|
+
dev: false
|
|
139
|
+
|
|
140
|
+
/@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.6:
|
|
141
|
+
resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==}
|
|
142
|
+
engines: {node: '>=6.9.0'}
|
|
143
|
+
peerDependencies:
|
|
144
|
+
'@babel/core': ^7.0.0
|
|
145
|
+
dependencies:
|
|
146
|
+
'@babel/compat-data': 7.20.0
|
|
147
|
+
'@babel/core': 7.19.6
|
|
148
|
+
'@babel/helper-validator-option': 7.18.6
|
|
149
|
+
browserslist: 4.21.4
|
|
150
|
+
semver: 6.3.0
|
|
151
|
+
dev: false
|
|
152
|
+
|
|
153
|
+
/@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.6:
|
|
154
|
+
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
|
|
155
|
+
engines: {node: '>=6.9.0'}
|
|
156
|
+
peerDependencies:
|
|
157
|
+
'@babel/core': ^7.0.0
|
|
158
|
+
dependencies:
|
|
159
|
+
'@babel/core': 7.19.6
|
|
160
|
+
'@babel/helper-annotate-as-pure': 7.18.6
|
|
161
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
162
|
+
'@babel/helper-function-name': 7.19.0
|
|
163
|
+
'@babel/helper-member-expression-to-functions': 7.18.9
|
|
164
|
+
'@babel/helper-optimise-call-expression': 7.18.6
|
|
165
|
+
'@babel/helper-replace-supers': 7.19.1
|
|
166
|
+
'@babel/helper-split-export-declaration': 7.18.6
|
|
167
|
+
transitivePeerDependencies:
|
|
168
|
+
- supports-color
|
|
169
|
+
dev: false
|
|
170
|
+
|
|
171
|
+
/@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.6:
|
|
172
|
+
resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
|
|
173
|
+
engines: {node: '>=6.9.0'}
|
|
174
|
+
peerDependencies:
|
|
175
|
+
'@babel/core': ^7.0.0
|
|
176
|
+
dependencies:
|
|
177
|
+
'@babel/core': 7.19.6
|
|
178
|
+
'@babel/helper-annotate-as-pure': 7.18.6
|
|
179
|
+
regexpu-core: 5.2.1
|
|
180
|
+
dev: false
|
|
181
|
+
|
|
182
|
+
/@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.6:
|
|
183
|
+
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
|
|
184
|
+
peerDependencies:
|
|
185
|
+
'@babel/core': ^7.4.0-0
|
|
186
|
+
dependencies:
|
|
187
|
+
'@babel/core': 7.19.6
|
|
188
|
+
'@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6
|
|
189
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
190
|
+
debug: 4.3.4
|
|
191
|
+
lodash.debounce: 4.0.8
|
|
192
|
+
resolve: 1.22.1
|
|
193
|
+
semver: 6.3.0
|
|
194
|
+
transitivePeerDependencies:
|
|
195
|
+
- supports-color
|
|
196
|
+
dev: false
|
|
197
|
+
|
|
198
|
+
/@babel/helper-environment-visitor/7.18.9:
|
|
199
|
+
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
|
|
200
|
+
engines: {node: '>=6.9.0'}
|
|
201
|
+
dev: false
|
|
202
|
+
|
|
203
|
+
/@babel/helper-explode-assignable-expression/7.18.6:
|
|
204
|
+
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
|
|
205
|
+
engines: {node: '>=6.9.0'}
|
|
206
|
+
dependencies:
|
|
207
|
+
'@babel/types': 7.20.0
|
|
208
|
+
dev: false
|
|
209
|
+
|
|
210
|
+
/@babel/helper-function-name/7.19.0:
|
|
211
|
+
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
|
|
212
|
+
engines: {node: '>=6.9.0'}
|
|
213
|
+
dependencies:
|
|
214
|
+
'@babel/template': 7.18.10
|
|
215
|
+
'@babel/types': 7.20.0
|
|
216
|
+
dev: false
|
|
217
|
+
|
|
218
|
+
/@babel/helper-hoist-variables/7.18.6:
|
|
219
|
+
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
|
|
220
|
+
engines: {node: '>=6.9.0'}
|
|
221
|
+
dependencies:
|
|
222
|
+
'@babel/types': 7.20.0
|
|
223
|
+
dev: false
|
|
224
|
+
|
|
225
|
+
/@babel/helper-member-expression-to-functions/7.18.9:
|
|
226
|
+
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
|
|
227
|
+
engines: {node: '>=6.9.0'}
|
|
228
|
+
dependencies:
|
|
229
|
+
'@babel/types': 7.20.0
|
|
230
|
+
dev: false
|
|
231
|
+
|
|
232
|
+
/@babel/helper-module-imports/7.18.6:
|
|
233
|
+
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
|
|
234
|
+
engines: {node: '>=6.9.0'}
|
|
235
|
+
dependencies:
|
|
236
|
+
'@babel/types': 7.20.0
|
|
237
|
+
dev: false
|
|
238
|
+
|
|
239
|
+
/@babel/helper-module-transforms/7.19.6:
|
|
240
|
+
resolution: {integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==}
|
|
241
|
+
engines: {node: '>=6.9.0'}
|
|
242
|
+
dependencies:
|
|
243
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
244
|
+
'@babel/helper-module-imports': 7.18.6
|
|
245
|
+
'@babel/helper-simple-access': 7.19.4
|
|
246
|
+
'@babel/helper-split-export-declaration': 7.18.6
|
|
247
|
+
'@babel/helper-validator-identifier': 7.19.1
|
|
248
|
+
'@babel/template': 7.18.10
|
|
249
|
+
'@babel/traverse': 7.20.0
|
|
250
|
+
'@babel/types': 7.20.0
|
|
251
|
+
transitivePeerDependencies:
|
|
252
|
+
- supports-color
|
|
253
|
+
dev: false
|
|
254
|
+
|
|
255
|
+
/@babel/helper-optimise-call-expression/7.18.6:
|
|
256
|
+
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
|
|
257
|
+
engines: {node: '>=6.9.0'}
|
|
258
|
+
dependencies:
|
|
259
|
+
'@babel/types': 7.20.0
|
|
260
|
+
dev: false
|
|
261
|
+
|
|
262
|
+
/@babel/helper-plugin-utils/7.19.0:
|
|
263
|
+
resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==}
|
|
264
|
+
engines: {node: '>=6.9.0'}
|
|
265
|
+
dev: false
|
|
266
|
+
|
|
267
|
+
/@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.6:
|
|
268
|
+
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
|
|
269
|
+
engines: {node: '>=6.9.0'}
|
|
270
|
+
peerDependencies:
|
|
271
|
+
'@babel/core': ^7.0.0
|
|
272
|
+
dependencies:
|
|
273
|
+
'@babel/core': 7.19.6
|
|
274
|
+
'@babel/helper-annotate-as-pure': 7.18.6
|
|
275
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
276
|
+
'@babel/helper-wrap-function': 7.19.0
|
|
277
|
+
'@babel/types': 7.20.0
|
|
278
|
+
transitivePeerDependencies:
|
|
279
|
+
- supports-color
|
|
280
|
+
dev: false
|
|
281
|
+
|
|
282
|
+
/@babel/helper-replace-supers/7.19.1:
|
|
283
|
+
resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
|
|
284
|
+
engines: {node: '>=6.9.0'}
|
|
285
|
+
dependencies:
|
|
286
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
287
|
+
'@babel/helper-member-expression-to-functions': 7.18.9
|
|
288
|
+
'@babel/helper-optimise-call-expression': 7.18.6
|
|
289
|
+
'@babel/traverse': 7.20.0
|
|
290
|
+
'@babel/types': 7.20.0
|
|
291
|
+
transitivePeerDependencies:
|
|
292
|
+
- supports-color
|
|
293
|
+
dev: false
|
|
294
|
+
|
|
295
|
+
/@babel/helper-simple-access/7.19.4:
|
|
296
|
+
resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==}
|
|
297
|
+
engines: {node: '>=6.9.0'}
|
|
298
|
+
dependencies:
|
|
299
|
+
'@babel/types': 7.20.0
|
|
300
|
+
dev: false
|
|
301
|
+
|
|
302
|
+
/@babel/helper-skip-transparent-expression-wrappers/7.20.0:
|
|
303
|
+
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
|
|
304
|
+
engines: {node: '>=6.9.0'}
|
|
305
|
+
dependencies:
|
|
306
|
+
'@babel/types': 7.20.0
|
|
307
|
+
dev: false
|
|
308
|
+
|
|
309
|
+
/@babel/helper-split-export-declaration/7.18.6:
|
|
310
|
+
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
|
|
311
|
+
engines: {node: '>=6.9.0'}
|
|
312
|
+
dependencies:
|
|
313
|
+
'@babel/types': 7.20.0
|
|
314
|
+
dev: false
|
|
315
|
+
|
|
316
|
+
/@babel/helper-string-parser/7.19.4:
|
|
317
|
+
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
|
|
318
|
+
engines: {node: '>=6.9.0'}
|
|
319
|
+
dev: false
|
|
320
|
+
|
|
321
|
+
/@babel/helper-validator-identifier/7.19.1:
|
|
322
|
+
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
|
|
323
|
+
engines: {node: '>=6.9.0'}
|
|
324
|
+
dev: false
|
|
325
|
+
|
|
326
|
+
/@babel/helper-validator-option/7.18.6:
|
|
327
|
+
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
|
|
328
|
+
engines: {node: '>=6.9.0'}
|
|
329
|
+
dev: false
|
|
330
|
+
|
|
331
|
+
/@babel/helper-wrap-function/7.19.0:
|
|
332
|
+
resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
|
|
333
|
+
engines: {node: '>=6.9.0'}
|
|
334
|
+
dependencies:
|
|
335
|
+
'@babel/helper-function-name': 7.19.0
|
|
336
|
+
'@babel/template': 7.18.10
|
|
337
|
+
'@babel/traverse': 7.20.0
|
|
338
|
+
'@babel/types': 7.20.0
|
|
339
|
+
transitivePeerDependencies:
|
|
340
|
+
- supports-color
|
|
341
|
+
dev: false
|
|
342
|
+
|
|
343
|
+
/@babel/helpers/7.20.0:
|
|
344
|
+
resolution: {integrity: sha512-aGMjYraN0zosCEthoGLdqot1oRsmxVTQRHadsUPz5QM44Zej2PYRz7XiDE7GqnkZnNtLbOuxqoZw42vkU7+XEQ==}
|
|
345
|
+
engines: {node: '>=6.9.0'}
|
|
346
|
+
dependencies:
|
|
347
|
+
'@babel/template': 7.18.10
|
|
348
|
+
'@babel/traverse': 7.20.0
|
|
349
|
+
'@babel/types': 7.20.0
|
|
350
|
+
transitivePeerDependencies:
|
|
351
|
+
- supports-color
|
|
352
|
+
dev: false
|
|
353
|
+
|
|
354
|
+
/@babel/highlight/7.18.6:
|
|
355
|
+
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
|
|
356
|
+
engines: {node: '>=6.9.0'}
|
|
357
|
+
dependencies:
|
|
358
|
+
'@babel/helper-validator-identifier': 7.19.1
|
|
359
|
+
chalk: 2.4.2
|
|
360
|
+
js-tokens: 4.0.0
|
|
361
|
+
dev: false
|
|
362
|
+
|
|
363
|
+
/@babel/parser/7.20.0:
|
|
364
|
+
resolution: {integrity: sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg==}
|
|
365
|
+
engines: {node: '>=6.0.0'}
|
|
366
|
+
hasBin: true
|
|
367
|
+
dependencies:
|
|
368
|
+
'@babel/types': 7.20.0
|
|
369
|
+
dev: false
|
|
370
|
+
|
|
371
|
+
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.6:
|
|
372
|
+
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
|
|
373
|
+
engines: {node: '>=6.9.0'}
|
|
374
|
+
peerDependencies:
|
|
375
|
+
'@babel/core': ^7.0.0
|
|
376
|
+
dependencies:
|
|
377
|
+
'@babel/core': 7.19.6
|
|
378
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
379
|
+
dev: false
|
|
380
|
+
|
|
381
|
+
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.6:
|
|
382
|
+
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
|
|
383
|
+
engines: {node: '>=6.9.0'}
|
|
384
|
+
peerDependencies:
|
|
385
|
+
'@babel/core': ^7.13.0
|
|
386
|
+
dependencies:
|
|
387
|
+
'@babel/core': 7.19.6
|
|
388
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
389
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
|
|
390
|
+
'@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.6
|
|
391
|
+
dev: false
|
|
392
|
+
|
|
393
|
+
/@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.6:
|
|
394
|
+
resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==}
|
|
395
|
+
engines: {node: '>=6.9.0'}
|
|
396
|
+
peerDependencies:
|
|
397
|
+
'@babel/core': ^7.0.0-0
|
|
398
|
+
dependencies:
|
|
399
|
+
'@babel/core': 7.19.6
|
|
400
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
401
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
402
|
+
'@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.6
|
|
403
|
+
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.6
|
|
404
|
+
transitivePeerDependencies:
|
|
405
|
+
- supports-color
|
|
406
|
+
dev: false
|
|
407
|
+
|
|
408
|
+
/@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.6:
|
|
409
|
+
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
|
|
410
|
+
engines: {node: '>=6.9.0'}
|
|
411
|
+
peerDependencies:
|
|
412
|
+
'@babel/core': ^7.0.0-0
|
|
413
|
+
dependencies:
|
|
414
|
+
'@babel/core': 7.19.6
|
|
415
|
+
'@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6
|
|
416
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
417
|
+
transitivePeerDependencies:
|
|
418
|
+
- supports-color
|
|
419
|
+
dev: false
|
|
420
|
+
|
|
421
|
+
/@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.6:
|
|
422
|
+
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
|
|
423
|
+
engines: {node: '>=6.9.0'}
|
|
424
|
+
peerDependencies:
|
|
425
|
+
'@babel/core': ^7.12.0
|
|
426
|
+
dependencies:
|
|
427
|
+
'@babel/core': 7.19.6
|
|
428
|
+
'@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6
|
|
429
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
430
|
+
'@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.6
|
|
431
|
+
transitivePeerDependencies:
|
|
432
|
+
- supports-color
|
|
433
|
+
dev: false
|
|
434
|
+
|
|
435
|
+
/@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.6:
|
|
436
|
+
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
|
|
437
|
+
engines: {node: '>=6.9.0'}
|
|
438
|
+
peerDependencies:
|
|
439
|
+
'@babel/core': ^7.0.0-0
|
|
440
|
+
dependencies:
|
|
441
|
+
'@babel/core': 7.19.6
|
|
442
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
443
|
+
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.6
|
|
444
|
+
dev: false
|
|
445
|
+
|
|
446
|
+
/@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.6:
|
|
447
|
+
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
|
|
448
|
+
engines: {node: '>=6.9.0'}
|
|
449
|
+
peerDependencies:
|
|
450
|
+
'@babel/core': ^7.0.0-0
|
|
451
|
+
dependencies:
|
|
452
|
+
'@babel/core': 7.19.6
|
|
453
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
454
|
+
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.6
|
|
455
|
+
dev: false
|
|
456
|
+
|
|
457
|
+
/@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.6:
|
|
458
|
+
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
|
|
459
|
+
engines: {node: '>=6.9.0'}
|
|
460
|
+
peerDependencies:
|
|
461
|
+
'@babel/core': ^7.0.0-0
|
|
462
|
+
dependencies:
|
|
463
|
+
'@babel/core': 7.19.6
|
|
464
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
465
|
+
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.6
|
|
466
|
+
dev: false
|
|
467
|
+
|
|
468
|
+
/@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.6:
|
|
469
|
+
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
|
|
470
|
+
engines: {node: '>=6.9.0'}
|
|
471
|
+
peerDependencies:
|
|
472
|
+
'@babel/core': ^7.0.0-0
|
|
473
|
+
dependencies:
|
|
474
|
+
'@babel/core': 7.19.6
|
|
475
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
476
|
+
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.6
|
|
477
|
+
dev: false
|
|
478
|
+
|
|
479
|
+
/@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.6:
|
|
480
|
+
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
|
|
481
|
+
engines: {node: '>=6.9.0'}
|
|
482
|
+
peerDependencies:
|
|
483
|
+
'@babel/core': ^7.0.0-0
|
|
484
|
+
dependencies:
|
|
485
|
+
'@babel/core': 7.19.6
|
|
486
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
487
|
+
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.6
|
|
488
|
+
dev: false
|
|
489
|
+
|
|
490
|
+
/@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.6:
|
|
491
|
+
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
|
|
492
|
+
engines: {node: '>=6.9.0'}
|
|
493
|
+
peerDependencies:
|
|
494
|
+
'@babel/core': ^7.0.0-0
|
|
495
|
+
dependencies:
|
|
496
|
+
'@babel/core': 7.19.6
|
|
497
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
498
|
+
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.6
|
|
499
|
+
dev: false
|
|
500
|
+
|
|
501
|
+
/@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.6:
|
|
502
|
+
resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==}
|
|
503
|
+
engines: {node: '>=6.9.0'}
|
|
504
|
+
peerDependencies:
|
|
505
|
+
'@babel/core': ^7.0.0-0
|
|
506
|
+
dependencies:
|
|
507
|
+
'@babel/compat-data': 7.20.0
|
|
508
|
+
'@babel/core': 7.19.6
|
|
509
|
+
'@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6
|
|
510
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
511
|
+
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.6
|
|
512
|
+
'@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.6
|
|
513
|
+
dev: false
|
|
514
|
+
|
|
515
|
+
/@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.6:
|
|
516
|
+
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
|
|
517
|
+
engines: {node: '>=6.9.0'}
|
|
518
|
+
peerDependencies:
|
|
519
|
+
'@babel/core': ^7.0.0-0
|
|
520
|
+
dependencies:
|
|
521
|
+
'@babel/core': 7.19.6
|
|
522
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
523
|
+
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.6
|
|
524
|
+
dev: false
|
|
525
|
+
|
|
526
|
+
/@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.6:
|
|
527
|
+
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
|
|
528
|
+
engines: {node: '>=6.9.0'}
|
|
529
|
+
peerDependencies:
|
|
530
|
+
'@babel/core': ^7.0.0-0
|
|
531
|
+
dependencies:
|
|
532
|
+
'@babel/core': 7.19.6
|
|
533
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
534
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
|
|
535
|
+
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.6
|
|
536
|
+
dev: false
|
|
537
|
+
|
|
538
|
+
/@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.6:
|
|
539
|
+
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
|
|
540
|
+
engines: {node: '>=6.9.0'}
|
|
541
|
+
peerDependencies:
|
|
542
|
+
'@babel/core': ^7.0.0-0
|
|
543
|
+
dependencies:
|
|
544
|
+
'@babel/core': 7.19.6
|
|
545
|
+
'@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6
|
|
546
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
547
|
+
transitivePeerDependencies:
|
|
548
|
+
- supports-color
|
|
549
|
+
dev: false
|
|
550
|
+
|
|
551
|
+
/@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.6:
|
|
552
|
+
resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
|
|
553
|
+
engines: {node: '>=6.9.0'}
|
|
554
|
+
peerDependencies:
|
|
555
|
+
'@babel/core': ^7.0.0-0
|
|
556
|
+
dependencies:
|
|
557
|
+
'@babel/core': 7.19.6
|
|
558
|
+
'@babel/helper-annotate-as-pure': 7.18.6
|
|
559
|
+
'@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6
|
|
560
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
561
|
+
'@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.6
|
|
562
|
+
transitivePeerDependencies:
|
|
563
|
+
- supports-color
|
|
564
|
+
dev: false
|
|
565
|
+
|
|
566
|
+
/@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.6:
|
|
567
|
+
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
|
|
568
|
+
engines: {node: '>=4'}
|
|
569
|
+
peerDependencies:
|
|
570
|
+
'@babel/core': ^7.0.0-0
|
|
571
|
+
dependencies:
|
|
572
|
+
'@babel/core': 7.19.6
|
|
573
|
+
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.6
|
|
574
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
575
|
+
dev: false
|
|
576
|
+
|
|
577
|
+
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.6:
|
|
578
|
+
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
|
|
579
|
+
peerDependencies:
|
|
580
|
+
'@babel/core': ^7.0.0-0
|
|
581
|
+
dependencies:
|
|
582
|
+
'@babel/core': 7.19.6
|
|
583
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
584
|
+
dev: false
|
|
585
|
+
|
|
586
|
+
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.6:
|
|
587
|
+
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
|
|
588
|
+
peerDependencies:
|
|
589
|
+
'@babel/core': ^7.0.0-0
|
|
590
|
+
dependencies:
|
|
591
|
+
'@babel/core': 7.19.6
|
|
592
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
593
|
+
dev: false
|
|
594
|
+
|
|
595
|
+
/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.6:
|
|
596
|
+
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
|
|
597
|
+
engines: {node: '>=6.9.0'}
|
|
598
|
+
peerDependencies:
|
|
599
|
+
'@babel/core': ^7.0.0-0
|
|
600
|
+
dependencies:
|
|
601
|
+
'@babel/core': 7.19.6
|
|
602
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
603
|
+
dev: false
|
|
604
|
+
|
|
605
|
+
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.6:
|
|
606
|
+
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
|
|
607
|
+
peerDependencies:
|
|
608
|
+
'@babel/core': ^7.0.0-0
|
|
609
|
+
dependencies:
|
|
610
|
+
'@babel/core': 7.19.6
|
|
611
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
612
|
+
dev: false
|
|
613
|
+
|
|
614
|
+
/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.6:
|
|
615
|
+
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
|
|
616
|
+
peerDependencies:
|
|
617
|
+
'@babel/core': ^7.0.0-0
|
|
618
|
+
dependencies:
|
|
619
|
+
'@babel/core': 7.19.6
|
|
620
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
621
|
+
dev: false
|
|
622
|
+
|
|
623
|
+
/@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.19.6:
|
|
624
|
+
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
|
|
625
|
+
engines: {node: '>=6.9.0'}
|
|
626
|
+
peerDependencies:
|
|
627
|
+
'@babel/core': ^7.0.0-0
|
|
628
|
+
dependencies:
|
|
629
|
+
'@babel/core': 7.19.6
|
|
630
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
631
|
+
dev: false
|
|
632
|
+
|
|
633
|
+
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.6:
|
|
634
|
+
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
|
|
635
|
+
peerDependencies:
|
|
636
|
+
'@babel/core': ^7.0.0-0
|
|
637
|
+
dependencies:
|
|
638
|
+
'@babel/core': 7.19.6
|
|
639
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
640
|
+
dev: false
|
|
641
|
+
|
|
642
|
+
/@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.6:
|
|
643
|
+
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
|
|
644
|
+
engines: {node: '>=6.9.0'}
|
|
645
|
+
peerDependencies:
|
|
646
|
+
'@babel/core': ^7.0.0-0
|
|
647
|
+
dependencies:
|
|
648
|
+
'@babel/core': 7.19.6
|
|
649
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
650
|
+
dev: false
|
|
651
|
+
|
|
652
|
+
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.6:
|
|
653
|
+
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
|
|
654
|
+
peerDependencies:
|
|
655
|
+
'@babel/core': ^7.0.0-0
|
|
656
|
+
dependencies:
|
|
657
|
+
'@babel/core': 7.19.6
|
|
658
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
659
|
+
dev: false
|
|
660
|
+
|
|
661
|
+
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.6:
|
|
662
|
+
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
|
|
663
|
+
peerDependencies:
|
|
664
|
+
'@babel/core': ^7.0.0-0
|
|
665
|
+
dependencies:
|
|
666
|
+
'@babel/core': 7.19.6
|
|
667
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
668
|
+
dev: false
|
|
669
|
+
|
|
670
|
+
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.6:
|
|
671
|
+
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
|
|
672
|
+
peerDependencies:
|
|
673
|
+
'@babel/core': ^7.0.0-0
|
|
674
|
+
dependencies:
|
|
675
|
+
'@babel/core': 7.19.6
|
|
676
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
677
|
+
dev: false
|
|
678
|
+
|
|
679
|
+
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.6:
|
|
680
|
+
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
|
|
681
|
+
peerDependencies:
|
|
682
|
+
'@babel/core': ^7.0.0-0
|
|
683
|
+
dependencies:
|
|
684
|
+
'@babel/core': 7.19.6
|
|
685
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
686
|
+
dev: false
|
|
687
|
+
|
|
688
|
+
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.6:
|
|
689
|
+
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
|
|
690
|
+
peerDependencies:
|
|
691
|
+
'@babel/core': ^7.0.0-0
|
|
692
|
+
dependencies:
|
|
693
|
+
'@babel/core': 7.19.6
|
|
694
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
695
|
+
dev: false
|
|
696
|
+
|
|
697
|
+
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.6:
|
|
698
|
+
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
|
|
699
|
+
peerDependencies:
|
|
700
|
+
'@babel/core': ^7.0.0-0
|
|
701
|
+
dependencies:
|
|
702
|
+
'@babel/core': 7.19.6
|
|
703
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
704
|
+
dev: false
|
|
705
|
+
|
|
706
|
+
/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.6:
|
|
707
|
+
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
|
|
708
|
+
engines: {node: '>=6.9.0'}
|
|
709
|
+
peerDependencies:
|
|
710
|
+
'@babel/core': ^7.0.0-0
|
|
711
|
+
dependencies:
|
|
712
|
+
'@babel/core': 7.19.6
|
|
713
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
714
|
+
dev: false
|
|
715
|
+
|
|
716
|
+
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.6:
|
|
717
|
+
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
|
|
718
|
+
engines: {node: '>=6.9.0'}
|
|
719
|
+
peerDependencies:
|
|
720
|
+
'@babel/core': ^7.0.0-0
|
|
721
|
+
dependencies:
|
|
722
|
+
'@babel/core': 7.19.6
|
|
723
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
724
|
+
dev: false
|
|
725
|
+
|
|
726
|
+
/@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.6:
|
|
727
|
+
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
|
|
728
|
+
engines: {node: '>=6.9.0'}
|
|
729
|
+
peerDependencies:
|
|
730
|
+
'@babel/core': ^7.0.0-0
|
|
731
|
+
dependencies:
|
|
732
|
+
'@babel/core': 7.19.6
|
|
733
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
734
|
+
dev: false
|
|
735
|
+
|
|
736
|
+
/@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.6:
|
|
737
|
+
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
|
|
738
|
+
engines: {node: '>=6.9.0'}
|
|
739
|
+
peerDependencies:
|
|
740
|
+
'@babel/core': ^7.0.0-0
|
|
741
|
+
dependencies:
|
|
742
|
+
'@babel/core': 7.19.6
|
|
743
|
+
'@babel/helper-module-imports': 7.18.6
|
|
744
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
745
|
+
'@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.6
|
|
746
|
+
transitivePeerDependencies:
|
|
747
|
+
- supports-color
|
|
748
|
+
dev: false
|
|
749
|
+
|
|
750
|
+
/@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.6:
|
|
751
|
+
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
|
|
752
|
+
engines: {node: '>=6.9.0'}
|
|
753
|
+
peerDependencies:
|
|
754
|
+
'@babel/core': ^7.0.0-0
|
|
755
|
+
dependencies:
|
|
756
|
+
'@babel/core': 7.19.6
|
|
757
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
758
|
+
dev: false
|
|
759
|
+
|
|
760
|
+
/@babel/plugin-transform-block-scoping/7.20.0_@babel+core@7.19.6:
|
|
761
|
+
resolution: {integrity: sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w==}
|
|
762
|
+
engines: {node: '>=6.9.0'}
|
|
763
|
+
peerDependencies:
|
|
764
|
+
'@babel/core': ^7.0.0-0
|
|
765
|
+
dependencies:
|
|
766
|
+
'@babel/core': 7.19.6
|
|
767
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
768
|
+
dev: false
|
|
769
|
+
|
|
770
|
+
/@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.6:
|
|
771
|
+
resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==}
|
|
772
|
+
engines: {node: '>=6.9.0'}
|
|
773
|
+
peerDependencies:
|
|
774
|
+
'@babel/core': ^7.0.0-0
|
|
775
|
+
dependencies:
|
|
776
|
+
'@babel/core': 7.19.6
|
|
777
|
+
'@babel/helper-annotate-as-pure': 7.18.6
|
|
778
|
+
'@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6
|
|
779
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
780
|
+
'@babel/helper-function-name': 7.19.0
|
|
781
|
+
'@babel/helper-optimise-call-expression': 7.18.6
|
|
782
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
783
|
+
'@babel/helper-replace-supers': 7.19.1
|
|
784
|
+
'@babel/helper-split-export-declaration': 7.18.6
|
|
785
|
+
globals: 11.12.0
|
|
786
|
+
transitivePeerDependencies:
|
|
787
|
+
- supports-color
|
|
788
|
+
dev: false
|
|
789
|
+
|
|
790
|
+
/@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.6:
|
|
791
|
+
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
|
|
792
|
+
engines: {node: '>=6.9.0'}
|
|
793
|
+
peerDependencies:
|
|
794
|
+
'@babel/core': ^7.0.0-0
|
|
795
|
+
dependencies:
|
|
796
|
+
'@babel/core': 7.19.6
|
|
797
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
798
|
+
dev: false
|
|
799
|
+
|
|
800
|
+
/@babel/plugin-transform-destructuring/7.20.0_@babel+core@7.19.6:
|
|
801
|
+
resolution: {integrity: sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA==}
|
|
802
|
+
engines: {node: '>=6.9.0'}
|
|
803
|
+
peerDependencies:
|
|
804
|
+
'@babel/core': ^7.0.0-0
|
|
805
|
+
dependencies:
|
|
806
|
+
'@babel/core': 7.19.6
|
|
807
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
808
|
+
dev: false
|
|
809
|
+
|
|
810
|
+
/@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.6:
|
|
811
|
+
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
|
|
812
|
+
engines: {node: '>=6.9.0'}
|
|
813
|
+
peerDependencies:
|
|
814
|
+
'@babel/core': ^7.0.0-0
|
|
815
|
+
dependencies:
|
|
816
|
+
'@babel/core': 7.19.6
|
|
817
|
+
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.6
|
|
818
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
819
|
+
dev: false
|
|
820
|
+
|
|
821
|
+
/@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.6:
|
|
822
|
+
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
|
|
823
|
+
engines: {node: '>=6.9.0'}
|
|
824
|
+
peerDependencies:
|
|
825
|
+
'@babel/core': ^7.0.0-0
|
|
826
|
+
dependencies:
|
|
827
|
+
'@babel/core': 7.19.6
|
|
828
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
829
|
+
dev: false
|
|
830
|
+
|
|
831
|
+
/@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.6:
|
|
832
|
+
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
|
|
833
|
+
engines: {node: '>=6.9.0'}
|
|
834
|
+
peerDependencies:
|
|
835
|
+
'@babel/core': ^7.0.0-0
|
|
836
|
+
dependencies:
|
|
837
|
+
'@babel/core': 7.19.6
|
|
838
|
+
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
|
|
839
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
840
|
+
dev: false
|
|
841
|
+
|
|
842
|
+
/@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.6:
|
|
843
|
+
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
|
|
844
|
+
engines: {node: '>=6.9.0'}
|
|
845
|
+
peerDependencies:
|
|
846
|
+
'@babel/core': ^7.0.0-0
|
|
847
|
+
dependencies:
|
|
848
|
+
'@babel/core': 7.19.6
|
|
849
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
850
|
+
dev: false
|
|
851
|
+
|
|
852
|
+
/@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.6:
|
|
853
|
+
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
|
|
854
|
+
engines: {node: '>=6.9.0'}
|
|
855
|
+
peerDependencies:
|
|
856
|
+
'@babel/core': ^7.0.0-0
|
|
857
|
+
dependencies:
|
|
858
|
+
'@babel/core': 7.19.6
|
|
859
|
+
'@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6
|
|
860
|
+
'@babel/helper-function-name': 7.19.0
|
|
861
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
862
|
+
dev: false
|
|
863
|
+
|
|
864
|
+
/@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.6:
|
|
865
|
+
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
|
|
866
|
+
engines: {node: '>=6.9.0'}
|
|
867
|
+
peerDependencies:
|
|
868
|
+
'@babel/core': ^7.0.0-0
|
|
869
|
+
dependencies:
|
|
870
|
+
'@babel/core': 7.19.6
|
|
871
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
872
|
+
dev: false
|
|
873
|
+
|
|
874
|
+
/@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.6:
|
|
875
|
+
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
|
|
876
|
+
engines: {node: '>=6.9.0'}
|
|
877
|
+
peerDependencies:
|
|
878
|
+
'@babel/core': ^7.0.0-0
|
|
879
|
+
dependencies:
|
|
880
|
+
'@babel/core': 7.19.6
|
|
881
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
882
|
+
dev: false
|
|
883
|
+
|
|
884
|
+
/@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.19.6:
|
|
885
|
+
resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==}
|
|
886
|
+
engines: {node: '>=6.9.0'}
|
|
887
|
+
peerDependencies:
|
|
888
|
+
'@babel/core': ^7.0.0-0
|
|
889
|
+
dependencies:
|
|
890
|
+
'@babel/core': 7.19.6
|
|
891
|
+
'@babel/helper-module-transforms': 7.19.6
|
|
892
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
893
|
+
transitivePeerDependencies:
|
|
894
|
+
- supports-color
|
|
895
|
+
dev: false
|
|
896
|
+
|
|
897
|
+
/@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.19.6:
|
|
898
|
+
resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==}
|
|
899
|
+
engines: {node: '>=6.9.0'}
|
|
900
|
+
peerDependencies:
|
|
901
|
+
'@babel/core': ^7.0.0-0
|
|
902
|
+
dependencies:
|
|
903
|
+
'@babel/core': 7.19.6
|
|
904
|
+
'@babel/helper-module-transforms': 7.19.6
|
|
905
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
906
|
+
'@babel/helper-simple-access': 7.19.4
|
|
907
|
+
transitivePeerDependencies:
|
|
908
|
+
- supports-color
|
|
909
|
+
dev: false
|
|
910
|
+
|
|
911
|
+
/@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.19.6:
|
|
912
|
+
resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==}
|
|
913
|
+
engines: {node: '>=6.9.0'}
|
|
914
|
+
peerDependencies:
|
|
915
|
+
'@babel/core': ^7.0.0-0
|
|
916
|
+
dependencies:
|
|
917
|
+
'@babel/core': 7.19.6
|
|
918
|
+
'@babel/helper-hoist-variables': 7.18.6
|
|
919
|
+
'@babel/helper-module-transforms': 7.19.6
|
|
920
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
921
|
+
'@babel/helper-validator-identifier': 7.19.1
|
|
922
|
+
transitivePeerDependencies:
|
|
923
|
+
- supports-color
|
|
924
|
+
dev: false
|
|
925
|
+
|
|
926
|
+
/@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.6:
|
|
927
|
+
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
|
|
928
|
+
engines: {node: '>=6.9.0'}
|
|
929
|
+
peerDependencies:
|
|
930
|
+
'@babel/core': ^7.0.0-0
|
|
931
|
+
dependencies:
|
|
932
|
+
'@babel/core': 7.19.6
|
|
933
|
+
'@babel/helper-module-transforms': 7.19.6
|
|
934
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
935
|
+
transitivePeerDependencies:
|
|
936
|
+
- supports-color
|
|
937
|
+
dev: false
|
|
938
|
+
|
|
939
|
+
/@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.6:
|
|
940
|
+
resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
|
|
941
|
+
engines: {node: '>=6.9.0'}
|
|
942
|
+
peerDependencies:
|
|
943
|
+
'@babel/core': ^7.0.0
|
|
944
|
+
dependencies:
|
|
945
|
+
'@babel/core': 7.19.6
|
|
946
|
+
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.6
|
|
947
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
948
|
+
dev: false
|
|
949
|
+
|
|
950
|
+
/@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.6:
|
|
951
|
+
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
|
|
952
|
+
engines: {node: '>=6.9.0'}
|
|
953
|
+
peerDependencies:
|
|
954
|
+
'@babel/core': ^7.0.0-0
|
|
955
|
+
dependencies:
|
|
956
|
+
'@babel/core': 7.19.6
|
|
957
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
958
|
+
dev: false
|
|
959
|
+
|
|
960
|
+
/@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.6:
|
|
961
|
+
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
|
|
962
|
+
engines: {node: '>=6.9.0'}
|
|
963
|
+
peerDependencies:
|
|
964
|
+
'@babel/core': ^7.0.0-0
|
|
965
|
+
dependencies:
|
|
966
|
+
'@babel/core': 7.19.6
|
|
967
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
968
|
+
'@babel/helper-replace-supers': 7.19.1
|
|
969
|
+
transitivePeerDependencies:
|
|
970
|
+
- supports-color
|
|
971
|
+
dev: false
|
|
972
|
+
|
|
973
|
+
/@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.6:
|
|
974
|
+
resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
|
|
975
|
+
engines: {node: '>=6.9.0'}
|
|
976
|
+
peerDependencies:
|
|
977
|
+
'@babel/core': ^7.0.0-0
|
|
978
|
+
dependencies:
|
|
979
|
+
'@babel/core': 7.19.6
|
|
980
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
981
|
+
dev: false
|
|
982
|
+
|
|
983
|
+
/@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.6:
|
|
984
|
+
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
|
|
985
|
+
engines: {node: '>=6.9.0'}
|
|
986
|
+
peerDependencies:
|
|
987
|
+
'@babel/core': ^7.0.0-0
|
|
988
|
+
dependencies:
|
|
989
|
+
'@babel/core': 7.19.6
|
|
990
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
991
|
+
dev: false
|
|
992
|
+
|
|
993
|
+
/@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.6:
|
|
994
|
+
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
|
|
995
|
+
engines: {node: '>=6.9.0'}
|
|
996
|
+
peerDependencies:
|
|
997
|
+
'@babel/core': ^7.0.0-0
|
|
998
|
+
dependencies:
|
|
999
|
+
'@babel/core': 7.19.6
|
|
1000
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1001
|
+
dev: false
|
|
1002
|
+
|
|
1003
|
+
/@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.6:
|
|
1004
|
+
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
|
|
1005
|
+
engines: {node: '>=6.9.0'}
|
|
1006
|
+
peerDependencies:
|
|
1007
|
+
'@babel/core': ^7.0.0-0
|
|
1008
|
+
dependencies:
|
|
1009
|
+
'@babel/core': 7.19.6
|
|
1010
|
+
'@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.6
|
|
1011
|
+
dev: false
|
|
1012
|
+
|
|
1013
|
+
/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.6:
|
|
1014
|
+
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
|
|
1015
|
+
engines: {node: '>=6.9.0'}
|
|
1016
|
+
peerDependencies:
|
|
1017
|
+
'@babel/core': ^7.0.0-0
|
|
1018
|
+
dependencies:
|
|
1019
|
+
'@babel/core': 7.19.6
|
|
1020
|
+
'@babel/helper-annotate-as-pure': 7.18.6
|
|
1021
|
+
'@babel/helper-module-imports': 7.18.6
|
|
1022
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1023
|
+
'@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.6
|
|
1024
|
+
'@babel/types': 7.20.0
|
|
1025
|
+
dev: false
|
|
1026
|
+
|
|
1027
|
+
/@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.6:
|
|
1028
|
+
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
|
|
1029
|
+
engines: {node: '>=6.9.0'}
|
|
1030
|
+
peerDependencies:
|
|
1031
|
+
'@babel/core': ^7.0.0-0
|
|
1032
|
+
dependencies:
|
|
1033
|
+
'@babel/core': 7.19.6
|
|
1034
|
+
'@babel/helper-annotate-as-pure': 7.18.6
|
|
1035
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1036
|
+
dev: false
|
|
1037
|
+
|
|
1038
|
+
/@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.6:
|
|
1039
|
+
resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
|
|
1040
|
+
engines: {node: '>=6.9.0'}
|
|
1041
|
+
peerDependencies:
|
|
1042
|
+
'@babel/core': ^7.0.0-0
|
|
1043
|
+
dependencies:
|
|
1044
|
+
'@babel/core': 7.19.6
|
|
1045
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1046
|
+
regenerator-transform: 0.15.0
|
|
1047
|
+
dev: false
|
|
1048
|
+
|
|
1049
|
+
/@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.6:
|
|
1050
|
+
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
|
|
1051
|
+
engines: {node: '>=6.9.0'}
|
|
1052
|
+
peerDependencies:
|
|
1053
|
+
'@babel/core': ^7.0.0-0
|
|
1054
|
+
dependencies:
|
|
1055
|
+
'@babel/core': 7.19.6
|
|
1056
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1057
|
+
dev: false
|
|
1058
|
+
|
|
1059
|
+
/@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.6:
|
|
1060
|
+
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
|
|
1061
|
+
engines: {node: '>=6.9.0'}
|
|
1062
|
+
peerDependencies:
|
|
1063
|
+
'@babel/core': ^7.0.0-0
|
|
1064
|
+
dependencies:
|
|
1065
|
+
'@babel/core': 7.19.6
|
|
1066
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1067
|
+
dev: false
|
|
1068
|
+
|
|
1069
|
+
/@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.6:
|
|
1070
|
+
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
|
|
1071
|
+
engines: {node: '>=6.9.0'}
|
|
1072
|
+
peerDependencies:
|
|
1073
|
+
'@babel/core': ^7.0.0-0
|
|
1074
|
+
dependencies:
|
|
1075
|
+
'@babel/core': 7.19.6
|
|
1076
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1077
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
|
|
1078
|
+
dev: false
|
|
1079
|
+
|
|
1080
|
+
/@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.6:
|
|
1081
|
+
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
|
|
1082
|
+
engines: {node: '>=6.9.0'}
|
|
1083
|
+
peerDependencies:
|
|
1084
|
+
'@babel/core': ^7.0.0-0
|
|
1085
|
+
dependencies:
|
|
1086
|
+
'@babel/core': 7.19.6
|
|
1087
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1088
|
+
dev: false
|
|
1089
|
+
|
|
1090
|
+
/@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.6:
|
|
1091
|
+
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
|
|
1092
|
+
engines: {node: '>=6.9.0'}
|
|
1093
|
+
peerDependencies:
|
|
1094
|
+
'@babel/core': ^7.0.0-0
|
|
1095
|
+
dependencies:
|
|
1096
|
+
'@babel/core': 7.19.6
|
|
1097
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1098
|
+
dev: false
|
|
1099
|
+
|
|
1100
|
+
/@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.6:
|
|
1101
|
+
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
|
|
1102
|
+
engines: {node: '>=6.9.0'}
|
|
1103
|
+
peerDependencies:
|
|
1104
|
+
'@babel/core': ^7.0.0-0
|
|
1105
|
+
dependencies:
|
|
1106
|
+
'@babel/core': 7.19.6
|
|
1107
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1108
|
+
dev: false
|
|
1109
|
+
|
|
1110
|
+
/@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.6:
|
|
1111
|
+
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
|
|
1112
|
+
engines: {node: '>=6.9.0'}
|
|
1113
|
+
peerDependencies:
|
|
1114
|
+
'@babel/core': ^7.0.0-0
|
|
1115
|
+
dependencies:
|
|
1116
|
+
'@babel/core': 7.19.6
|
|
1117
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1118
|
+
dev: false
|
|
1119
|
+
|
|
1120
|
+
/@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.6:
|
|
1121
|
+
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
|
|
1122
|
+
engines: {node: '>=6.9.0'}
|
|
1123
|
+
peerDependencies:
|
|
1124
|
+
'@babel/core': ^7.0.0-0
|
|
1125
|
+
dependencies:
|
|
1126
|
+
'@babel/core': 7.19.6
|
|
1127
|
+
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.6
|
|
1128
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1129
|
+
dev: false
|
|
1130
|
+
|
|
1131
|
+
/@babel/preset-env/7.19.4_@babel+core@7.19.6:
|
|
1132
|
+
resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==}
|
|
1133
|
+
engines: {node: '>=6.9.0'}
|
|
1134
|
+
peerDependencies:
|
|
1135
|
+
'@babel/core': ^7.0.0-0
|
|
1136
|
+
dependencies:
|
|
1137
|
+
'@babel/compat-data': 7.20.0
|
|
1138
|
+
'@babel/core': 7.19.6
|
|
1139
|
+
'@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6
|
|
1140
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1141
|
+
'@babel/helper-validator-option': 7.18.6
|
|
1142
|
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.6
|
|
1143
|
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.6
|
|
1144
|
+
'@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.19.6
|
|
1145
|
+
'@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.6
|
|
1146
|
+
'@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.6
|
|
1147
|
+
'@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.6
|
|
1148
|
+
'@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.6
|
|
1149
|
+
'@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.6
|
|
1150
|
+
'@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.6
|
|
1151
|
+
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.6
|
|
1152
|
+
'@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.6
|
|
1153
|
+
'@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.6
|
|
1154
|
+
'@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.6
|
|
1155
|
+
'@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.6
|
|
1156
|
+
'@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.6
|
|
1157
|
+
'@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.6
|
|
1158
|
+
'@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.6
|
|
1159
|
+
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.6
|
|
1160
|
+
'@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.6
|
|
1161
|
+
'@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.6
|
|
1162
|
+
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.6
|
|
1163
|
+
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.6
|
|
1164
|
+
'@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.19.6
|
|
1165
|
+
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.6
|
|
1166
|
+
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.6
|
|
1167
|
+
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.6
|
|
1168
|
+
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.6
|
|
1169
|
+
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.6
|
|
1170
|
+
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.6
|
|
1171
|
+
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.6
|
|
1172
|
+
'@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.6
|
|
1173
|
+
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.6
|
|
1174
|
+
'@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.6
|
|
1175
|
+
'@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.6
|
|
1176
|
+
'@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.6
|
|
1177
|
+
'@babel/plugin-transform-block-scoping': 7.20.0_@babel+core@7.19.6
|
|
1178
|
+
'@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.6
|
|
1179
|
+
'@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.6
|
|
1180
|
+
'@babel/plugin-transform-destructuring': 7.20.0_@babel+core@7.19.6
|
|
1181
|
+
'@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.6
|
|
1182
|
+
'@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.6
|
|
1183
|
+
'@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.6
|
|
1184
|
+
'@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.6
|
|
1185
|
+
'@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.6
|
|
1186
|
+
'@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.6
|
|
1187
|
+
'@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.6
|
|
1188
|
+
'@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.19.6
|
|
1189
|
+
'@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.19.6
|
|
1190
|
+
'@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.19.6
|
|
1191
|
+
'@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.6
|
|
1192
|
+
'@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.19.6
|
|
1193
|
+
'@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.6
|
|
1194
|
+
'@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.6
|
|
1195
|
+
'@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.6
|
|
1196
|
+
'@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.6
|
|
1197
|
+
'@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.6
|
|
1198
|
+
'@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.6
|
|
1199
|
+
'@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.6
|
|
1200
|
+
'@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.6
|
|
1201
|
+
'@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.6
|
|
1202
|
+
'@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.6
|
|
1203
|
+
'@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.6
|
|
1204
|
+
'@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.6
|
|
1205
|
+
'@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.6
|
|
1206
|
+
'@babel/preset-modules': 0.1.5_@babel+core@7.19.6
|
|
1207
|
+
'@babel/types': 7.20.0
|
|
1208
|
+
babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.6
|
|
1209
|
+
babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.6
|
|
1210
|
+
babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.6
|
|
1211
|
+
core-js-compat: 3.26.0
|
|
1212
|
+
semver: 6.3.0
|
|
1213
|
+
transitivePeerDependencies:
|
|
1214
|
+
- supports-color
|
|
1215
|
+
dev: false
|
|
1216
|
+
|
|
1217
|
+
/@babel/preset-modules/0.1.5_@babel+core@7.19.6:
|
|
1218
|
+
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
|
|
1219
|
+
peerDependencies:
|
|
1220
|
+
'@babel/core': ^7.0.0-0
|
|
1221
|
+
dependencies:
|
|
1222
|
+
'@babel/core': 7.19.6
|
|
1223
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1224
|
+
'@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.6
|
|
1225
|
+
'@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.6
|
|
1226
|
+
'@babel/types': 7.20.0
|
|
1227
|
+
esutils: 2.0.3
|
|
1228
|
+
dev: false
|
|
1229
|
+
|
|
1230
|
+
/@babel/preset-react/7.18.6_@babel+core@7.19.6:
|
|
1231
|
+
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
|
|
1232
|
+
engines: {node: '>=6.9.0'}
|
|
1233
|
+
peerDependencies:
|
|
1234
|
+
'@babel/core': ^7.0.0-0
|
|
1235
|
+
dependencies:
|
|
1236
|
+
'@babel/core': 7.19.6
|
|
1237
|
+
'@babel/helper-plugin-utils': 7.19.0
|
|
1238
|
+
'@babel/helper-validator-option': 7.18.6
|
|
1239
|
+
'@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.6
|
|
1240
|
+
'@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.6
|
|
1241
|
+
'@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.19.6
|
|
1242
|
+
'@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.19.6
|
|
1243
|
+
dev: false
|
|
1244
|
+
|
|
1245
|
+
/@babel/runtime/7.20.0:
|
|
1246
|
+
resolution: {integrity: sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q==}
|
|
1247
|
+
engines: {node: '>=6.9.0'}
|
|
1248
|
+
dependencies:
|
|
1249
|
+
regenerator-runtime: 0.13.10
|
|
1250
|
+
dev: false
|
|
1251
|
+
|
|
1252
|
+
/@babel/template/7.18.10:
|
|
1253
|
+
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
|
|
1254
|
+
engines: {node: '>=6.9.0'}
|
|
1255
|
+
dependencies:
|
|
1256
|
+
'@babel/code-frame': 7.18.6
|
|
1257
|
+
'@babel/parser': 7.20.0
|
|
1258
|
+
'@babel/types': 7.20.0
|
|
1259
|
+
dev: false
|
|
1260
|
+
|
|
1261
|
+
/@babel/traverse/7.20.0:
|
|
1262
|
+
resolution: {integrity: sha512-5+cAXQNARgjRUK0JWu2UBwja4JLSO/rBMPJzpsKb+oBF5xlUuCfljQepS4XypBQoiigL0VQjTZy6WiONtUdScQ==}
|
|
1263
|
+
engines: {node: '>=6.9.0'}
|
|
1264
|
+
dependencies:
|
|
1265
|
+
'@babel/code-frame': 7.18.6
|
|
1266
|
+
'@babel/generator': 7.20.0
|
|
1267
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
1268
|
+
'@babel/helper-function-name': 7.19.0
|
|
1269
|
+
'@babel/helper-hoist-variables': 7.18.6
|
|
1270
|
+
'@babel/helper-split-export-declaration': 7.18.6
|
|
1271
|
+
'@babel/parser': 7.20.0
|
|
1272
|
+
'@babel/types': 7.20.0
|
|
1273
|
+
debug: 4.3.4
|
|
1274
|
+
globals: 11.12.0
|
|
1275
|
+
transitivePeerDependencies:
|
|
1276
|
+
- supports-color
|
|
1277
|
+
dev: false
|
|
1278
|
+
|
|
1279
|
+
/@babel/types/7.20.0:
|
|
1280
|
+
resolution: {integrity: sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==}
|
|
1281
|
+
engines: {node: '>=6.9.0'}
|
|
1282
|
+
dependencies:
|
|
1283
|
+
'@babel/helper-string-parser': 7.19.4
|
|
1284
|
+
'@babel/helper-validator-identifier': 7.19.1
|
|
1285
|
+
to-fast-properties: 2.0.0
|
|
1286
|
+
dev: false
|
|
1287
|
+
|
|
1288
|
+
/@gar/promisify/1.1.3:
|
|
1289
|
+
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
|
|
1290
|
+
dev: true
|
|
1291
|
+
|
|
1292
|
+
/@jridgewell/gen-mapping/0.1.1:
|
|
1293
|
+
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
|
|
1294
|
+
engines: {node: '>=6.0.0'}
|
|
1295
|
+
dependencies:
|
|
1296
|
+
'@jridgewell/set-array': 1.1.2
|
|
1297
|
+
'@jridgewell/sourcemap-codec': 1.4.14
|
|
1298
|
+
dev: false
|
|
1299
|
+
|
|
1300
|
+
/@jridgewell/gen-mapping/0.3.2:
|
|
1301
|
+
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
|
|
1302
|
+
engines: {node: '>=6.0.0'}
|
|
1303
|
+
dependencies:
|
|
1304
|
+
'@jridgewell/set-array': 1.1.2
|
|
1305
|
+
'@jridgewell/sourcemap-codec': 1.4.14
|
|
1306
|
+
'@jridgewell/trace-mapping': 0.3.17
|
|
1307
|
+
dev: false
|
|
1308
|
+
|
|
1309
|
+
/@jridgewell/resolve-uri/3.1.0:
|
|
1310
|
+
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
|
|
1311
|
+
engines: {node: '>=6.0.0'}
|
|
1312
|
+
dev: false
|
|
1313
|
+
|
|
1314
|
+
/@jridgewell/set-array/1.1.2:
|
|
1315
|
+
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
|
|
1316
|
+
engines: {node: '>=6.0.0'}
|
|
1317
|
+
dev: false
|
|
1318
|
+
|
|
1319
|
+
/@jridgewell/source-map/0.3.2:
|
|
1320
|
+
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
|
|
1321
|
+
dependencies:
|
|
1322
|
+
'@jridgewell/gen-mapping': 0.3.2
|
|
1323
|
+
'@jridgewell/trace-mapping': 0.3.17
|
|
1324
|
+
dev: false
|
|
1325
|
+
|
|
1326
|
+
/@jridgewell/sourcemap-codec/1.4.14:
|
|
1327
|
+
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
|
1328
|
+
dev: false
|
|
1329
|
+
|
|
1330
|
+
/@jridgewell/trace-mapping/0.3.17:
|
|
1331
|
+
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
|
|
1332
|
+
dependencies:
|
|
1333
|
+
'@jridgewell/resolve-uri': 3.1.0
|
|
1334
|
+
'@jridgewell/sourcemap-codec': 1.4.14
|
|
1335
|
+
dev: false
|
|
1336
|
+
|
|
1337
|
+
/@mapbox/node-pre-gyp/1.0.10:
|
|
1338
|
+
resolution: {integrity: sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==}
|
|
1339
|
+
hasBin: true
|
|
1340
|
+
dependencies:
|
|
1341
|
+
detect-libc: 2.0.1
|
|
1342
|
+
https-proxy-agent: 5.0.1
|
|
1343
|
+
make-dir: 3.1.0
|
|
1344
|
+
node-fetch: 2.6.7
|
|
1345
|
+
nopt: 5.0.0
|
|
1346
|
+
npmlog: 5.0.1
|
|
1347
|
+
rimraf: 3.0.2
|
|
1348
|
+
semver: 7.3.8
|
|
1349
|
+
tar: 6.1.11
|
|
1350
|
+
transitivePeerDependencies:
|
|
1351
|
+
- encoding
|
|
1352
|
+
- supports-color
|
|
1353
|
+
dev: true
|
|
1354
|
+
|
|
1355
|
+
/@npmcli/fs/2.1.2:
|
|
1356
|
+
resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==}
|
|
1357
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
1358
|
+
dependencies:
|
|
1359
|
+
'@gar/promisify': 1.1.3
|
|
1360
|
+
semver: 7.3.8
|
|
1361
|
+
dev: true
|
|
1362
|
+
|
|
1363
|
+
/@npmcli/move-file/2.0.1:
|
|
1364
|
+
resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==}
|
|
1365
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
1366
|
+
dependencies:
|
|
1367
|
+
mkdirp: 1.0.4
|
|
1368
|
+
rimraf: 3.0.2
|
|
1369
|
+
dev: true
|
|
1370
|
+
|
|
1371
|
+
/@popperjs/core/2.11.6:
|
|
1372
|
+
resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==}
|
|
1373
|
+
dev: false
|
|
1374
|
+
|
|
1375
|
+
/@tootallnate/once/2.0.0:
|
|
1376
|
+
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
|
|
1377
|
+
engines: {node: '>= 10'}
|
|
1378
|
+
dev: true
|
|
1379
|
+
|
|
1380
|
+
/@types/eslint-scope/3.7.4:
|
|
1381
|
+
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
|
|
1382
|
+
dependencies:
|
|
1383
|
+
'@types/eslint': 8.4.9
|
|
1384
|
+
'@types/estree': 0.0.51
|
|
1385
|
+
dev: false
|
|
1386
|
+
|
|
1387
|
+
/@types/eslint/8.4.9:
|
|
1388
|
+
resolution: {integrity: sha512-jFCSo4wJzlHQLCpceUhUnXdrPuCNOjGFMQ8Eg6JXxlz3QaCKOb7eGi2cephQdM4XTYsNej69P9JDJ1zqNIbncQ==}
|
|
1389
|
+
dependencies:
|
|
1390
|
+
'@types/estree': 0.0.51
|
|
1391
|
+
'@types/json-schema': 7.0.11
|
|
1392
|
+
dev: false
|
|
1393
|
+
|
|
1394
|
+
/@types/estree/0.0.51:
|
|
1395
|
+
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
|
|
1396
|
+
dev: false
|
|
1397
|
+
|
|
1398
|
+
/@types/glob/7.2.0:
|
|
1399
|
+
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
|
|
1400
|
+
dependencies:
|
|
1401
|
+
'@types/minimatch': 5.1.2
|
|
1402
|
+
'@types/node': 18.11.9
|
|
1403
|
+
dev: false
|
|
1404
|
+
|
|
1405
|
+
/@types/html-minifier-terser/6.1.0:
|
|
1406
|
+
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
|
|
1407
|
+
dev: false
|
|
1408
|
+
|
|
1409
|
+
/@types/json-schema/7.0.11:
|
|
1410
|
+
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
|
|
1411
|
+
dev: false
|
|
1412
|
+
|
|
1413
|
+
/@types/minimatch/5.1.2:
|
|
1414
|
+
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
|
|
1415
|
+
dev: false
|
|
1416
|
+
|
|
1417
|
+
/@types/node/18.11.9:
|
|
1418
|
+
resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==}
|
|
1419
|
+
dev: false
|
|
1420
|
+
|
|
1421
|
+
/@webassemblyjs/ast/1.11.1:
|
|
1422
|
+
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
|
|
1423
|
+
dependencies:
|
|
1424
|
+
'@webassemblyjs/helper-numbers': 1.11.1
|
|
1425
|
+
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
|
|
1426
|
+
dev: false
|
|
1427
|
+
|
|
1428
|
+
/@webassemblyjs/floating-point-hex-parser/1.11.1:
|
|
1429
|
+
resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
|
|
1430
|
+
dev: false
|
|
1431
|
+
|
|
1432
|
+
/@webassemblyjs/helper-api-error/1.11.1:
|
|
1433
|
+
resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
|
|
1434
|
+
dev: false
|
|
1435
|
+
|
|
1436
|
+
/@webassemblyjs/helper-buffer/1.11.1:
|
|
1437
|
+
resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
|
|
1438
|
+
dev: false
|
|
1439
|
+
|
|
1440
|
+
/@webassemblyjs/helper-numbers/1.11.1:
|
|
1441
|
+
resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
|
|
1442
|
+
dependencies:
|
|
1443
|
+
'@webassemblyjs/floating-point-hex-parser': 1.11.1
|
|
1444
|
+
'@webassemblyjs/helper-api-error': 1.11.1
|
|
1445
|
+
'@xtuc/long': 4.2.2
|
|
1446
|
+
dev: false
|
|
1447
|
+
|
|
1448
|
+
/@webassemblyjs/helper-wasm-bytecode/1.11.1:
|
|
1449
|
+
resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
|
|
1450
|
+
dev: false
|
|
1451
|
+
|
|
1452
|
+
/@webassemblyjs/helper-wasm-section/1.11.1:
|
|
1453
|
+
resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
|
|
1454
|
+
dependencies:
|
|
1455
|
+
'@webassemblyjs/ast': 1.11.1
|
|
1456
|
+
'@webassemblyjs/helper-buffer': 1.11.1
|
|
1457
|
+
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
|
|
1458
|
+
'@webassemblyjs/wasm-gen': 1.11.1
|
|
1459
|
+
dev: false
|
|
1460
|
+
|
|
1461
|
+
/@webassemblyjs/ieee754/1.11.1:
|
|
1462
|
+
resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
|
|
1463
|
+
dependencies:
|
|
1464
|
+
'@xtuc/ieee754': 1.2.0
|
|
1465
|
+
dev: false
|
|
1466
|
+
|
|
1467
|
+
/@webassemblyjs/leb128/1.11.1:
|
|
1468
|
+
resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
|
|
1469
|
+
dependencies:
|
|
1470
|
+
'@xtuc/long': 4.2.2
|
|
1471
|
+
dev: false
|
|
1472
|
+
|
|
1473
|
+
/@webassemblyjs/utf8/1.11.1:
|
|
1474
|
+
resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
|
|
1475
|
+
dev: false
|
|
1476
|
+
|
|
1477
|
+
/@webassemblyjs/wasm-edit/1.11.1:
|
|
1478
|
+
resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
|
|
1479
|
+
dependencies:
|
|
1480
|
+
'@webassemblyjs/ast': 1.11.1
|
|
1481
|
+
'@webassemblyjs/helper-buffer': 1.11.1
|
|
1482
|
+
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
|
|
1483
|
+
'@webassemblyjs/helper-wasm-section': 1.11.1
|
|
1484
|
+
'@webassemblyjs/wasm-gen': 1.11.1
|
|
1485
|
+
'@webassemblyjs/wasm-opt': 1.11.1
|
|
1486
|
+
'@webassemblyjs/wasm-parser': 1.11.1
|
|
1487
|
+
'@webassemblyjs/wast-printer': 1.11.1
|
|
1488
|
+
dev: false
|
|
1489
|
+
|
|
1490
|
+
/@webassemblyjs/wasm-gen/1.11.1:
|
|
1491
|
+
resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
|
|
1492
|
+
dependencies:
|
|
1493
|
+
'@webassemblyjs/ast': 1.11.1
|
|
1494
|
+
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
|
|
1495
|
+
'@webassemblyjs/ieee754': 1.11.1
|
|
1496
|
+
'@webassemblyjs/leb128': 1.11.1
|
|
1497
|
+
'@webassemblyjs/utf8': 1.11.1
|
|
1498
|
+
dev: false
|
|
1499
|
+
|
|
1500
|
+
/@webassemblyjs/wasm-opt/1.11.1:
|
|
1501
|
+
resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
|
|
1502
|
+
dependencies:
|
|
1503
|
+
'@webassemblyjs/ast': 1.11.1
|
|
1504
|
+
'@webassemblyjs/helper-buffer': 1.11.1
|
|
1505
|
+
'@webassemblyjs/wasm-gen': 1.11.1
|
|
1506
|
+
'@webassemblyjs/wasm-parser': 1.11.1
|
|
1507
|
+
dev: false
|
|
1508
|
+
|
|
1509
|
+
/@webassemblyjs/wasm-parser/1.11.1:
|
|
1510
|
+
resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
|
|
1511
|
+
dependencies:
|
|
1512
|
+
'@webassemblyjs/ast': 1.11.1
|
|
1513
|
+
'@webassemblyjs/helper-api-error': 1.11.1
|
|
1514
|
+
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
|
|
1515
|
+
'@webassemblyjs/ieee754': 1.11.1
|
|
1516
|
+
'@webassemblyjs/leb128': 1.11.1
|
|
1517
|
+
'@webassemblyjs/utf8': 1.11.1
|
|
1518
|
+
dev: false
|
|
1519
|
+
|
|
1520
|
+
/@webassemblyjs/wast-printer/1.11.1:
|
|
1521
|
+
resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
|
|
1522
|
+
dependencies:
|
|
1523
|
+
'@webassemblyjs/ast': 1.11.1
|
|
1524
|
+
'@xtuc/long': 4.2.2
|
|
1525
|
+
dev: false
|
|
1526
|
+
|
|
1527
|
+
/@withshepherd/faker/5.5.5:
|
|
1528
|
+
resolution: {integrity: sha512-JgWi87zb13lrQxBc4A5my60mrZhGFgB6ixaQ1Tz2CBt5eg/6FahQiDFouI/IAW3TtX/Xeoj23AsiehQaUYddcw==}
|
|
1529
|
+
dev: false
|
|
1530
|
+
|
|
1531
|
+
/@xtuc/ieee754/1.2.0:
|
|
1532
|
+
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
|
|
1533
|
+
dev: false
|
|
1534
|
+
|
|
1535
|
+
/@xtuc/long/4.2.2:
|
|
1536
|
+
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
|
|
1537
|
+
dev: false
|
|
1538
|
+
|
|
1539
|
+
/abbrev/1.1.1:
|
|
1540
|
+
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
|
|
1541
|
+
dev: true
|
|
1542
|
+
|
|
1543
|
+
/acorn-import-assertions/1.8.0_acorn@8.8.1:
|
|
1544
|
+
resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
|
|
1545
|
+
peerDependencies:
|
|
1546
|
+
acorn: ^8
|
|
1547
|
+
dependencies:
|
|
1548
|
+
acorn: 8.8.1
|
|
1549
|
+
dev: false
|
|
1550
|
+
|
|
1551
|
+
/acorn/8.8.1:
|
|
1552
|
+
resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==}
|
|
1553
|
+
engines: {node: '>=0.4.0'}
|
|
1554
|
+
hasBin: true
|
|
1555
|
+
dev: false
|
|
1556
|
+
|
|
1557
|
+
/agent-base/6.0.2:
|
|
1558
|
+
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
|
|
1559
|
+
engines: {node: '>= 6.0.0'}
|
|
1560
|
+
dependencies:
|
|
1561
|
+
debug: 4.3.4
|
|
1562
|
+
transitivePeerDependencies:
|
|
1563
|
+
- supports-color
|
|
1564
|
+
dev: true
|
|
1565
|
+
|
|
1566
|
+
/agentkeepalive/4.2.1:
|
|
1567
|
+
resolution: {integrity: sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==}
|
|
1568
|
+
engines: {node: '>= 8.0.0'}
|
|
1569
|
+
dependencies:
|
|
1570
|
+
debug: 4.3.4
|
|
1571
|
+
depd: 1.1.2
|
|
1572
|
+
humanize-ms: 1.2.1
|
|
1573
|
+
transitivePeerDependencies:
|
|
1574
|
+
- supports-color
|
|
1575
|
+
dev: true
|
|
1576
|
+
|
|
1577
|
+
/aggregate-error/3.1.0:
|
|
1578
|
+
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
|
|
1579
|
+
engines: {node: '>=8'}
|
|
1580
|
+
dependencies:
|
|
1581
|
+
clean-stack: 2.2.0
|
|
1582
|
+
indent-string: 4.0.0
|
|
1583
|
+
dev: true
|
|
1584
|
+
|
|
1585
|
+
/ajv-formats/2.1.1:
|
|
1586
|
+
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
|
|
1587
|
+
peerDependenciesMeta:
|
|
1588
|
+
ajv:
|
|
1589
|
+
optional: true
|
|
1590
|
+
dependencies:
|
|
1591
|
+
ajv: 8.11.0
|
|
1592
|
+
dev: false
|
|
1593
|
+
|
|
1594
|
+
/ajv-keywords/3.5.2_ajv@6.12.6:
|
|
1595
|
+
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
|
|
1596
|
+
peerDependencies:
|
|
1597
|
+
ajv: ^6.9.1
|
|
1598
|
+
dependencies:
|
|
1599
|
+
ajv: 6.12.6
|
|
1600
|
+
dev: false
|
|
1601
|
+
|
|
1602
|
+
/ajv-keywords/5.1.0_ajv@8.11.0:
|
|
1603
|
+
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
|
|
1604
|
+
peerDependencies:
|
|
1605
|
+
ajv: ^8.8.2
|
|
1606
|
+
dependencies:
|
|
1607
|
+
ajv: 8.11.0
|
|
1608
|
+
fast-deep-equal: 3.1.3
|
|
1609
|
+
dev: false
|
|
1610
|
+
|
|
1611
|
+
/ajv/6.12.6:
|
|
1612
|
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
|
1613
|
+
dependencies:
|
|
1614
|
+
fast-deep-equal: 3.1.3
|
|
1615
|
+
fast-json-stable-stringify: 2.1.0
|
|
1616
|
+
json-schema-traverse: 0.4.1
|
|
1617
|
+
uri-js: 4.4.1
|
|
1618
|
+
dev: false
|
|
1619
|
+
|
|
1620
|
+
/ajv/8.11.0:
|
|
1621
|
+
resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==}
|
|
1622
|
+
dependencies:
|
|
1623
|
+
fast-deep-equal: 3.1.3
|
|
1624
|
+
json-schema-traverse: 1.0.0
|
|
1625
|
+
require-from-string: 2.0.2
|
|
1626
|
+
uri-js: 4.4.1
|
|
1627
|
+
dev: false
|
|
1628
|
+
|
|
1629
|
+
/ansi-regex/2.1.1:
|
|
1630
|
+
resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
|
|
1631
|
+
engines: {node: '>=0.10.0'}
|
|
1632
|
+
dev: false
|
|
1633
|
+
|
|
1634
|
+
/ansi-regex/5.0.1:
|
|
1635
|
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
1636
|
+
engines: {node: '>=8'}
|
|
1637
|
+
|
|
1638
|
+
/ansi-styles/2.2.1:
|
|
1639
|
+
resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
|
|
1640
|
+
engines: {node: '>=0.10.0'}
|
|
1641
|
+
dev: false
|
|
1642
|
+
|
|
1643
|
+
/ansi-styles/3.2.1:
|
|
1644
|
+
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
|
|
1645
|
+
engines: {node: '>=4'}
|
|
1646
|
+
dependencies:
|
|
1647
|
+
color-convert: 1.9.3
|
|
1648
|
+
dev: false
|
|
1649
|
+
|
|
1650
|
+
/ansi-styles/4.3.0:
|
|
1651
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
1652
|
+
engines: {node: '>=8'}
|
|
1653
|
+
dependencies:
|
|
1654
|
+
color-convert: 2.0.1
|
|
1655
|
+
dev: true
|
|
1656
|
+
|
|
1657
|
+
/anymatch/3.1.2:
|
|
1658
|
+
resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
|
|
1659
|
+
engines: {node: '>= 8'}
|
|
1660
|
+
dependencies:
|
|
1661
|
+
normalize-path: 3.0.0
|
|
1662
|
+
picomatch: 2.3.1
|
|
1663
|
+
dev: false
|
|
1664
|
+
|
|
1665
|
+
/aproba/2.0.0:
|
|
1666
|
+
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
|
|
1667
|
+
dev: true
|
|
1668
|
+
|
|
1669
|
+
/are-we-there-yet/2.0.0:
|
|
1670
|
+
resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
|
|
1671
|
+
engines: {node: '>=10'}
|
|
1672
|
+
dependencies:
|
|
1673
|
+
delegates: 1.0.0
|
|
1674
|
+
readable-stream: 3.6.0
|
|
1675
|
+
dev: true
|
|
1676
|
+
|
|
1677
|
+
/are-we-there-yet/3.0.1:
|
|
1678
|
+
resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
|
|
1679
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
1680
|
+
dependencies:
|
|
1681
|
+
delegates: 1.0.0
|
|
1682
|
+
readable-stream: 3.6.0
|
|
1683
|
+
dev: true
|
|
1684
|
+
|
|
1685
|
+
/array-union/1.0.2:
|
|
1686
|
+
resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==}
|
|
1687
|
+
engines: {node: '>=0.10.0'}
|
|
1688
|
+
dependencies:
|
|
1689
|
+
array-uniq: 1.0.3
|
|
1690
|
+
dev: false
|
|
1691
|
+
|
|
1692
|
+
/array-uniq/1.0.3:
|
|
1693
|
+
resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==}
|
|
1694
|
+
engines: {node: '>=0.10.0'}
|
|
1695
|
+
dev: false
|
|
1696
|
+
|
|
1697
|
+
/at-least-node/1.0.0:
|
|
1698
|
+
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
|
|
1699
|
+
engines: {node: '>= 4.0.0'}
|
|
1700
|
+
dev: true
|
|
1701
|
+
|
|
1702
|
+
/babel-code-frame/6.26.0:
|
|
1703
|
+
resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==}
|
|
1704
|
+
dependencies:
|
|
1705
|
+
chalk: 1.1.3
|
|
1706
|
+
esutils: 2.0.3
|
|
1707
|
+
js-tokens: 3.0.2
|
|
1708
|
+
dev: false
|
|
1709
|
+
|
|
1710
|
+
/babel-core/6.26.3:
|
|
1711
|
+
resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==}
|
|
1712
|
+
dependencies:
|
|
1713
|
+
babel-code-frame: 6.26.0
|
|
1714
|
+
babel-generator: 6.26.1
|
|
1715
|
+
babel-helpers: 6.24.1
|
|
1716
|
+
babel-messages: 6.23.0
|
|
1717
|
+
babel-register: 6.26.0
|
|
1718
|
+
babel-runtime: 6.26.0
|
|
1719
|
+
babel-template: 6.26.0
|
|
1720
|
+
babel-traverse: 6.26.0
|
|
1721
|
+
babel-types: 6.26.0
|
|
1722
|
+
babylon: 6.18.0
|
|
1723
|
+
convert-source-map: 1.9.0
|
|
1724
|
+
debug: 2.6.9
|
|
1725
|
+
json5: 0.5.1
|
|
1726
|
+
lodash: 4.17.21
|
|
1727
|
+
minimatch: 3.1.2
|
|
1728
|
+
path-is-absolute: 1.0.1
|
|
1729
|
+
private: 0.1.8
|
|
1730
|
+
slash: 1.0.0
|
|
1731
|
+
source-map: 0.5.7
|
|
1732
|
+
transitivePeerDependencies:
|
|
1733
|
+
- supports-color
|
|
1734
|
+
dev: false
|
|
1735
|
+
|
|
1736
|
+
/babel-generator/6.26.1:
|
|
1737
|
+
resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==}
|
|
1738
|
+
dependencies:
|
|
1739
|
+
babel-messages: 6.23.0
|
|
1740
|
+
babel-runtime: 6.26.0
|
|
1741
|
+
babel-types: 6.26.0
|
|
1742
|
+
detect-indent: 4.0.0
|
|
1743
|
+
jsesc: 1.3.0
|
|
1744
|
+
lodash: 4.17.21
|
|
1745
|
+
source-map: 0.5.7
|
|
1746
|
+
trim-right: 1.0.1
|
|
1747
|
+
dev: false
|
|
1748
|
+
|
|
1749
|
+
/babel-helpers/6.24.1:
|
|
1750
|
+
resolution: {integrity: sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==}
|
|
1751
|
+
dependencies:
|
|
1752
|
+
babel-runtime: 6.26.0
|
|
1753
|
+
babel-template: 6.26.0
|
|
1754
|
+
transitivePeerDependencies:
|
|
1755
|
+
- supports-color
|
|
1756
|
+
dev: false
|
|
1757
|
+
|
|
1758
|
+
/babel-loader/9.0.1_6zc4kxld457avlfyhj3lzsljlm:
|
|
1759
|
+
resolution: {integrity: sha512-szYjslOXFlj/po5KfrVmiuBAcI6GVHFuAgC96Qd6mMPHdwl4lmAJkYtvjQ1RxxPjgdkKjd3LQgXDE4jxEutNuw==}
|
|
1760
|
+
engines: {node: '>= 14.15.0'}
|
|
1761
|
+
peerDependencies:
|
|
1762
|
+
'@babel/core': ^7.12.0
|
|
1763
|
+
webpack: '>=5'
|
|
1764
|
+
dependencies:
|
|
1765
|
+
'@babel/core': 7.19.6
|
|
1766
|
+
find-cache-dir: 3.3.2
|
|
1767
|
+
schema-utils: 4.0.0
|
|
1768
|
+
webpack: 5.74.0
|
|
1769
|
+
dev: false
|
|
1770
|
+
|
|
1771
|
+
/babel-messages/6.23.0:
|
|
1772
|
+
resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==}
|
|
1773
|
+
dependencies:
|
|
1774
|
+
babel-runtime: 6.26.0
|
|
1775
|
+
dev: false
|
|
1776
|
+
|
|
1777
|
+
/babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.6:
|
|
1778
|
+
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
|
|
1779
|
+
peerDependencies:
|
|
1780
|
+
'@babel/core': ^7.0.0-0
|
|
1781
|
+
dependencies:
|
|
1782
|
+
'@babel/compat-data': 7.20.0
|
|
1783
|
+
'@babel/core': 7.19.6
|
|
1784
|
+
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.6
|
|
1785
|
+
semver: 6.3.0
|
|
1786
|
+
transitivePeerDependencies:
|
|
1787
|
+
- supports-color
|
|
1788
|
+
dev: false
|
|
1789
|
+
|
|
1790
|
+
/babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.6:
|
|
1791
|
+
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
|
|
1792
|
+
peerDependencies:
|
|
1793
|
+
'@babel/core': ^7.0.0-0
|
|
1794
|
+
dependencies:
|
|
1795
|
+
'@babel/core': 7.19.6
|
|
1796
|
+
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.6
|
|
1797
|
+
core-js-compat: 3.26.0
|
|
1798
|
+
transitivePeerDependencies:
|
|
1799
|
+
- supports-color
|
|
1800
|
+
dev: false
|
|
1801
|
+
|
|
1802
|
+
/babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.6:
|
|
1803
|
+
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
|
|
1804
|
+
peerDependencies:
|
|
1805
|
+
'@babel/core': ^7.0.0-0
|
|
1806
|
+
dependencies:
|
|
1807
|
+
'@babel/core': 7.19.6
|
|
1808
|
+
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.6
|
|
1809
|
+
transitivePeerDependencies:
|
|
1810
|
+
- supports-color
|
|
1811
|
+
dev: false
|
|
1812
|
+
|
|
1813
|
+
/babel-register/6.26.0:
|
|
1814
|
+
resolution: {integrity: sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==}
|
|
1815
|
+
dependencies:
|
|
1816
|
+
babel-core: 6.26.3
|
|
1817
|
+
babel-runtime: 6.26.0
|
|
1818
|
+
core-js: 2.6.12
|
|
1819
|
+
home-or-tmp: 2.0.0
|
|
1820
|
+
lodash: 4.17.21
|
|
1821
|
+
mkdirp: 0.5.6
|
|
1822
|
+
source-map-support: 0.4.18
|
|
1823
|
+
transitivePeerDependencies:
|
|
1824
|
+
- supports-color
|
|
1825
|
+
dev: false
|
|
1826
|
+
|
|
1827
|
+
/babel-runtime/6.26.0:
|
|
1828
|
+
resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
|
|
1829
|
+
dependencies:
|
|
1830
|
+
core-js: 2.6.12
|
|
1831
|
+
regenerator-runtime: 0.11.1
|
|
1832
|
+
dev: false
|
|
1833
|
+
|
|
1834
|
+
/babel-template/6.26.0:
|
|
1835
|
+
resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==}
|
|
1836
|
+
dependencies:
|
|
1837
|
+
babel-runtime: 6.26.0
|
|
1838
|
+
babel-traverse: 6.26.0
|
|
1839
|
+
babel-types: 6.26.0
|
|
1840
|
+
babylon: 6.18.0
|
|
1841
|
+
lodash: 4.17.21
|
|
1842
|
+
transitivePeerDependencies:
|
|
1843
|
+
- supports-color
|
|
1844
|
+
dev: false
|
|
1845
|
+
|
|
1846
|
+
/babel-traverse/6.26.0:
|
|
1847
|
+
resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==}
|
|
1848
|
+
dependencies:
|
|
1849
|
+
babel-code-frame: 6.26.0
|
|
1850
|
+
babel-messages: 6.23.0
|
|
1851
|
+
babel-runtime: 6.26.0
|
|
1852
|
+
babel-types: 6.26.0
|
|
1853
|
+
babylon: 6.18.0
|
|
1854
|
+
debug: 2.6.9
|
|
1855
|
+
globals: 9.18.0
|
|
1856
|
+
invariant: 2.2.4
|
|
1857
|
+
lodash: 4.17.21
|
|
1858
|
+
transitivePeerDependencies:
|
|
1859
|
+
- supports-color
|
|
1860
|
+
dev: false
|
|
1861
|
+
|
|
1862
|
+
/babel-types/6.26.0:
|
|
1863
|
+
resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==}
|
|
1864
|
+
dependencies:
|
|
1865
|
+
babel-runtime: 6.26.0
|
|
1866
|
+
esutils: 2.0.3
|
|
1867
|
+
lodash: 4.17.21
|
|
1868
|
+
to-fast-properties: 1.0.3
|
|
1869
|
+
dev: false
|
|
1870
|
+
|
|
1871
|
+
/babylon/6.18.0:
|
|
1872
|
+
resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==}
|
|
1873
|
+
hasBin: true
|
|
1874
|
+
dev: false
|
|
1875
|
+
|
|
1876
|
+
/balanced-match/1.0.2:
|
|
1877
|
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
1878
|
+
|
|
1879
|
+
/big.js/5.2.2:
|
|
1880
|
+
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
|
|
1881
|
+
dev: false
|
|
1882
|
+
|
|
1883
|
+
/binary-extensions/2.2.0:
|
|
1884
|
+
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
|
|
1885
|
+
engines: {node: '>=8'}
|
|
1886
|
+
dev: false
|
|
1887
|
+
|
|
1888
|
+
/bluebird/3.7.2:
|
|
1889
|
+
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
|
|
1890
|
+
dev: true
|
|
1891
|
+
|
|
1892
|
+
/boolbase/1.0.0:
|
|
1893
|
+
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
1894
|
+
dev: false
|
|
1895
|
+
|
|
1896
|
+
/bootstrap/5.2.2_@popperjs+core@2.11.6:
|
|
1897
|
+
resolution: {integrity: sha512-dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ==}
|
|
1898
|
+
peerDependencies:
|
|
1899
|
+
'@popperjs/core': ^2.11.6
|
|
1900
|
+
dependencies:
|
|
1901
|
+
'@popperjs/core': 2.11.6
|
|
1902
|
+
dev: false
|
|
1903
|
+
|
|
1904
|
+
/brace-expansion/1.1.11:
|
|
1905
|
+
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
|
1906
|
+
dependencies:
|
|
1907
|
+
balanced-match: 1.0.2
|
|
1908
|
+
concat-map: 0.0.1
|
|
1909
|
+
|
|
1910
|
+
/brace-expansion/2.0.1:
|
|
1911
|
+
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
|
|
1912
|
+
dependencies:
|
|
1913
|
+
balanced-match: 1.0.2
|
|
1914
|
+
dev: true
|
|
1915
|
+
|
|
1916
|
+
/braces/3.0.2:
|
|
1917
|
+
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
|
|
1918
|
+
engines: {node: '>=8'}
|
|
1919
|
+
dependencies:
|
|
1920
|
+
fill-range: 7.0.1
|
|
1921
|
+
dev: false
|
|
1922
|
+
|
|
1923
|
+
/browserslist/4.21.4:
|
|
1924
|
+
resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==}
|
|
1925
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
1926
|
+
hasBin: true
|
|
1927
|
+
dependencies:
|
|
1928
|
+
caniuse-lite: 1.0.30001429
|
|
1929
|
+
electron-to-chromium: 1.4.284
|
|
1930
|
+
node-releases: 2.0.6
|
|
1931
|
+
update-browserslist-db: 1.0.10_browserslist@4.21.4
|
|
1932
|
+
dev: false
|
|
1933
|
+
|
|
1934
|
+
/buffer-from/1.1.2:
|
|
1935
|
+
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
1936
|
+
dev: false
|
|
1937
|
+
|
|
1938
|
+
/cacache/16.1.3:
|
|
1939
|
+
resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==}
|
|
1940
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
1941
|
+
dependencies:
|
|
1942
|
+
'@npmcli/fs': 2.1.2
|
|
1943
|
+
'@npmcli/move-file': 2.0.1
|
|
1944
|
+
chownr: 2.0.0
|
|
1945
|
+
fs-minipass: 2.1.0
|
|
1946
|
+
glob: 8.0.3
|
|
1947
|
+
infer-owner: 1.0.4
|
|
1948
|
+
lru-cache: 7.14.0
|
|
1949
|
+
minipass: 3.3.4
|
|
1950
|
+
minipass-collect: 1.0.2
|
|
1951
|
+
minipass-flush: 1.0.5
|
|
1952
|
+
minipass-pipeline: 1.2.4
|
|
1953
|
+
mkdirp: 1.0.4
|
|
1954
|
+
p-map: 4.0.0
|
|
1955
|
+
promise-inflight: 1.0.1
|
|
1956
|
+
rimraf: 3.0.2
|
|
1957
|
+
ssri: 9.0.1
|
|
1958
|
+
tar: 6.1.11
|
|
1959
|
+
unique-filename: 2.0.1
|
|
1960
|
+
transitivePeerDependencies:
|
|
1961
|
+
- bluebird
|
|
1962
|
+
dev: true
|
|
1963
|
+
|
|
1964
|
+
/camel-case/4.1.2:
|
|
1965
|
+
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
|
|
1966
|
+
dependencies:
|
|
1967
|
+
pascal-case: 3.1.2
|
|
1968
|
+
tslib: 2.4.1
|
|
1969
|
+
dev: false
|
|
1970
|
+
|
|
1971
|
+
/caniuse-lite/1.0.30001429:
|
|
1972
|
+
resolution: {integrity: sha512-511ThLu1hF+5RRRt0zYCf2U2yRr9GPF6m5y90SBCWsvSoYoW7yAGlv/elyPaNfvGCkp6kj/KFZWU0BMA69Prsg==}
|
|
1973
|
+
dev: false
|
|
1974
|
+
|
|
1975
|
+
/chalk/1.1.3:
|
|
1976
|
+
resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
|
|
1977
|
+
engines: {node: '>=0.10.0'}
|
|
1978
|
+
dependencies:
|
|
1979
|
+
ansi-styles: 2.2.1
|
|
1980
|
+
escape-string-regexp: 1.0.5
|
|
1981
|
+
has-ansi: 2.0.0
|
|
1982
|
+
strip-ansi: 3.0.1
|
|
1983
|
+
supports-color: 2.0.0
|
|
1984
|
+
dev: false
|
|
1985
|
+
|
|
1986
|
+
/chalk/2.4.2:
|
|
1987
|
+
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
|
|
1988
|
+
engines: {node: '>=4'}
|
|
1989
|
+
dependencies:
|
|
1990
|
+
ansi-styles: 3.2.1
|
|
1991
|
+
escape-string-regexp: 1.0.5
|
|
1992
|
+
supports-color: 5.5.0
|
|
1993
|
+
dev: false
|
|
1994
|
+
|
|
1995
|
+
/chokidar/3.5.3:
|
|
1996
|
+
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
|
|
1997
|
+
engines: {node: '>= 8.10.0'}
|
|
1998
|
+
dependencies:
|
|
1999
|
+
anymatch: 3.1.2
|
|
2000
|
+
braces: 3.0.2
|
|
2001
|
+
glob-parent: 5.1.2
|
|
2002
|
+
is-binary-path: 2.1.0
|
|
2003
|
+
is-glob: 4.0.3
|
|
2004
|
+
normalize-path: 3.0.0
|
|
2005
|
+
readdirp: 3.6.0
|
|
2006
|
+
optionalDependencies:
|
|
2007
|
+
fsevents: 2.3.2
|
|
2008
|
+
dev: false
|
|
2009
|
+
|
|
2010
|
+
/chownr/2.0.0:
|
|
2011
|
+
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
|
|
2012
|
+
engines: {node: '>=10'}
|
|
2013
|
+
dev: true
|
|
2014
|
+
|
|
2015
|
+
/chrome-trace-event/1.0.3:
|
|
2016
|
+
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
|
|
2017
|
+
engines: {node: '>=6.0'}
|
|
2018
|
+
dev: false
|
|
2019
|
+
|
|
2020
|
+
/clean-css/5.3.1:
|
|
2021
|
+
resolution: {integrity: sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==}
|
|
2022
|
+
engines: {node: '>= 10.0'}
|
|
2023
|
+
dependencies:
|
|
2024
|
+
source-map: 0.6.1
|
|
2025
|
+
dev: false
|
|
2026
|
+
|
|
2027
|
+
/clean-stack/2.2.0:
|
|
2028
|
+
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
|
|
2029
|
+
engines: {node: '>=6'}
|
|
2030
|
+
dev: true
|
|
2031
|
+
|
|
2032
|
+
/clean-webpack-plugin/4.0.0_webpack@5.74.0:
|
|
2033
|
+
resolution: {integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==}
|
|
2034
|
+
engines: {node: '>=10.0.0'}
|
|
2035
|
+
peerDependencies:
|
|
2036
|
+
webpack: '>=4.0.0 <6.0.0'
|
|
2037
|
+
dependencies:
|
|
2038
|
+
del: 4.1.1
|
|
2039
|
+
webpack: 5.74.0
|
|
2040
|
+
dev: false
|
|
2041
|
+
|
|
2042
|
+
/cli-color/2.0.3:
|
|
2043
|
+
resolution: {integrity: sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==}
|
|
2044
|
+
engines: {node: '>=0.10'}
|
|
2045
|
+
dependencies:
|
|
2046
|
+
d: 1.0.1
|
|
2047
|
+
es5-ext: 0.10.62
|
|
2048
|
+
es6-iterator: 2.0.3
|
|
2049
|
+
memoizee: 0.4.15
|
|
2050
|
+
timers-ext: 0.1.7
|
|
2051
|
+
dev: true
|
|
2052
|
+
|
|
2053
|
+
/cliui/7.0.4:
|
|
2054
|
+
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
|
|
2055
|
+
dependencies:
|
|
2056
|
+
string-width: 4.2.3
|
|
2057
|
+
strip-ansi: 6.0.1
|
|
2058
|
+
wrap-ansi: 7.0.0
|
|
2059
|
+
dev: true
|
|
2060
|
+
|
|
2061
|
+
/clone-deep/4.0.1:
|
|
2062
|
+
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
|
|
2063
|
+
engines: {node: '>=6'}
|
|
2064
|
+
dependencies:
|
|
2065
|
+
is-plain-object: 2.0.4
|
|
2066
|
+
kind-of: 6.0.3
|
|
2067
|
+
shallow-clone: 3.0.1
|
|
2068
|
+
dev: false
|
|
2069
|
+
|
|
2070
|
+
/color-convert/1.9.3:
|
|
2071
|
+
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
|
|
2072
|
+
dependencies:
|
|
2073
|
+
color-name: 1.1.3
|
|
2074
|
+
dev: false
|
|
2075
|
+
|
|
2076
|
+
/color-convert/2.0.1:
|
|
2077
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
2078
|
+
engines: {node: '>=7.0.0'}
|
|
2079
|
+
dependencies:
|
|
2080
|
+
color-name: 1.1.4
|
|
2081
|
+
dev: true
|
|
2082
|
+
|
|
2083
|
+
/color-name/1.1.3:
|
|
2084
|
+
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
|
|
2085
|
+
dev: false
|
|
2086
|
+
|
|
2087
|
+
/color-name/1.1.4:
|
|
2088
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
2089
|
+
dev: true
|
|
2090
|
+
|
|
2091
|
+
/color-support/1.1.3:
|
|
2092
|
+
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
|
|
2093
|
+
hasBin: true
|
|
2094
|
+
dev: true
|
|
2095
|
+
|
|
2096
|
+
/commander/2.20.3:
|
|
2097
|
+
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
|
|
2098
|
+
|
|
2099
|
+
/commander/8.3.0:
|
|
2100
|
+
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
|
|
2101
|
+
engines: {node: '>= 12'}
|
|
2102
|
+
dev: false
|
|
2103
|
+
|
|
2104
|
+
/commondir/1.0.1:
|
|
2105
|
+
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
|
|
2106
|
+
dev: false
|
|
2107
|
+
|
|
2108
|
+
/concat-map/0.0.1:
|
|
2109
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
2110
|
+
|
|
2111
|
+
/config-chain/1.1.13:
|
|
2112
|
+
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
|
|
2113
|
+
dependencies:
|
|
2114
|
+
ini: 1.3.8
|
|
2115
|
+
proto-list: 1.2.4
|
|
2116
|
+
dev: true
|
|
2117
|
+
|
|
2118
|
+
/console-control-strings/1.1.0:
|
|
2119
|
+
resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
|
|
2120
|
+
dev: true
|
|
2121
|
+
|
|
2122
|
+
/convert-source-map/1.9.0:
|
|
2123
|
+
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
|
|
2124
|
+
dev: false
|
|
2125
|
+
|
|
2126
|
+
/core-js-compat/3.26.0:
|
|
2127
|
+
resolution: {integrity: sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==}
|
|
2128
|
+
dependencies:
|
|
2129
|
+
browserslist: 4.21.4
|
|
2130
|
+
dev: false
|
|
2131
|
+
|
|
2132
|
+
/core-js/2.6.12:
|
|
2133
|
+
resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
|
|
2134
|
+
deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
|
|
2135
|
+
requiresBuild: true
|
|
2136
|
+
dev: false
|
|
2137
|
+
|
|
2138
|
+
/css-hot-loader/1.4.4:
|
|
2139
|
+
resolution: {integrity: sha512-J/qXHz+r7FOT92qMIJfxUk0LC9fecQNZVr0MswQ4FOpKLyOCBjofVMfc6R268bh/5ktkTShrweMr0wWqerC92g==}
|
|
2140
|
+
dependencies:
|
|
2141
|
+
loader-utils: 1.4.0
|
|
2142
|
+
lodash: 4.17.21
|
|
2143
|
+
normalize-url: 1.9.1
|
|
2144
|
+
dev: false
|
|
2145
|
+
|
|
2146
|
+
/css-loader/6.7.1_webpack@5.74.0:
|
|
2147
|
+
resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
|
|
2148
|
+
engines: {node: '>= 12.13.0'}
|
|
2149
|
+
peerDependencies:
|
|
2150
|
+
webpack: ^5.0.0
|
|
2151
|
+
dependencies:
|
|
2152
|
+
icss-utils: 5.1.0_postcss@8.4.18
|
|
2153
|
+
postcss: 8.4.18
|
|
2154
|
+
postcss-modules-extract-imports: 3.0.0_postcss@8.4.18
|
|
2155
|
+
postcss-modules-local-by-default: 4.0.0_postcss@8.4.18
|
|
2156
|
+
postcss-modules-scope: 3.0.0_postcss@8.4.18
|
|
2157
|
+
postcss-modules-values: 4.0.0_postcss@8.4.18
|
|
2158
|
+
postcss-value-parser: 4.2.0
|
|
2159
|
+
semver: 7.3.8
|
|
2160
|
+
webpack: 5.74.0
|
|
2161
|
+
dev: false
|
|
2162
|
+
|
|
2163
|
+
/css-select/4.3.0:
|
|
2164
|
+
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
|
|
2165
|
+
dependencies:
|
|
2166
|
+
boolbase: 1.0.0
|
|
2167
|
+
css-what: 6.1.0
|
|
2168
|
+
domhandler: 4.3.1
|
|
2169
|
+
domutils: 2.8.0
|
|
2170
|
+
nth-check: 2.1.1
|
|
2171
|
+
dev: false
|
|
2172
|
+
|
|
2173
|
+
/css-what/6.1.0:
|
|
2174
|
+
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
|
|
2175
|
+
engines: {node: '>= 6'}
|
|
2176
|
+
dev: false
|
|
2177
|
+
|
|
2178
|
+
/cssesc/3.0.0:
|
|
2179
|
+
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
|
2180
|
+
engines: {node: '>=4'}
|
|
2181
|
+
hasBin: true
|
|
2182
|
+
dev: false
|
|
2183
|
+
|
|
2184
|
+
/d/1.0.1:
|
|
2185
|
+
resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
|
|
2186
|
+
dependencies:
|
|
2187
|
+
es5-ext: 0.10.62
|
|
2188
|
+
type: 1.2.0
|
|
2189
|
+
dev: true
|
|
2190
|
+
|
|
2191
|
+
/debug/2.6.9:
|
|
2192
|
+
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
|
|
2193
|
+
peerDependencies:
|
|
2194
|
+
supports-color: '*'
|
|
2195
|
+
peerDependenciesMeta:
|
|
2196
|
+
supports-color:
|
|
2197
|
+
optional: true
|
|
2198
|
+
dependencies:
|
|
2199
|
+
ms: 2.0.0
|
|
2200
|
+
dev: false
|
|
2201
|
+
|
|
2202
|
+
/debug/4.3.4:
|
|
2203
|
+
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
|
|
2204
|
+
engines: {node: '>=6.0'}
|
|
2205
|
+
peerDependencies:
|
|
2206
|
+
supports-color: '*'
|
|
2207
|
+
peerDependenciesMeta:
|
|
2208
|
+
supports-color:
|
|
2209
|
+
optional: true
|
|
2210
|
+
dependencies:
|
|
2211
|
+
ms: 2.1.2
|
|
2212
|
+
|
|
2213
|
+
/del/4.1.1:
|
|
2214
|
+
resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==}
|
|
2215
|
+
engines: {node: '>=6'}
|
|
2216
|
+
dependencies:
|
|
2217
|
+
'@types/glob': 7.2.0
|
|
2218
|
+
globby: 6.1.0
|
|
2219
|
+
is-path-cwd: 2.2.0
|
|
2220
|
+
is-path-in-cwd: 2.1.0
|
|
2221
|
+
p-map: 2.1.0
|
|
2222
|
+
pify: 4.0.1
|
|
2223
|
+
rimraf: 2.7.1
|
|
2224
|
+
dev: false
|
|
2225
|
+
|
|
2226
|
+
/delegates/1.0.0:
|
|
2227
|
+
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
|
|
2228
|
+
dev: true
|
|
2229
|
+
|
|
2230
|
+
/depd/1.1.2:
|
|
2231
|
+
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
|
|
2232
|
+
engines: {node: '>= 0.6'}
|
|
2233
|
+
dev: true
|
|
2234
|
+
|
|
2235
|
+
/detect-indent/4.0.0:
|
|
2236
|
+
resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==}
|
|
2237
|
+
engines: {node: '>=0.10.0'}
|
|
2238
|
+
dependencies:
|
|
2239
|
+
repeating: 2.0.1
|
|
2240
|
+
dev: false
|
|
2241
|
+
|
|
2242
|
+
/detect-libc/2.0.1:
|
|
2243
|
+
resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==}
|
|
2244
|
+
engines: {node: '>=8'}
|
|
2245
|
+
dev: true
|
|
2246
|
+
|
|
2247
|
+
/dom-converter/0.2.0:
|
|
2248
|
+
resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
|
|
2249
|
+
dependencies:
|
|
2250
|
+
utila: 0.4.0
|
|
2251
|
+
dev: false
|
|
2252
|
+
|
|
2253
|
+
/dom-serializer/1.4.1:
|
|
2254
|
+
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
|
|
2255
|
+
dependencies:
|
|
2256
|
+
domelementtype: 2.3.0
|
|
2257
|
+
domhandler: 4.3.1
|
|
2258
|
+
entities: 2.2.0
|
|
2259
|
+
dev: false
|
|
2260
|
+
|
|
2261
|
+
/domelementtype/2.3.0:
|
|
2262
|
+
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
|
|
2263
|
+
dev: false
|
|
2264
|
+
|
|
2265
|
+
/domhandler/4.3.1:
|
|
2266
|
+
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
|
|
2267
|
+
engines: {node: '>= 4'}
|
|
2268
|
+
dependencies:
|
|
2269
|
+
domelementtype: 2.3.0
|
|
2270
|
+
dev: false
|
|
2271
|
+
|
|
2272
|
+
/domutils/2.8.0:
|
|
2273
|
+
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
|
|
2274
|
+
dependencies:
|
|
2275
|
+
dom-serializer: 1.4.1
|
|
2276
|
+
domelementtype: 2.3.0
|
|
2277
|
+
domhandler: 4.3.1
|
|
2278
|
+
dev: false
|
|
2279
|
+
|
|
2280
|
+
/dot-case/3.0.4:
|
|
2281
|
+
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
|
|
2282
|
+
dependencies:
|
|
2283
|
+
no-case: 3.0.4
|
|
2284
|
+
tslib: 2.4.1
|
|
2285
|
+
dev: false
|
|
2286
|
+
|
|
2287
|
+
/editorconfig/0.15.3:
|
|
2288
|
+
resolution: {integrity: sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==}
|
|
2289
|
+
hasBin: true
|
|
2290
|
+
dependencies:
|
|
2291
|
+
commander: 2.20.3
|
|
2292
|
+
lru-cache: 4.1.5
|
|
2293
|
+
semver: 5.7.1
|
|
2294
|
+
sigmund: 1.0.1
|
|
2295
|
+
dev: true
|
|
2296
|
+
|
|
2297
|
+
/electron-to-chromium/1.4.284:
|
|
2298
|
+
resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
|
|
2299
|
+
dev: false
|
|
2300
|
+
|
|
2301
|
+
/emitter-component/1.1.1:
|
|
2302
|
+
resolution: {integrity: sha512-G+mpdiAySMuB7kesVRLuyvYRqDmshB7ReKEVuyBPkzQlmiDiLrt7hHHIy4Aff552bgknVN7B2/d3lzhGO5dvpQ==}
|
|
2303
|
+
dev: true
|
|
2304
|
+
|
|
2305
|
+
/emoji-regex/8.0.0:
|
|
2306
|
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
2307
|
+
dev: true
|
|
2308
|
+
|
|
2309
|
+
/emojis-list/3.0.0:
|
|
2310
|
+
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
|
|
2311
|
+
engines: {node: '>= 4'}
|
|
2312
|
+
dev: false
|
|
2313
|
+
|
|
2314
|
+
/encoding/0.1.13:
|
|
2315
|
+
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
|
|
2316
|
+
requiresBuild: true
|
|
2317
|
+
dependencies:
|
|
2318
|
+
iconv-lite: 0.6.3
|
|
2319
|
+
dev: true
|
|
2320
|
+
optional: true
|
|
2321
|
+
|
|
2322
|
+
/enhanced-resolve/5.10.0:
|
|
2323
|
+
resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==}
|
|
2324
|
+
engines: {node: '>=10.13.0'}
|
|
2325
|
+
dependencies:
|
|
2326
|
+
graceful-fs: 4.2.10
|
|
2327
|
+
tapable: 2.2.1
|
|
2328
|
+
dev: false
|
|
2329
|
+
|
|
2330
|
+
/entities/2.2.0:
|
|
2331
|
+
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
|
|
2332
|
+
dev: false
|
|
2333
|
+
|
|
2334
|
+
/env-paths/2.2.1:
|
|
2335
|
+
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
|
|
2336
|
+
engines: {node: '>=6'}
|
|
2337
|
+
dev: true
|
|
2338
|
+
|
|
2339
|
+
/err-code/2.0.3:
|
|
2340
|
+
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
|
|
2341
|
+
dev: true
|
|
2342
|
+
|
|
2343
|
+
/es-module-lexer/0.9.3:
|
|
2344
|
+
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
|
|
2345
|
+
dev: false
|
|
2346
|
+
|
|
2347
|
+
/es5-ext/0.10.62:
|
|
2348
|
+
resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==}
|
|
2349
|
+
engines: {node: '>=0.10'}
|
|
2350
|
+
requiresBuild: true
|
|
2351
|
+
dependencies:
|
|
2352
|
+
es6-iterator: 2.0.3
|
|
2353
|
+
es6-symbol: 3.1.3
|
|
2354
|
+
next-tick: 1.1.0
|
|
2355
|
+
dev: true
|
|
2356
|
+
|
|
2357
|
+
/es6-iterator/2.0.3:
|
|
2358
|
+
resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
|
|
2359
|
+
dependencies:
|
|
2360
|
+
d: 1.0.1
|
|
2361
|
+
es5-ext: 0.10.62
|
|
2362
|
+
es6-symbol: 3.1.3
|
|
2363
|
+
dev: true
|
|
2364
|
+
|
|
2365
|
+
/es6-symbol/3.1.3:
|
|
2366
|
+
resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
|
|
2367
|
+
dependencies:
|
|
2368
|
+
d: 1.0.1
|
|
2369
|
+
ext: 1.7.0
|
|
2370
|
+
dev: true
|
|
2371
|
+
|
|
2372
|
+
/es6-weak-map/2.0.3:
|
|
2373
|
+
resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==}
|
|
2374
|
+
dependencies:
|
|
2375
|
+
d: 1.0.1
|
|
2376
|
+
es5-ext: 0.10.62
|
|
2377
|
+
es6-iterator: 2.0.3
|
|
2378
|
+
es6-symbol: 3.1.3
|
|
2379
|
+
dev: true
|
|
2380
|
+
|
|
2381
|
+
/escalade/3.1.1:
|
|
2382
|
+
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
|
|
2383
|
+
engines: {node: '>=6'}
|
|
2384
|
+
|
|
2385
|
+
/escape-string-regexp/1.0.5:
|
|
2386
|
+
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
|
|
2387
|
+
engines: {node: '>=0.8.0'}
|
|
2388
|
+
dev: false
|
|
2389
|
+
|
|
2390
|
+
/eslint-scope/5.1.1:
|
|
2391
|
+
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
|
|
2392
|
+
engines: {node: '>=8.0.0'}
|
|
2393
|
+
dependencies:
|
|
2394
|
+
esrecurse: 4.3.0
|
|
2395
|
+
estraverse: 4.3.0
|
|
2396
|
+
dev: false
|
|
2397
|
+
|
|
2398
|
+
/esrecurse/4.3.0:
|
|
2399
|
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
2400
|
+
engines: {node: '>=4.0'}
|
|
2401
|
+
dependencies:
|
|
2402
|
+
estraverse: 5.3.0
|
|
2403
|
+
dev: false
|
|
2404
|
+
|
|
2405
|
+
/estraverse/4.3.0:
|
|
2406
|
+
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
|
|
2407
|
+
engines: {node: '>=4.0'}
|
|
2408
|
+
dev: false
|
|
2409
|
+
|
|
2410
|
+
/estraverse/5.3.0:
|
|
2411
|
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
2412
|
+
engines: {node: '>=4.0'}
|
|
2413
|
+
dev: false
|
|
2414
|
+
|
|
2415
|
+
/esutils/2.0.3:
|
|
2416
|
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
2417
|
+
engines: {node: '>=0.10.0'}
|
|
2418
|
+
dev: false
|
|
2419
|
+
|
|
2420
|
+
/event-emitter/0.3.5:
|
|
2421
|
+
resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
|
|
2422
|
+
dependencies:
|
|
2423
|
+
d: 1.0.1
|
|
2424
|
+
es5-ext: 0.10.62
|
|
2425
|
+
dev: true
|
|
2426
|
+
|
|
2427
|
+
/events/3.3.0:
|
|
2428
|
+
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
|
|
2429
|
+
engines: {node: '>=0.8.x'}
|
|
2430
|
+
dev: false
|
|
2431
|
+
|
|
2432
|
+
/expose-loader/4.0.0_webpack@5.74.0:
|
|
2433
|
+
resolution: {integrity: sha512-kUEvHyf6MPR2ubZCL9aziP9Br5wxMvq1cghTpYhM6MW52NPq+7hXixw2EqQuI1SvGb1fDjc2ehJOg6645wR6ww==}
|
|
2434
|
+
engines: {node: '>= 14.15.0'}
|
|
2435
|
+
peerDependencies:
|
|
2436
|
+
webpack: ^5.0.0
|
|
2437
|
+
dependencies:
|
|
2438
|
+
webpack: 5.74.0
|
|
2439
|
+
dev: false
|
|
2440
|
+
|
|
2441
|
+
/ext/1.7.0:
|
|
2442
|
+
resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
|
|
2443
|
+
dependencies:
|
|
2444
|
+
type: 2.7.2
|
|
2445
|
+
dev: true
|
|
2446
|
+
|
|
2447
|
+
/fast-deep-equal/3.1.3:
|
|
2448
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
2449
|
+
dev: false
|
|
2450
|
+
|
|
2451
|
+
/fast-json-stable-stringify/2.1.0:
|
|
2452
|
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
|
2453
|
+
dev: false
|
|
2454
|
+
|
|
2455
|
+
/fill-range/7.0.1:
|
|
2456
|
+
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
|
|
2457
|
+
engines: {node: '>=8'}
|
|
2458
|
+
dependencies:
|
|
2459
|
+
to-regex-range: 5.0.1
|
|
2460
|
+
dev: false
|
|
2461
|
+
|
|
2462
|
+
/find-cache-dir/3.3.2:
|
|
2463
|
+
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
|
|
2464
|
+
engines: {node: '>=8'}
|
|
2465
|
+
dependencies:
|
|
2466
|
+
commondir: 1.0.1
|
|
2467
|
+
make-dir: 3.1.0
|
|
2468
|
+
pkg-dir: 4.2.0
|
|
2469
|
+
dev: false
|
|
2470
|
+
|
|
2471
|
+
/find-up/4.1.0:
|
|
2472
|
+
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
|
|
2473
|
+
engines: {node: '>=8'}
|
|
2474
|
+
dependencies:
|
|
2475
|
+
locate-path: 5.0.0
|
|
2476
|
+
path-exists: 4.0.0
|
|
2477
|
+
dev: false
|
|
2478
|
+
|
|
2479
|
+
/font-awesome/4.7.0:
|
|
2480
|
+
resolution: {integrity: sha512-U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg==}
|
|
2481
|
+
engines: {node: '>=0.10.3'}
|
|
2482
|
+
dev: false
|
|
2483
|
+
|
|
2484
|
+
/fs-extra/9.1.0:
|
|
2485
|
+
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
|
|
2486
|
+
engines: {node: '>=10'}
|
|
2487
|
+
dependencies:
|
|
2488
|
+
at-least-node: 1.0.0
|
|
2489
|
+
graceful-fs: 4.2.10
|
|
2490
|
+
jsonfile: 6.1.0
|
|
2491
|
+
universalify: 2.0.0
|
|
2492
|
+
dev: true
|
|
2493
|
+
|
|
2494
|
+
/fs-minipass/2.1.0:
|
|
2495
|
+
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
|
|
2496
|
+
engines: {node: '>= 8'}
|
|
2497
|
+
dependencies:
|
|
2498
|
+
minipass: 3.3.4
|
|
2499
|
+
dev: true
|
|
2500
|
+
|
|
2501
|
+
/fs.realpath/1.0.0:
|
|
2502
|
+
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
|
2503
|
+
|
|
2504
|
+
/fsevents/2.3.2:
|
|
2505
|
+
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
|
2506
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
2507
|
+
os: [darwin]
|
|
2508
|
+
requiresBuild: true
|
|
2509
|
+
dev: false
|
|
2510
|
+
optional: true
|
|
2511
|
+
|
|
2512
|
+
/function-bind/1.1.1:
|
|
2513
|
+
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
|
|
2514
|
+
|
|
2515
|
+
/gauge/3.0.2:
|
|
2516
|
+
resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
|
|
2517
|
+
engines: {node: '>=10'}
|
|
2518
|
+
dependencies:
|
|
2519
|
+
aproba: 2.0.0
|
|
2520
|
+
color-support: 1.1.3
|
|
2521
|
+
console-control-strings: 1.1.0
|
|
2522
|
+
has-unicode: 2.0.1
|
|
2523
|
+
object-assign: 4.1.1
|
|
2524
|
+
signal-exit: 3.0.7
|
|
2525
|
+
string-width: 4.2.3
|
|
2526
|
+
strip-ansi: 6.0.1
|
|
2527
|
+
wide-align: 1.1.5
|
|
2528
|
+
dev: true
|
|
2529
|
+
|
|
2530
|
+
/gauge/4.0.4:
|
|
2531
|
+
resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
|
|
2532
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
2533
|
+
dependencies:
|
|
2534
|
+
aproba: 2.0.0
|
|
2535
|
+
color-support: 1.1.3
|
|
2536
|
+
console-control-strings: 1.1.0
|
|
2537
|
+
has-unicode: 2.0.1
|
|
2538
|
+
signal-exit: 3.0.7
|
|
2539
|
+
string-width: 4.2.3
|
|
2540
|
+
strip-ansi: 6.0.1
|
|
2541
|
+
wide-align: 1.1.5
|
|
2542
|
+
dev: true
|
|
2543
|
+
|
|
2544
|
+
/gensync/1.0.0-beta.2:
|
|
2545
|
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
2546
|
+
engines: {node: '>=6.9.0'}
|
|
2547
|
+
dev: false
|
|
2548
|
+
|
|
2549
|
+
/get-caller-file/2.0.5:
|
|
2550
|
+
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
2551
|
+
engines: {node: 6.* || 8.* || >= 10.*}
|
|
2552
|
+
dev: true
|
|
2553
|
+
|
|
2554
|
+
/glob-parent/5.1.2:
|
|
2555
|
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
2556
|
+
engines: {node: '>= 6'}
|
|
2557
|
+
dependencies:
|
|
2558
|
+
is-glob: 4.0.3
|
|
2559
|
+
dev: false
|
|
2560
|
+
|
|
2561
|
+
/glob-to-regexp/0.4.1:
|
|
2562
|
+
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
|
|
2563
|
+
dev: false
|
|
2564
|
+
|
|
2565
|
+
/glob/7.2.3:
|
|
2566
|
+
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
|
2567
|
+
dependencies:
|
|
2568
|
+
fs.realpath: 1.0.0
|
|
2569
|
+
inflight: 1.0.6
|
|
2570
|
+
inherits: 2.0.4
|
|
2571
|
+
minimatch: 3.1.2
|
|
2572
|
+
once: 1.4.0
|
|
2573
|
+
path-is-absolute: 1.0.1
|
|
2574
|
+
|
|
2575
|
+
/glob/8.0.3:
|
|
2576
|
+
resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==}
|
|
2577
|
+
engines: {node: '>=12'}
|
|
2578
|
+
dependencies:
|
|
2579
|
+
fs.realpath: 1.0.0
|
|
2580
|
+
inflight: 1.0.6
|
|
2581
|
+
inherits: 2.0.4
|
|
2582
|
+
minimatch: 5.1.0
|
|
2583
|
+
once: 1.4.0
|
|
2584
|
+
dev: true
|
|
2585
|
+
|
|
2586
|
+
/globals/11.12.0:
|
|
2587
|
+
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
|
2588
|
+
engines: {node: '>=4'}
|
|
2589
|
+
dev: false
|
|
2590
|
+
|
|
2591
|
+
/globals/9.18.0:
|
|
2592
|
+
resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==}
|
|
2593
|
+
engines: {node: '>=0.10.0'}
|
|
2594
|
+
dev: false
|
|
2595
|
+
|
|
2596
|
+
/globby/6.1.0:
|
|
2597
|
+
resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==}
|
|
2598
|
+
engines: {node: '>=0.10.0'}
|
|
2599
|
+
dependencies:
|
|
2600
|
+
array-union: 1.0.2
|
|
2601
|
+
glob: 7.2.3
|
|
2602
|
+
object-assign: 4.1.1
|
|
2603
|
+
pify: 2.3.0
|
|
2604
|
+
pinkie-promise: 2.0.1
|
|
2605
|
+
dev: false
|
|
2606
|
+
|
|
2607
|
+
/graceful-fs/4.2.10:
|
|
2608
|
+
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
|
|
2609
|
+
|
|
2610
|
+
/has-ansi/2.0.0:
|
|
2611
|
+
resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
|
|
2612
|
+
engines: {node: '>=0.10.0'}
|
|
2613
|
+
dependencies:
|
|
2614
|
+
ansi-regex: 2.1.1
|
|
2615
|
+
dev: false
|
|
2616
|
+
|
|
2617
|
+
/has-flag/3.0.0:
|
|
2618
|
+
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
|
|
2619
|
+
engines: {node: '>=4'}
|
|
2620
|
+
dev: false
|
|
2621
|
+
|
|
2622
|
+
/has-flag/4.0.0:
|
|
2623
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
2624
|
+
engines: {node: '>=8'}
|
|
2625
|
+
dev: false
|
|
2626
|
+
|
|
2627
|
+
/has-unicode/2.0.1:
|
|
2628
|
+
resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
|
|
2629
|
+
dev: true
|
|
2630
|
+
|
|
2631
|
+
/has/1.0.3:
|
|
2632
|
+
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
|
|
2633
|
+
engines: {node: '>= 0.4.0'}
|
|
2634
|
+
dependencies:
|
|
2635
|
+
function-bind: 1.1.1
|
|
2636
|
+
|
|
2637
|
+
/he/1.2.0:
|
|
2638
|
+
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
|
|
2639
|
+
hasBin: true
|
|
2640
|
+
dev: false
|
|
2641
|
+
|
|
2642
|
+
/home-or-tmp/2.0.0:
|
|
2643
|
+
resolution: {integrity: sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==}
|
|
2644
|
+
engines: {node: '>=0.10.0'}
|
|
2645
|
+
dependencies:
|
|
2646
|
+
os-homedir: 1.0.2
|
|
2647
|
+
os-tmpdir: 1.0.2
|
|
2648
|
+
dev: false
|
|
2649
|
+
|
|
2650
|
+
/html-minifier-terser/6.1.0:
|
|
2651
|
+
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
|
|
2652
|
+
engines: {node: '>=12'}
|
|
2653
|
+
hasBin: true
|
|
2654
|
+
dependencies:
|
|
2655
|
+
camel-case: 4.1.2
|
|
2656
|
+
clean-css: 5.3.1
|
|
2657
|
+
commander: 8.3.0
|
|
2658
|
+
he: 1.2.0
|
|
2659
|
+
param-case: 3.0.4
|
|
2660
|
+
relateurl: 0.2.7
|
|
2661
|
+
terser: 5.15.1
|
|
2662
|
+
dev: false
|
|
2663
|
+
|
|
2664
|
+
/html-webpack-plugin/5.5.0_webpack@5.74.0:
|
|
2665
|
+
resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
|
|
2666
|
+
engines: {node: '>=10.13.0'}
|
|
2667
|
+
peerDependencies:
|
|
2668
|
+
webpack: ^5.20.0
|
|
2669
|
+
dependencies:
|
|
2670
|
+
'@types/html-minifier-terser': 6.1.0
|
|
2671
|
+
html-minifier-terser: 6.1.0
|
|
2672
|
+
lodash: 4.17.21
|
|
2673
|
+
pretty-error: 4.0.0
|
|
2674
|
+
tapable: 2.2.1
|
|
2675
|
+
webpack: 5.74.0
|
|
2676
|
+
dev: false
|
|
2677
|
+
|
|
2678
|
+
/htmlparser2/6.1.0:
|
|
2679
|
+
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
|
|
2680
|
+
dependencies:
|
|
2681
|
+
domelementtype: 2.3.0
|
|
2682
|
+
domhandler: 4.3.1
|
|
2683
|
+
domutils: 2.8.0
|
|
2684
|
+
entities: 2.2.0
|
|
2685
|
+
dev: false
|
|
2686
|
+
|
|
2687
|
+
/http-cache-semantics/4.1.0:
|
|
2688
|
+
resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==}
|
|
2689
|
+
dev: true
|
|
2690
|
+
|
|
2691
|
+
/http-proxy-agent/5.0.0:
|
|
2692
|
+
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
|
|
2693
|
+
engines: {node: '>= 6'}
|
|
2694
|
+
dependencies:
|
|
2695
|
+
'@tootallnate/once': 2.0.0
|
|
2696
|
+
agent-base: 6.0.2
|
|
2697
|
+
debug: 4.3.4
|
|
2698
|
+
transitivePeerDependencies:
|
|
2699
|
+
- supports-color
|
|
2700
|
+
dev: true
|
|
2701
|
+
|
|
2702
|
+
/https-proxy-agent/5.0.1:
|
|
2703
|
+
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
|
|
2704
|
+
engines: {node: '>= 6'}
|
|
2705
|
+
dependencies:
|
|
2706
|
+
agent-base: 6.0.2
|
|
2707
|
+
debug: 4.3.4
|
|
2708
|
+
transitivePeerDependencies:
|
|
2709
|
+
- supports-color
|
|
2710
|
+
dev: true
|
|
2711
|
+
|
|
2712
|
+
/humanize-ms/1.2.1:
|
|
2713
|
+
resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
|
|
2714
|
+
dependencies:
|
|
2715
|
+
ms: 2.1.3
|
|
2716
|
+
dev: true
|
|
2717
|
+
|
|
2718
|
+
/iconv-lite/0.6.3:
|
|
2719
|
+
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
|
|
2720
|
+
engines: {node: '>=0.10.0'}
|
|
2721
|
+
dependencies:
|
|
2722
|
+
safer-buffer: 2.1.2
|
|
2723
|
+
dev: true
|
|
2724
|
+
optional: true
|
|
2725
|
+
|
|
2726
|
+
/icss-utils/5.1.0_postcss@8.4.18:
|
|
2727
|
+
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
|
|
2728
|
+
engines: {node: ^10 || ^12 || >= 14}
|
|
2729
|
+
peerDependencies:
|
|
2730
|
+
postcss: ^8.1.0
|
|
2731
|
+
dependencies:
|
|
2732
|
+
postcss: 8.4.18
|
|
2733
|
+
dev: false
|
|
2734
|
+
|
|
2735
|
+
/immutable/4.1.0:
|
|
2736
|
+
resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==}
|
|
2737
|
+
dev: false
|
|
2738
|
+
|
|
2739
|
+
/imports-loader/4.0.1_webpack@5.74.0:
|
|
2740
|
+
resolution: {integrity: sha512-ZiY+1xH5fqAJ1Qu1CFv+zw54rvPCC92DdYRDe0IIUboOhbJPLfOPbF/paA2iipelvMwjQUKWydcFOJ7f1+ZFcA==}
|
|
2741
|
+
engines: {node: '>= 14.15.0'}
|
|
2742
|
+
peerDependencies:
|
|
2743
|
+
webpack: ^5.0.0
|
|
2744
|
+
dependencies:
|
|
2745
|
+
source-map: 0.6.1
|
|
2746
|
+
strip-comments: 2.0.1
|
|
2747
|
+
webpack: 5.74.0
|
|
2748
|
+
dev: false
|
|
2749
|
+
|
|
2750
|
+
/imurmurhash/0.1.4:
|
|
2751
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
2752
|
+
engines: {node: '>=0.8.19'}
|
|
2753
|
+
dev: true
|
|
2754
|
+
|
|
2755
|
+
/indent-string/4.0.0:
|
|
2756
|
+
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
|
|
2757
|
+
engines: {node: '>=8'}
|
|
2758
|
+
dev: true
|
|
2759
|
+
|
|
2760
|
+
/infer-owner/1.0.4:
|
|
2761
|
+
resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
|
|
2762
|
+
dev: true
|
|
2763
|
+
|
|
2764
|
+
/inflight/1.0.6:
|
|
2765
|
+
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
|
|
2766
|
+
dependencies:
|
|
2767
|
+
once: 1.4.0
|
|
2768
|
+
wrappy: 1.0.2
|
|
2769
|
+
|
|
2770
|
+
/inherits/2.0.4:
|
|
2771
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
2772
|
+
|
|
2773
|
+
/ini/1.3.8:
|
|
2774
|
+
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
|
|
2775
|
+
dev: true
|
|
2776
|
+
|
|
2777
|
+
/invariant/2.2.4:
|
|
2778
|
+
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
|
|
2779
|
+
dependencies:
|
|
2780
|
+
loose-envify: 1.4.0
|
|
2781
|
+
dev: false
|
|
2782
|
+
|
|
2783
|
+
/ip/2.0.0:
|
|
2784
|
+
resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
|
|
2785
|
+
dev: true
|
|
2786
|
+
|
|
2787
|
+
/is-binary-path/2.1.0:
|
|
2788
|
+
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
2789
|
+
engines: {node: '>=8'}
|
|
2790
|
+
dependencies:
|
|
2791
|
+
binary-extensions: 2.2.0
|
|
2792
|
+
dev: false
|
|
2793
|
+
|
|
2794
|
+
/is-core-module/2.11.0:
|
|
2795
|
+
resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
|
|
2796
|
+
dependencies:
|
|
2797
|
+
has: 1.0.3
|
|
2798
|
+
|
|
2799
|
+
/is-extglob/2.1.1:
|
|
2800
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
2801
|
+
engines: {node: '>=0.10.0'}
|
|
2802
|
+
dev: false
|
|
2803
|
+
|
|
2804
|
+
/is-finite/1.1.0:
|
|
2805
|
+
resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==}
|
|
2806
|
+
engines: {node: '>=0.10.0'}
|
|
2807
|
+
dev: false
|
|
2808
|
+
|
|
2809
|
+
/is-fullwidth-code-point/3.0.0:
|
|
2810
|
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
2811
|
+
engines: {node: '>=8'}
|
|
2812
|
+
dev: true
|
|
2813
|
+
|
|
2814
|
+
/is-glob/4.0.3:
|
|
2815
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
2816
|
+
engines: {node: '>=0.10.0'}
|
|
2817
|
+
dependencies:
|
|
2818
|
+
is-extglob: 2.1.1
|
|
2819
|
+
dev: false
|
|
2820
|
+
|
|
2821
|
+
/is-lambda/1.0.1:
|
|
2822
|
+
resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
|
|
2823
|
+
dev: true
|
|
2824
|
+
|
|
2825
|
+
/is-number/7.0.0:
|
|
2826
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
2827
|
+
engines: {node: '>=0.12.0'}
|
|
2828
|
+
dev: false
|
|
2829
|
+
|
|
2830
|
+
/is-path-cwd/2.2.0:
|
|
2831
|
+
resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
|
|
2832
|
+
engines: {node: '>=6'}
|
|
2833
|
+
dev: false
|
|
2834
|
+
|
|
2835
|
+
/is-path-in-cwd/2.1.0:
|
|
2836
|
+
resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==}
|
|
2837
|
+
engines: {node: '>=6'}
|
|
2838
|
+
dependencies:
|
|
2839
|
+
is-path-inside: 2.1.0
|
|
2840
|
+
dev: false
|
|
2841
|
+
|
|
2842
|
+
/is-path-inside/2.1.0:
|
|
2843
|
+
resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==}
|
|
2844
|
+
engines: {node: '>=6'}
|
|
2845
|
+
dependencies:
|
|
2846
|
+
path-is-inside: 1.0.2
|
|
2847
|
+
dev: false
|
|
2848
|
+
|
|
2849
|
+
/is-plain-obj/1.1.0:
|
|
2850
|
+
resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
|
|
2851
|
+
engines: {node: '>=0.10.0'}
|
|
2852
|
+
dev: false
|
|
2853
|
+
|
|
2854
|
+
/is-plain-object/2.0.4:
|
|
2855
|
+
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
|
|
2856
|
+
engines: {node: '>=0.10.0'}
|
|
2857
|
+
dependencies:
|
|
2858
|
+
isobject: 3.0.1
|
|
2859
|
+
dev: false
|
|
2860
|
+
|
|
2861
|
+
/is-promise/2.2.2:
|
|
2862
|
+
resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
|
|
2863
|
+
dev: true
|
|
2864
|
+
|
|
2865
|
+
/isexe/2.0.0:
|
|
2866
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
2867
|
+
dev: true
|
|
2868
|
+
|
|
2869
|
+
/isobject/3.0.1:
|
|
2870
|
+
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
|
|
2871
|
+
engines: {node: '>=0.10.0'}
|
|
2872
|
+
dev: false
|
|
2873
|
+
|
|
2874
|
+
/jest-worker/27.5.1:
|
|
2875
|
+
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
|
|
2876
|
+
engines: {node: '>= 10.13.0'}
|
|
2877
|
+
dependencies:
|
|
2878
|
+
'@types/node': 18.11.9
|
|
2879
|
+
merge-stream: 2.0.0
|
|
2880
|
+
supports-color: 8.1.1
|
|
2881
|
+
dev: false
|
|
2882
|
+
|
|
2883
|
+
/jquery/3.6.1:
|
|
2884
|
+
resolution: {integrity: sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw==}
|
|
2885
|
+
dev: false
|
|
2886
|
+
|
|
2887
|
+
/js-beautify/1.14.7:
|
|
2888
|
+
resolution: {integrity: sha512-5SOX1KXPFKx+5f6ZrPsIPEY7NwKeQz47n3jm2i+XeHx9MoRsfQenlOP13FQhWvg8JRS0+XLO6XYUQ2GX+q+T9A==}
|
|
2889
|
+
engines: {node: '>=10'}
|
|
2890
|
+
hasBin: true
|
|
2891
|
+
dependencies:
|
|
2892
|
+
config-chain: 1.1.13
|
|
2893
|
+
editorconfig: 0.15.3
|
|
2894
|
+
glob: 8.0.3
|
|
2895
|
+
nopt: 6.0.0
|
|
2896
|
+
dev: true
|
|
2897
|
+
|
|
2898
|
+
/js-tokens/3.0.2:
|
|
2899
|
+
resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
|
|
2900
|
+
dev: false
|
|
2901
|
+
|
|
2902
|
+
/js-tokens/4.0.0:
|
|
2903
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
2904
|
+
dev: false
|
|
2905
|
+
|
|
2906
|
+
/jsesc/0.5.0:
|
|
2907
|
+
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
|
|
2908
|
+
hasBin: true
|
|
2909
|
+
dev: false
|
|
2910
|
+
|
|
2911
|
+
/jsesc/1.3.0:
|
|
2912
|
+
resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==}
|
|
2913
|
+
hasBin: true
|
|
2914
|
+
dev: false
|
|
2915
|
+
|
|
2916
|
+
/jsesc/2.5.2:
|
|
2917
|
+
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
|
|
2918
|
+
engines: {node: '>=4'}
|
|
2919
|
+
hasBin: true
|
|
2920
|
+
dev: false
|
|
2921
|
+
|
|
2922
|
+
/json-parse-even-better-errors/2.3.1:
|
|
2923
|
+
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
|
2924
|
+
dev: false
|
|
2925
|
+
|
|
2926
|
+
/json-schema-traverse/0.4.1:
|
|
2927
|
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
2928
|
+
dev: false
|
|
2929
|
+
|
|
2930
|
+
/json-schema-traverse/1.0.0:
|
|
2931
|
+
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
2932
|
+
dev: false
|
|
2933
|
+
|
|
2934
|
+
/json5/0.5.1:
|
|
2935
|
+
resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==}
|
|
2936
|
+
hasBin: true
|
|
2937
|
+
dev: false
|
|
2938
|
+
|
|
2939
|
+
/json5/1.0.1:
|
|
2940
|
+
resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
|
|
2941
|
+
hasBin: true
|
|
2942
|
+
dependencies:
|
|
2943
|
+
minimist: 1.2.7
|
|
2944
|
+
dev: false
|
|
2945
|
+
|
|
2946
|
+
/json5/2.2.1:
|
|
2947
|
+
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
|
|
2948
|
+
engines: {node: '>=6'}
|
|
2949
|
+
hasBin: true
|
|
2950
|
+
dev: false
|
|
2951
|
+
|
|
2952
|
+
/jsonfile/6.1.0:
|
|
2953
|
+
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
|
|
2954
|
+
dependencies:
|
|
2955
|
+
universalify: 2.0.0
|
|
2956
|
+
optionalDependencies:
|
|
2957
|
+
graceful-fs: 4.2.10
|
|
2958
|
+
dev: true
|
|
2959
|
+
|
|
2960
|
+
/kind-of/6.0.3:
|
|
2961
|
+
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
|
|
2962
|
+
engines: {node: '>=0.10.0'}
|
|
2963
|
+
dev: false
|
|
2964
|
+
|
|
2965
|
+
/klona/2.0.5:
|
|
2966
|
+
resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==}
|
|
2967
|
+
engines: {node: '>= 8'}
|
|
2968
|
+
dev: false
|
|
2969
|
+
|
|
2970
|
+
/loader-runner/4.3.0:
|
|
2971
|
+
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
|
|
2972
|
+
engines: {node: '>=6.11.5'}
|
|
2973
|
+
dev: false
|
|
2974
|
+
|
|
2975
|
+
/loader-utils/1.4.0:
|
|
2976
|
+
resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==}
|
|
2977
|
+
engines: {node: '>=4.0.0'}
|
|
2978
|
+
dependencies:
|
|
2979
|
+
big.js: 5.2.2
|
|
2980
|
+
emojis-list: 3.0.0
|
|
2981
|
+
json5: 1.0.1
|
|
2982
|
+
dev: false
|
|
2983
|
+
|
|
2984
|
+
/locate-path/5.0.0:
|
|
2985
|
+
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
|
|
2986
|
+
engines: {node: '>=8'}
|
|
2987
|
+
dependencies:
|
|
2988
|
+
p-locate: 4.1.0
|
|
2989
|
+
dev: false
|
|
2990
|
+
|
|
2991
|
+
/lodash.debounce/4.0.8:
|
|
2992
|
+
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
|
|
2993
|
+
dev: false
|
|
2994
|
+
|
|
2995
|
+
/lodash/4.17.21:
|
|
2996
|
+
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
|
2997
|
+
|
|
2998
|
+
/loose-envify/1.4.0:
|
|
2999
|
+
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
3000
|
+
hasBin: true
|
|
3001
|
+
dependencies:
|
|
3002
|
+
js-tokens: 4.0.0
|
|
3003
|
+
dev: false
|
|
3004
|
+
|
|
3005
|
+
/lower-case/2.0.2:
|
|
3006
|
+
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
|
|
3007
|
+
dependencies:
|
|
3008
|
+
tslib: 2.4.1
|
|
3009
|
+
dev: false
|
|
3010
|
+
|
|
3011
|
+
/lru-cache/4.1.5:
|
|
3012
|
+
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
|
|
3013
|
+
dependencies:
|
|
3014
|
+
pseudomap: 1.0.2
|
|
3015
|
+
yallist: 2.1.2
|
|
3016
|
+
dev: true
|
|
3017
|
+
|
|
3018
|
+
/lru-cache/6.0.0:
|
|
3019
|
+
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
|
|
3020
|
+
engines: {node: '>=10'}
|
|
3021
|
+
dependencies:
|
|
3022
|
+
yallist: 4.0.0
|
|
3023
|
+
|
|
3024
|
+
/lru-cache/7.14.0:
|
|
3025
|
+
resolution: {integrity: sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ==}
|
|
3026
|
+
engines: {node: '>=12'}
|
|
3027
|
+
dev: true
|
|
3028
|
+
|
|
3029
|
+
/lru-queue/0.1.0:
|
|
3030
|
+
resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
|
|
3031
|
+
dependencies:
|
|
3032
|
+
es5-ext: 0.10.62
|
|
3033
|
+
dev: true
|
|
3034
|
+
|
|
3035
|
+
/make-dir/3.1.0:
|
|
3036
|
+
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
|
|
3037
|
+
engines: {node: '>=8'}
|
|
3038
|
+
dependencies:
|
|
3039
|
+
semver: 6.3.0
|
|
3040
|
+
|
|
3041
|
+
/make-fetch-happen/10.2.1:
|
|
3042
|
+
resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==}
|
|
3043
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
3044
|
+
dependencies:
|
|
3045
|
+
agentkeepalive: 4.2.1
|
|
3046
|
+
cacache: 16.1.3
|
|
3047
|
+
http-cache-semantics: 4.1.0
|
|
3048
|
+
http-proxy-agent: 5.0.0
|
|
3049
|
+
https-proxy-agent: 5.0.1
|
|
3050
|
+
is-lambda: 1.0.1
|
|
3051
|
+
lru-cache: 7.14.0
|
|
3052
|
+
minipass: 3.3.4
|
|
3053
|
+
minipass-collect: 1.0.2
|
|
3054
|
+
minipass-fetch: 2.1.2
|
|
3055
|
+
minipass-flush: 1.0.5
|
|
3056
|
+
minipass-pipeline: 1.2.4
|
|
3057
|
+
negotiator: 0.6.3
|
|
3058
|
+
promise-retry: 2.0.1
|
|
3059
|
+
socks-proxy-agent: 7.0.0
|
|
3060
|
+
ssri: 9.0.1
|
|
3061
|
+
transitivePeerDependencies:
|
|
3062
|
+
- bluebird
|
|
3063
|
+
- supports-color
|
|
3064
|
+
dev: true
|
|
3065
|
+
|
|
3066
|
+
/memoizee/0.4.15:
|
|
3067
|
+
resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==}
|
|
3068
|
+
dependencies:
|
|
3069
|
+
d: 1.0.1
|
|
3070
|
+
es5-ext: 0.10.62
|
|
3071
|
+
es6-weak-map: 2.0.3
|
|
3072
|
+
event-emitter: 0.3.5
|
|
3073
|
+
is-promise: 2.2.2
|
|
3074
|
+
lru-queue: 0.1.0
|
|
3075
|
+
next-tick: 1.1.0
|
|
3076
|
+
timers-ext: 0.1.7
|
|
3077
|
+
dev: true
|
|
3078
|
+
|
|
3079
|
+
/merge-stream/2.0.0:
|
|
3080
|
+
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
|
|
3081
|
+
dev: false
|
|
3082
|
+
|
|
3083
|
+
/mime-db/1.52.0:
|
|
3084
|
+
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
3085
|
+
engines: {node: '>= 0.6'}
|
|
3086
|
+
dev: false
|
|
3087
|
+
|
|
3088
|
+
/mime-types/2.1.35:
|
|
3089
|
+
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
3090
|
+
engines: {node: '>= 0.6'}
|
|
3091
|
+
dependencies:
|
|
3092
|
+
mime-db: 1.52.0
|
|
3093
|
+
dev: false
|
|
3094
|
+
|
|
3095
|
+
/mini-css-extract-plugin/2.6.1_webpack@5.74.0:
|
|
3096
|
+
resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==}
|
|
3097
|
+
engines: {node: '>= 12.13.0'}
|
|
3098
|
+
peerDependencies:
|
|
3099
|
+
webpack: ^5.0.0
|
|
3100
|
+
dependencies:
|
|
3101
|
+
schema-utils: 4.0.0
|
|
3102
|
+
webpack: 5.74.0
|
|
3103
|
+
dev: false
|
|
3104
|
+
|
|
3105
|
+
/minimatch/3.1.2:
|
|
3106
|
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
3107
|
+
dependencies:
|
|
3108
|
+
brace-expansion: 1.1.11
|
|
3109
|
+
|
|
3110
|
+
/minimatch/5.1.0:
|
|
3111
|
+
resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==}
|
|
3112
|
+
engines: {node: '>=10'}
|
|
3113
|
+
dependencies:
|
|
3114
|
+
brace-expansion: 2.0.1
|
|
3115
|
+
dev: true
|
|
3116
|
+
|
|
3117
|
+
/minimist/1.2.7:
|
|
3118
|
+
resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==}
|
|
3119
|
+
dev: false
|
|
3120
|
+
|
|
3121
|
+
/minipass-collect/1.0.2:
|
|
3122
|
+
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
|
|
3123
|
+
engines: {node: '>= 8'}
|
|
3124
|
+
dependencies:
|
|
3125
|
+
minipass: 3.3.4
|
|
3126
|
+
dev: true
|
|
3127
|
+
|
|
3128
|
+
/minipass-fetch/2.1.2:
|
|
3129
|
+
resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
|
|
3130
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
3131
|
+
dependencies:
|
|
3132
|
+
minipass: 3.3.4
|
|
3133
|
+
minipass-sized: 1.0.3
|
|
3134
|
+
minizlib: 2.1.2
|
|
3135
|
+
optionalDependencies:
|
|
3136
|
+
encoding: 0.1.13
|
|
3137
|
+
dev: true
|
|
3138
|
+
|
|
3139
|
+
/minipass-flush/1.0.5:
|
|
3140
|
+
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
|
|
3141
|
+
engines: {node: '>= 8'}
|
|
3142
|
+
dependencies:
|
|
3143
|
+
minipass: 3.3.4
|
|
3144
|
+
dev: true
|
|
3145
|
+
|
|
3146
|
+
/minipass-pipeline/1.2.4:
|
|
3147
|
+
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
|
|
3148
|
+
engines: {node: '>=8'}
|
|
3149
|
+
dependencies:
|
|
3150
|
+
minipass: 3.3.4
|
|
3151
|
+
dev: true
|
|
3152
|
+
|
|
3153
|
+
/minipass-sized/1.0.3:
|
|
3154
|
+
resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
|
|
3155
|
+
engines: {node: '>=8'}
|
|
3156
|
+
dependencies:
|
|
3157
|
+
minipass: 3.3.4
|
|
3158
|
+
dev: true
|
|
3159
|
+
|
|
3160
|
+
/minipass/3.3.4:
|
|
3161
|
+
resolution: {integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==}
|
|
3162
|
+
engines: {node: '>=8'}
|
|
3163
|
+
dependencies:
|
|
3164
|
+
yallist: 4.0.0
|
|
3165
|
+
dev: true
|
|
3166
|
+
|
|
3167
|
+
/minizlib/2.1.2:
|
|
3168
|
+
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
|
|
3169
|
+
engines: {node: '>= 8'}
|
|
3170
|
+
dependencies:
|
|
3171
|
+
minipass: 3.3.4
|
|
3172
|
+
yallist: 4.0.0
|
|
3173
|
+
dev: true
|
|
3174
|
+
|
|
3175
|
+
/mkdirp/0.5.6:
|
|
3176
|
+
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
|
|
3177
|
+
hasBin: true
|
|
3178
|
+
dependencies:
|
|
3179
|
+
minimist: 1.2.7
|
|
3180
|
+
dev: false
|
|
3181
|
+
|
|
3182
|
+
/mkdirp/1.0.4:
|
|
3183
|
+
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
|
|
3184
|
+
engines: {node: '>=10'}
|
|
3185
|
+
hasBin: true
|
|
3186
|
+
dev: true
|
|
3187
|
+
|
|
3188
|
+
/mongoose-paginate-v2/1.7.1:
|
|
3189
|
+
resolution: {integrity: sha512-J8DJw3zRXcXOKoZv+RvO9tt5HotRnbo2iCR3lke+TtsQsYwQvbY3EgUkPqZXw6qCX2IByvXrW5SGNdAB0od/Cw==}
|
|
3190
|
+
engines: {node: '>=4.0.0'}
|
|
3191
|
+
dev: false
|
|
3192
|
+
|
|
3193
|
+
/ms/2.0.0:
|
|
3194
|
+
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
|
|
3195
|
+
dev: false
|
|
3196
|
+
|
|
3197
|
+
/ms/2.1.2:
|
|
3198
|
+
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
|
|
3199
|
+
|
|
3200
|
+
/ms/2.1.3:
|
|
3201
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
3202
|
+
dev: true
|
|
3203
|
+
|
|
3204
|
+
/nanoid/3.3.4:
|
|
3205
|
+
resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
|
|
3206
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
3207
|
+
hasBin: true
|
|
3208
|
+
dev: false
|
|
3209
|
+
|
|
3210
|
+
/negotiator/0.6.3:
|
|
3211
|
+
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
|
3212
|
+
engines: {node: '>= 0.6'}
|
|
3213
|
+
dev: true
|
|
3214
|
+
|
|
3215
|
+
/neo-async/2.6.2:
|
|
3216
|
+
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
|
|
3217
|
+
dev: false
|
|
3218
|
+
|
|
3219
|
+
/next-tick/1.1.0:
|
|
3220
|
+
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
|
|
3221
|
+
dev: true
|
|
3222
|
+
|
|
3223
|
+
/no-case/3.0.4:
|
|
3224
|
+
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
|
|
3225
|
+
dependencies:
|
|
3226
|
+
lower-case: 2.0.2
|
|
3227
|
+
tslib: 2.4.1
|
|
3228
|
+
dev: false
|
|
3229
|
+
|
|
3230
|
+
/node-fetch/2.6.7:
|
|
3231
|
+
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
|
|
3232
|
+
engines: {node: 4.x || >=6.0.0}
|
|
3233
|
+
peerDependencies:
|
|
3234
|
+
encoding: ^0.1.0
|
|
3235
|
+
peerDependenciesMeta:
|
|
3236
|
+
encoding:
|
|
3237
|
+
optional: true
|
|
3238
|
+
dependencies:
|
|
3239
|
+
whatwg-url: 5.0.0
|
|
3240
|
+
dev: true
|
|
3241
|
+
|
|
3242
|
+
/node-gyp/9.3.0:
|
|
3243
|
+
resolution: {integrity: sha512-A6rJWfXFz7TQNjpldJ915WFb1LnhO4lIve3ANPbWreuEoLoKlFT3sxIepPBkLhM27crW8YmN+pjlgbasH6cH/Q==}
|
|
3244
|
+
engines: {node: ^12.22 || ^14.13 || >=16}
|
|
3245
|
+
hasBin: true
|
|
3246
|
+
dependencies:
|
|
3247
|
+
env-paths: 2.2.1
|
|
3248
|
+
glob: 7.2.3
|
|
3249
|
+
graceful-fs: 4.2.10
|
|
3250
|
+
make-fetch-happen: 10.2.1
|
|
3251
|
+
nopt: 6.0.0
|
|
3252
|
+
npmlog: 6.0.2
|
|
3253
|
+
rimraf: 3.0.2
|
|
3254
|
+
semver: 7.3.8
|
|
3255
|
+
tar: 6.1.11
|
|
3256
|
+
which: 2.0.2
|
|
3257
|
+
transitivePeerDependencies:
|
|
3258
|
+
- bluebird
|
|
3259
|
+
- supports-color
|
|
3260
|
+
dev: true
|
|
3261
|
+
|
|
3262
|
+
/node-releases/2.0.6:
|
|
3263
|
+
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
|
|
3264
|
+
dev: false
|
|
3265
|
+
|
|
3266
|
+
/nopt/5.0.0:
|
|
3267
|
+
resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
|
|
3268
|
+
engines: {node: '>=6'}
|
|
3269
|
+
hasBin: true
|
|
3270
|
+
dependencies:
|
|
3271
|
+
abbrev: 1.1.1
|
|
3272
|
+
dev: true
|
|
3273
|
+
|
|
3274
|
+
/nopt/6.0.0:
|
|
3275
|
+
resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
|
|
3276
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
3277
|
+
hasBin: true
|
|
3278
|
+
dependencies:
|
|
3279
|
+
abbrev: 1.1.1
|
|
3280
|
+
dev: true
|
|
3281
|
+
|
|
3282
|
+
/normalize-path/3.0.0:
|
|
3283
|
+
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
|
3284
|
+
engines: {node: '>=0.10.0'}
|
|
3285
|
+
dev: false
|
|
3286
|
+
|
|
3287
|
+
/normalize-url/1.9.1:
|
|
3288
|
+
resolution: {integrity: sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==}
|
|
3289
|
+
engines: {node: '>=4'}
|
|
3290
|
+
dependencies:
|
|
3291
|
+
object-assign: 4.1.1
|
|
3292
|
+
prepend-http: 1.0.4
|
|
3293
|
+
query-string: 4.3.4
|
|
3294
|
+
sort-keys: 1.1.2
|
|
3295
|
+
dev: false
|
|
3296
|
+
|
|
3297
|
+
/npmlog/5.0.1:
|
|
3298
|
+
resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
|
|
3299
|
+
dependencies:
|
|
3300
|
+
are-we-there-yet: 2.0.0
|
|
3301
|
+
console-control-strings: 1.1.0
|
|
3302
|
+
gauge: 3.0.2
|
|
3303
|
+
set-blocking: 2.0.0
|
|
3304
|
+
dev: true
|
|
3305
|
+
|
|
3306
|
+
/npmlog/6.0.2:
|
|
3307
|
+
resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
|
|
3308
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
3309
|
+
dependencies:
|
|
3310
|
+
are-we-there-yet: 3.0.1
|
|
3311
|
+
console-control-strings: 1.1.0
|
|
3312
|
+
gauge: 4.0.4
|
|
3313
|
+
set-blocking: 2.0.0
|
|
3314
|
+
dev: true
|
|
3315
|
+
|
|
3316
|
+
/nth-check/2.1.1:
|
|
3317
|
+
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
|
|
3318
|
+
dependencies:
|
|
3319
|
+
boolbase: 1.0.0
|
|
3320
|
+
dev: false
|
|
3321
|
+
|
|
3322
|
+
/object-assign/4.1.1:
|
|
3323
|
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
|
3324
|
+
engines: {node: '>=0.10.0'}
|
|
3325
|
+
|
|
3326
|
+
/once/1.4.0:
|
|
3327
|
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
|
3328
|
+
dependencies:
|
|
3329
|
+
wrappy: 1.0.2
|
|
3330
|
+
|
|
3331
|
+
/os-homedir/1.0.2:
|
|
3332
|
+
resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
|
|
3333
|
+
engines: {node: '>=0.10.0'}
|
|
3334
|
+
dev: false
|
|
3335
|
+
|
|
3336
|
+
/os-tmpdir/1.0.2:
|
|
3337
|
+
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
|
|
3338
|
+
engines: {node: '>=0.10.0'}
|
|
3339
|
+
dev: false
|
|
3340
|
+
|
|
3341
|
+
/p-limit/2.3.0:
|
|
3342
|
+
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
|
|
3343
|
+
engines: {node: '>=6'}
|
|
3344
|
+
dependencies:
|
|
3345
|
+
p-try: 2.2.0
|
|
3346
|
+
dev: false
|
|
3347
|
+
|
|
3348
|
+
/p-locate/4.1.0:
|
|
3349
|
+
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
|
|
3350
|
+
engines: {node: '>=8'}
|
|
3351
|
+
dependencies:
|
|
3352
|
+
p-limit: 2.3.0
|
|
3353
|
+
dev: false
|
|
3354
|
+
|
|
3355
|
+
/p-map/2.1.0:
|
|
3356
|
+
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
|
|
3357
|
+
engines: {node: '>=6'}
|
|
3358
|
+
dev: false
|
|
3359
|
+
|
|
3360
|
+
/p-map/4.0.0:
|
|
3361
|
+
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
|
|
3362
|
+
engines: {node: '>=10'}
|
|
3363
|
+
dependencies:
|
|
3364
|
+
aggregate-error: 3.1.0
|
|
3365
|
+
dev: true
|
|
3366
|
+
|
|
3367
|
+
/p-try/2.2.0:
|
|
3368
|
+
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
|
|
3369
|
+
engines: {node: '>=6'}
|
|
3370
|
+
dev: false
|
|
3371
|
+
|
|
3372
|
+
/param-case/3.0.4:
|
|
3373
|
+
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
|
|
3374
|
+
dependencies:
|
|
3375
|
+
dot-case: 3.0.4
|
|
3376
|
+
tslib: 2.4.1
|
|
3377
|
+
dev: false
|
|
3378
|
+
|
|
3379
|
+
/pascal-case/3.1.2:
|
|
3380
|
+
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
|
|
3381
|
+
dependencies:
|
|
3382
|
+
no-case: 3.0.4
|
|
3383
|
+
tslib: 2.4.1
|
|
3384
|
+
dev: false
|
|
3385
|
+
|
|
3386
|
+
/path-exists/4.0.0:
|
|
3387
|
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
3388
|
+
engines: {node: '>=8'}
|
|
3389
|
+
dev: false
|
|
3390
|
+
|
|
3391
|
+
/path-is-absolute/1.0.1:
|
|
3392
|
+
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
|
3393
|
+
engines: {node: '>=0.10.0'}
|
|
3394
|
+
|
|
3395
|
+
/path-is-inside/1.0.2:
|
|
3396
|
+
resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
|
|
3397
|
+
dev: false
|
|
3398
|
+
|
|
3399
|
+
/path-parse/1.0.7:
|
|
3400
|
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
3401
|
+
|
|
3402
|
+
/picocolors/1.0.0:
|
|
3403
|
+
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
|
|
3404
|
+
dev: false
|
|
3405
|
+
|
|
3406
|
+
/picomatch/2.3.1:
|
|
3407
|
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
|
3408
|
+
engines: {node: '>=8.6'}
|
|
3409
|
+
dev: false
|
|
3410
|
+
|
|
3411
|
+
/pify/2.3.0:
|
|
3412
|
+
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
|
|
3413
|
+
engines: {node: '>=0.10.0'}
|
|
3414
|
+
dev: false
|
|
3415
|
+
|
|
3416
|
+
/pify/4.0.1:
|
|
3417
|
+
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
|
|
3418
|
+
engines: {node: '>=6'}
|
|
3419
|
+
dev: false
|
|
3420
|
+
|
|
3421
|
+
/pinkie-promise/2.0.1:
|
|
3422
|
+
resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
|
|
3423
|
+
engines: {node: '>=0.10.0'}
|
|
3424
|
+
dependencies:
|
|
3425
|
+
pinkie: 2.0.4
|
|
3426
|
+
dev: false
|
|
3427
|
+
|
|
3428
|
+
/pinkie/2.0.4:
|
|
3429
|
+
resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
|
|
3430
|
+
engines: {node: '>=0.10.0'}
|
|
3431
|
+
dev: false
|
|
3432
|
+
|
|
3433
|
+
/pkg-dir/4.2.0:
|
|
3434
|
+
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
|
|
3435
|
+
engines: {node: '>=8'}
|
|
3436
|
+
dependencies:
|
|
3437
|
+
find-up: 4.1.0
|
|
3438
|
+
dev: false
|
|
3439
|
+
|
|
3440
|
+
/postcss-modules-extract-imports/3.0.0_postcss@8.4.18:
|
|
3441
|
+
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
|
|
3442
|
+
engines: {node: ^10 || ^12 || >= 14}
|
|
3443
|
+
peerDependencies:
|
|
3444
|
+
postcss: ^8.1.0
|
|
3445
|
+
dependencies:
|
|
3446
|
+
postcss: 8.4.18
|
|
3447
|
+
dev: false
|
|
3448
|
+
|
|
3449
|
+
/postcss-modules-local-by-default/4.0.0_postcss@8.4.18:
|
|
3450
|
+
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
|
|
3451
|
+
engines: {node: ^10 || ^12 || >= 14}
|
|
3452
|
+
peerDependencies:
|
|
3453
|
+
postcss: ^8.1.0
|
|
3454
|
+
dependencies:
|
|
3455
|
+
icss-utils: 5.1.0_postcss@8.4.18
|
|
3456
|
+
postcss: 8.4.18
|
|
3457
|
+
postcss-selector-parser: 6.0.10
|
|
3458
|
+
postcss-value-parser: 4.2.0
|
|
3459
|
+
dev: false
|
|
3460
|
+
|
|
3461
|
+
/postcss-modules-scope/3.0.0_postcss@8.4.18:
|
|
3462
|
+
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
|
|
3463
|
+
engines: {node: ^10 || ^12 || >= 14}
|
|
3464
|
+
peerDependencies:
|
|
3465
|
+
postcss: ^8.1.0
|
|
3466
|
+
dependencies:
|
|
3467
|
+
postcss: 8.4.18
|
|
3468
|
+
postcss-selector-parser: 6.0.10
|
|
3469
|
+
dev: false
|
|
3470
|
+
|
|
3471
|
+
/postcss-modules-values/4.0.0_postcss@8.4.18:
|
|
3472
|
+
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
|
|
3473
|
+
engines: {node: ^10 || ^12 || >= 14}
|
|
3474
|
+
peerDependencies:
|
|
3475
|
+
postcss: ^8.1.0
|
|
3476
|
+
dependencies:
|
|
3477
|
+
icss-utils: 5.1.0_postcss@8.4.18
|
|
3478
|
+
postcss: 8.4.18
|
|
3479
|
+
dev: false
|
|
3480
|
+
|
|
3481
|
+
/postcss-selector-parser/6.0.10:
|
|
3482
|
+
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
|
|
3483
|
+
engines: {node: '>=4'}
|
|
3484
|
+
dependencies:
|
|
3485
|
+
cssesc: 3.0.0
|
|
3486
|
+
util-deprecate: 1.0.2
|
|
3487
|
+
dev: false
|
|
3488
|
+
|
|
3489
|
+
/postcss-value-parser/4.2.0:
|
|
3490
|
+
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
3491
|
+
dev: false
|
|
3492
|
+
|
|
3493
|
+
/postcss/8.4.18:
|
|
3494
|
+
resolution: {integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==}
|
|
3495
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
3496
|
+
dependencies:
|
|
3497
|
+
nanoid: 3.3.4
|
|
3498
|
+
picocolors: 1.0.0
|
|
3499
|
+
source-map-js: 1.0.2
|
|
3500
|
+
dev: false
|
|
3501
|
+
|
|
3502
|
+
/prepend-http/1.0.4:
|
|
3503
|
+
resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
|
|
3504
|
+
engines: {node: '>=0.10.0'}
|
|
3505
|
+
dev: false
|
|
3506
|
+
|
|
3507
|
+
/pretty-error/4.0.0:
|
|
3508
|
+
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
|
|
3509
|
+
dependencies:
|
|
3510
|
+
lodash: 4.17.21
|
|
3511
|
+
renderkid: 3.0.0
|
|
3512
|
+
dev: false
|
|
3513
|
+
|
|
3514
|
+
/private/0.1.8:
|
|
3515
|
+
resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==}
|
|
3516
|
+
engines: {node: '>= 0.6'}
|
|
3517
|
+
dev: false
|
|
3518
|
+
|
|
3519
|
+
/promise-inflight/1.0.1:
|
|
3520
|
+
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
|
|
3521
|
+
peerDependencies:
|
|
3522
|
+
bluebird: '*'
|
|
3523
|
+
peerDependenciesMeta:
|
|
3524
|
+
bluebird:
|
|
3525
|
+
optional: true
|
|
3526
|
+
dev: true
|
|
3527
|
+
|
|
3528
|
+
/promise-retry/2.0.1:
|
|
3529
|
+
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
|
|
3530
|
+
engines: {node: '>=10'}
|
|
3531
|
+
dependencies:
|
|
3532
|
+
err-code: 2.0.3
|
|
3533
|
+
retry: 0.12.0
|
|
3534
|
+
dev: true
|
|
3535
|
+
|
|
3536
|
+
/proto-list/1.2.4:
|
|
3537
|
+
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
|
|
3538
|
+
dev: true
|
|
3539
|
+
|
|
3540
|
+
/pseudomap/1.0.2:
|
|
3541
|
+
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
|
|
3542
|
+
dev: true
|
|
3543
|
+
|
|
3544
|
+
/punycode/2.1.1:
|
|
3545
|
+
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
|
|
3546
|
+
engines: {node: '>=6'}
|
|
3547
|
+
dev: false
|
|
3548
|
+
|
|
3549
|
+
/query-string/4.3.4:
|
|
3550
|
+
resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==}
|
|
3551
|
+
engines: {node: '>=0.10.0'}
|
|
3552
|
+
dependencies:
|
|
3553
|
+
object-assign: 4.1.1
|
|
3554
|
+
strict-uri-encode: 1.1.0
|
|
3555
|
+
dev: false
|
|
3556
|
+
|
|
3557
|
+
/randombytes/2.1.0:
|
|
3558
|
+
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
|
|
3559
|
+
dependencies:
|
|
3560
|
+
safe-buffer: 5.2.1
|
|
3561
|
+
dev: false
|
|
3562
|
+
|
|
3563
|
+
/readable-stream/3.6.0:
|
|
3564
|
+
resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
|
|
3565
|
+
engines: {node: '>= 6'}
|
|
3566
|
+
dependencies:
|
|
3567
|
+
inherits: 2.0.4
|
|
3568
|
+
string_decoder: 1.3.0
|
|
3569
|
+
util-deprecate: 1.0.2
|
|
3570
|
+
dev: true
|
|
3571
|
+
|
|
3572
|
+
/readdirp/3.6.0:
|
|
3573
|
+
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
3574
|
+
engines: {node: '>=8.10.0'}
|
|
3575
|
+
dependencies:
|
|
3576
|
+
picomatch: 2.3.1
|
|
3577
|
+
dev: false
|
|
3578
|
+
|
|
3579
|
+
/regenerate-unicode-properties/10.1.0:
|
|
3580
|
+
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
|
|
3581
|
+
engines: {node: '>=4'}
|
|
3582
|
+
dependencies:
|
|
3583
|
+
regenerate: 1.4.2
|
|
3584
|
+
dev: false
|
|
3585
|
+
|
|
3586
|
+
/regenerate/1.4.2:
|
|
3587
|
+
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
|
|
3588
|
+
dev: false
|
|
3589
|
+
|
|
3590
|
+
/regenerator-runtime/0.11.1:
|
|
3591
|
+
resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
|
|
3592
|
+
dev: false
|
|
3593
|
+
|
|
3594
|
+
/regenerator-runtime/0.13.10:
|
|
3595
|
+
resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==}
|
|
3596
|
+
dev: false
|
|
3597
|
+
|
|
3598
|
+
/regenerator-transform/0.15.0:
|
|
3599
|
+
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
|
|
3600
|
+
dependencies:
|
|
3601
|
+
'@babel/runtime': 7.20.0
|
|
3602
|
+
dev: false
|
|
3603
|
+
|
|
3604
|
+
/regexpu-core/5.2.1:
|
|
3605
|
+
resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==}
|
|
3606
|
+
engines: {node: '>=4'}
|
|
3607
|
+
dependencies:
|
|
3608
|
+
regenerate: 1.4.2
|
|
3609
|
+
regenerate-unicode-properties: 10.1.0
|
|
3610
|
+
regjsgen: 0.7.1
|
|
3611
|
+
regjsparser: 0.9.1
|
|
3612
|
+
unicode-match-property-ecmascript: 2.0.0
|
|
3613
|
+
unicode-match-property-value-ecmascript: 2.0.0
|
|
3614
|
+
dev: false
|
|
3615
|
+
|
|
3616
|
+
/regjsgen/0.7.1:
|
|
3617
|
+
resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==}
|
|
3618
|
+
dev: false
|
|
3619
|
+
|
|
3620
|
+
/regjsparser/0.9.1:
|
|
3621
|
+
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
|
|
3622
|
+
hasBin: true
|
|
3623
|
+
dependencies:
|
|
3624
|
+
jsesc: 0.5.0
|
|
3625
|
+
dev: false
|
|
3626
|
+
|
|
3627
|
+
/relateurl/0.2.7:
|
|
3628
|
+
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
|
|
3629
|
+
engines: {node: '>= 0.10'}
|
|
3630
|
+
dev: false
|
|
3631
|
+
|
|
3632
|
+
/renderkid/3.0.0:
|
|
3633
|
+
resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
|
|
3634
|
+
dependencies:
|
|
3635
|
+
css-select: 4.3.0
|
|
3636
|
+
dom-converter: 0.2.0
|
|
3637
|
+
htmlparser2: 6.1.0
|
|
3638
|
+
lodash: 4.17.21
|
|
3639
|
+
strip-ansi: 6.0.1
|
|
3640
|
+
dev: false
|
|
3641
|
+
|
|
3642
|
+
/repeating/2.0.1:
|
|
3643
|
+
resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==}
|
|
3644
|
+
engines: {node: '>=0.10.0'}
|
|
3645
|
+
dependencies:
|
|
3646
|
+
is-finite: 1.1.0
|
|
3647
|
+
dev: false
|
|
3648
|
+
|
|
3649
|
+
/require-directory/2.1.1:
|
|
3650
|
+
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
3651
|
+
engines: {node: '>=0.10.0'}
|
|
3652
|
+
dev: true
|
|
3653
|
+
|
|
3654
|
+
/require-from-string/2.0.2:
|
|
3655
|
+
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
3656
|
+
engines: {node: '>=0.10.0'}
|
|
3657
|
+
dev: false
|
|
3658
|
+
|
|
3659
|
+
/resolve/1.22.1:
|
|
3660
|
+
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
|
|
3661
|
+
hasBin: true
|
|
3662
|
+
dependencies:
|
|
3663
|
+
is-core-module: 2.11.0
|
|
3664
|
+
path-parse: 1.0.7
|
|
3665
|
+
supports-preserve-symlinks-flag: 1.0.0
|
|
3666
|
+
|
|
3667
|
+
/retry/0.12.0:
|
|
3668
|
+
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
|
|
3669
|
+
engines: {node: '>= 4'}
|
|
3670
|
+
dev: true
|
|
3671
|
+
|
|
3672
|
+
/rimraf/2.7.1:
|
|
3673
|
+
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
|
|
3674
|
+
hasBin: true
|
|
3675
|
+
dependencies:
|
|
3676
|
+
glob: 7.2.3
|
|
3677
|
+
dev: false
|
|
3678
|
+
|
|
3679
|
+
/rimraf/3.0.2:
|
|
3680
|
+
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
|
|
3681
|
+
hasBin: true
|
|
3682
|
+
dependencies:
|
|
3683
|
+
glob: 7.2.3
|
|
3684
|
+
dev: true
|
|
3685
|
+
|
|
3686
|
+
/safe-buffer/5.2.1:
|
|
3687
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
3688
|
+
|
|
3689
|
+
/safer-buffer/2.1.2:
|
|
3690
|
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
3691
|
+
dev: true
|
|
3692
|
+
optional: true
|
|
3693
|
+
|
|
3694
|
+
/sass-loader/13.1.0_sass@1.55.0+webpack@5.74.0:
|
|
3695
|
+
resolution: {integrity: sha512-tZS1RJQ2n2+QNyf3CCAo1H562WjL/5AM6Gi8YcPVVoNxQX8d19mx8E+8fRrMWsyc93ZL6Q8vZDSM0FHVTJaVnQ==}
|
|
3696
|
+
engines: {node: '>= 14.15.0'}
|
|
3697
|
+
peerDependencies:
|
|
3698
|
+
fibers: '>= 3.1.0'
|
|
3699
|
+
node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
|
3700
|
+
sass: ^1.3.0
|
|
3701
|
+
sass-embedded: '*'
|
|
3702
|
+
webpack: ^5.0.0
|
|
3703
|
+
peerDependenciesMeta:
|
|
3704
|
+
fibers:
|
|
3705
|
+
optional: true
|
|
3706
|
+
node-sass:
|
|
3707
|
+
optional: true
|
|
3708
|
+
sass:
|
|
3709
|
+
optional: true
|
|
3710
|
+
sass-embedded:
|
|
3711
|
+
optional: true
|
|
3712
|
+
dependencies:
|
|
3713
|
+
klona: 2.0.5
|
|
3714
|
+
neo-async: 2.6.2
|
|
3715
|
+
sass: 1.55.0
|
|
3716
|
+
webpack: 5.74.0
|
|
3717
|
+
dev: false
|
|
3718
|
+
|
|
3719
|
+
/sass/1.55.0:
|
|
3720
|
+
resolution: {integrity: sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==}
|
|
3721
|
+
engines: {node: '>=12.0.0'}
|
|
3722
|
+
hasBin: true
|
|
3723
|
+
dependencies:
|
|
3724
|
+
chokidar: 3.5.3
|
|
3725
|
+
immutable: 4.1.0
|
|
3726
|
+
source-map-js: 1.0.2
|
|
3727
|
+
dev: false
|
|
3728
|
+
|
|
3729
|
+
/schema-utils/3.1.1:
|
|
3730
|
+
resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
|
|
3731
|
+
engines: {node: '>= 10.13.0'}
|
|
3732
|
+
dependencies:
|
|
3733
|
+
'@types/json-schema': 7.0.11
|
|
3734
|
+
ajv: 6.12.6
|
|
3735
|
+
ajv-keywords: 3.5.2_ajv@6.12.6
|
|
3736
|
+
dev: false
|
|
3737
|
+
|
|
3738
|
+
/schema-utils/4.0.0:
|
|
3739
|
+
resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
|
|
3740
|
+
engines: {node: '>= 12.13.0'}
|
|
3741
|
+
dependencies:
|
|
3742
|
+
'@types/json-schema': 7.0.11
|
|
3743
|
+
ajv: 8.11.0
|
|
3744
|
+
ajv-formats: 2.1.1
|
|
3745
|
+
ajv-keywords: 5.1.0_ajv@8.11.0
|
|
3746
|
+
dev: false
|
|
3747
|
+
|
|
3748
|
+
/semver/5.7.1:
|
|
3749
|
+
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
|
|
3750
|
+
hasBin: true
|
|
3751
|
+
dev: true
|
|
3752
|
+
|
|
3753
|
+
/semver/6.3.0:
|
|
3754
|
+
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
|
|
3755
|
+
hasBin: true
|
|
3756
|
+
|
|
3757
|
+
/semver/7.3.8:
|
|
3758
|
+
resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
|
|
3759
|
+
engines: {node: '>=10'}
|
|
3760
|
+
hasBin: true
|
|
3761
|
+
dependencies:
|
|
3762
|
+
lru-cache: 6.0.0
|
|
3763
|
+
|
|
3764
|
+
/sequelize-cli/6.5.2:
|
|
3765
|
+
resolution: {integrity: sha512-ltXvQOxFFb9pVuDqPJYOS3/X32OVni9zK1S0d0JfloSjmCKZmMDFBWndZbcbJH0QBfyxTt7FLt/kSmKwTRlbsQ==}
|
|
3766
|
+
engines: {node: '>=10.0.0'}
|
|
3767
|
+
hasBin: true
|
|
3768
|
+
dependencies:
|
|
3769
|
+
cli-color: 2.0.3
|
|
3770
|
+
fs-extra: 9.1.0
|
|
3771
|
+
js-beautify: 1.14.7
|
|
3772
|
+
lodash: 4.17.21
|
|
3773
|
+
resolve: 1.22.1
|
|
3774
|
+
umzug: 2.3.0
|
|
3775
|
+
yargs: 16.2.0
|
|
3776
|
+
dev: true
|
|
3777
|
+
|
|
3778
|
+
/serialize-javascript/6.0.0:
|
|
3779
|
+
resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
|
|
3780
|
+
dependencies:
|
|
3781
|
+
randombytes: 2.1.0
|
|
3782
|
+
dev: false
|
|
3783
|
+
|
|
3784
|
+
/set-blocking/2.0.0:
|
|
3785
|
+
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
|
|
3786
|
+
dev: true
|
|
3787
|
+
|
|
3788
|
+
/shallow-clone/3.0.1:
|
|
3789
|
+
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
|
|
3790
|
+
engines: {node: '>=8'}
|
|
3791
|
+
dependencies:
|
|
3792
|
+
kind-of: 6.0.3
|
|
3793
|
+
dev: false
|
|
3794
|
+
|
|
3795
|
+
/sigmund/1.0.1:
|
|
3796
|
+
resolution: {integrity: sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==}
|
|
3797
|
+
dev: true
|
|
3798
|
+
|
|
3799
|
+
/signal-exit/3.0.7:
|
|
3800
|
+
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
|
|
3801
|
+
dev: true
|
|
3802
|
+
|
|
3803
|
+
/simple-html-tokenizer/0.1.1:
|
|
3804
|
+
resolution: {integrity: sha512-Mc/gH3RvlKvB/gkp9XwgDKEWrSYyefIJPGG8Jk1suZms/rISdUuVEMx5O1WBnTWaScvxXDvGJrZQWblUmQHjkQ==}
|
|
3805
|
+
dev: false
|
|
3806
|
+
|
|
3807
|
+
/slash/1.0.0:
|
|
3808
|
+
resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==}
|
|
3809
|
+
engines: {node: '>=0.10.0'}
|
|
3810
|
+
dev: false
|
|
3811
|
+
|
|
3812
|
+
/smart-buffer/4.2.0:
|
|
3813
|
+
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
|
|
3814
|
+
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
|
|
3815
|
+
dev: true
|
|
3816
|
+
|
|
3817
|
+
/socks-proxy-agent/7.0.0:
|
|
3818
|
+
resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==}
|
|
3819
|
+
engines: {node: '>= 10'}
|
|
3820
|
+
dependencies:
|
|
3821
|
+
agent-base: 6.0.2
|
|
3822
|
+
debug: 4.3.4
|
|
3823
|
+
socks: 2.7.1
|
|
3824
|
+
transitivePeerDependencies:
|
|
3825
|
+
- supports-color
|
|
3826
|
+
dev: true
|
|
3827
|
+
|
|
3828
|
+
/socks/2.7.1:
|
|
3829
|
+
resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
|
|
3830
|
+
engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
|
|
3831
|
+
dependencies:
|
|
3832
|
+
ip: 2.0.0
|
|
3833
|
+
smart-buffer: 4.2.0
|
|
3834
|
+
dev: true
|
|
3835
|
+
|
|
3836
|
+
/sort-keys/1.1.2:
|
|
3837
|
+
resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==}
|
|
3838
|
+
engines: {node: '>=0.10.0'}
|
|
3839
|
+
dependencies:
|
|
3840
|
+
is-plain-obj: 1.1.0
|
|
3841
|
+
dev: false
|
|
3842
|
+
|
|
3843
|
+
/source-map-js/1.0.2:
|
|
3844
|
+
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
|
|
3845
|
+
engines: {node: '>=0.10.0'}
|
|
3846
|
+
dev: false
|
|
3847
|
+
|
|
3848
|
+
/source-map-support/0.4.18:
|
|
3849
|
+
resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==}
|
|
3850
|
+
dependencies:
|
|
3851
|
+
source-map: 0.5.7
|
|
3852
|
+
dev: false
|
|
3853
|
+
|
|
3854
|
+
/source-map-support/0.5.21:
|
|
3855
|
+
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
|
|
3856
|
+
dependencies:
|
|
3857
|
+
buffer-from: 1.1.2
|
|
3858
|
+
source-map: 0.6.1
|
|
3859
|
+
dev: false
|
|
3860
|
+
|
|
3861
|
+
/source-map/0.5.7:
|
|
3862
|
+
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
|
|
3863
|
+
engines: {node: '>=0.10.0'}
|
|
3864
|
+
dev: false
|
|
3865
|
+
|
|
3866
|
+
/source-map/0.6.1:
|
|
3867
|
+
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
3868
|
+
engines: {node: '>=0.10.0'}
|
|
3869
|
+
dev: false
|
|
3870
|
+
|
|
3871
|
+
/ssri/9.0.1:
|
|
3872
|
+
resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==}
|
|
3873
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
3874
|
+
dependencies:
|
|
3875
|
+
minipass: 3.3.4
|
|
3876
|
+
dev: true
|
|
3877
|
+
|
|
3878
|
+
/stream/0.0.2:
|
|
3879
|
+
resolution: {integrity: sha512-gCq3NDI2P35B2n6t76YJuOp7d6cN/C7Rt0577l91wllh0sY9ZBuw9KaSGqH/b0hzn3CWWJbpbW0W0WvQ1H/Q7g==}
|
|
3880
|
+
dependencies:
|
|
3881
|
+
emitter-component: 1.1.1
|
|
3882
|
+
dev: true
|
|
3883
|
+
|
|
3884
|
+
/strict-uri-encode/1.1.0:
|
|
3885
|
+
resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
|
|
3886
|
+
engines: {node: '>=0.10.0'}
|
|
3887
|
+
dev: false
|
|
3888
|
+
|
|
3889
|
+
/string-width/4.2.3:
|
|
3890
|
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
3891
|
+
engines: {node: '>=8'}
|
|
3892
|
+
dependencies:
|
|
3893
|
+
emoji-regex: 8.0.0
|
|
3894
|
+
is-fullwidth-code-point: 3.0.0
|
|
3895
|
+
strip-ansi: 6.0.1
|
|
3896
|
+
dev: true
|
|
3897
|
+
|
|
3898
|
+
/string_decoder/1.3.0:
|
|
3899
|
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
3900
|
+
dependencies:
|
|
3901
|
+
safe-buffer: 5.2.1
|
|
3902
|
+
dev: true
|
|
3903
|
+
|
|
3904
|
+
/strip-ansi/3.0.1:
|
|
3905
|
+
resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
|
|
3906
|
+
engines: {node: '>=0.10.0'}
|
|
3907
|
+
dependencies:
|
|
3908
|
+
ansi-regex: 2.1.1
|
|
3909
|
+
dev: false
|
|
3910
|
+
|
|
3911
|
+
/strip-ansi/6.0.1:
|
|
3912
|
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
3913
|
+
engines: {node: '>=8'}
|
|
3914
|
+
dependencies:
|
|
3915
|
+
ansi-regex: 5.0.1
|
|
3916
|
+
|
|
3917
|
+
/strip-comments/2.0.1:
|
|
3918
|
+
resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==}
|
|
3919
|
+
engines: {node: '>=10'}
|
|
3920
|
+
dev: false
|
|
3921
|
+
|
|
3922
|
+
/style-loader/3.3.1_webpack@5.74.0:
|
|
3923
|
+
resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
|
|
3924
|
+
engines: {node: '>= 12.13.0'}
|
|
3925
|
+
peerDependencies:
|
|
3926
|
+
webpack: ^5.0.0
|
|
3927
|
+
dependencies:
|
|
3928
|
+
webpack: 5.74.0
|
|
3929
|
+
dev: false
|
|
3930
|
+
|
|
3931
|
+
/supports-color/2.0.0:
|
|
3932
|
+
resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
|
|
3933
|
+
engines: {node: '>=0.8.0'}
|
|
3934
|
+
dev: false
|
|
3935
|
+
|
|
3936
|
+
/supports-color/5.5.0:
|
|
3937
|
+
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
|
3938
|
+
engines: {node: '>=4'}
|
|
3939
|
+
dependencies:
|
|
3940
|
+
has-flag: 3.0.0
|
|
3941
|
+
dev: false
|
|
3942
|
+
|
|
3943
|
+
/supports-color/8.1.1:
|
|
3944
|
+
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
|
|
3945
|
+
engines: {node: '>=10'}
|
|
3946
|
+
dependencies:
|
|
3947
|
+
has-flag: 4.0.0
|
|
3948
|
+
dev: false
|
|
3949
|
+
|
|
3950
|
+
/supports-preserve-symlinks-flag/1.0.0:
|
|
3951
|
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
3952
|
+
engines: {node: '>= 0.4'}
|
|
3953
|
+
|
|
3954
|
+
/svg-inline-loader/0.8.2:
|
|
3955
|
+
resolution: {integrity: sha512-kbrcEh5n5JkypaSC152eGfGcnT4lkR0eSfvefaUJkLqgGjRQJyKDvvEE/CCv5aTSdfXuc+N98w16iAojhShI3g==}
|
|
3956
|
+
dependencies:
|
|
3957
|
+
loader-utils: 1.4.0
|
|
3958
|
+
object-assign: 4.1.1
|
|
3959
|
+
simple-html-tokenizer: 0.1.1
|
|
3960
|
+
dev: false
|
|
3961
|
+
|
|
3962
|
+
/tapable/2.2.1:
|
|
3963
|
+
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
|
|
3964
|
+
engines: {node: '>=6'}
|
|
3965
|
+
dev: false
|
|
3966
|
+
|
|
3967
|
+
/tar/6.1.11:
|
|
3968
|
+
resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==}
|
|
3969
|
+
engines: {node: '>= 10'}
|
|
3970
|
+
dependencies:
|
|
3971
|
+
chownr: 2.0.0
|
|
3972
|
+
fs-minipass: 2.1.0
|
|
3973
|
+
minipass: 3.3.4
|
|
3974
|
+
minizlib: 2.1.2
|
|
3975
|
+
mkdirp: 1.0.4
|
|
3976
|
+
yallist: 4.0.0
|
|
3977
|
+
dev: true
|
|
3978
|
+
|
|
3979
|
+
/terser-webpack-plugin/5.3.6_webpack@5.74.0:
|
|
3980
|
+
resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==}
|
|
3981
|
+
engines: {node: '>= 10.13.0'}
|
|
3982
|
+
peerDependencies:
|
|
3983
|
+
'@swc/core': '*'
|
|
3984
|
+
esbuild: '*'
|
|
3985
|
+
uglify-js: '*'
|
|
3986
|
+
webpack: ^5.1.0
|
|
3987
|
+
peerDependenciesMeta:
|
|
3988
|
+
'@swc/core':
|
|
3989
|
+
optional: true
|
|
3990
|
+
esbuild:
|
|
3991
|
+
optional: true
|
|
3992
|
+
uglify-js:
|
|
3993
|
+
optional: true
|
|
3994
|
+
dependencies:
|
|
3995
|
+
'@jridgewell/trace-mapping': 0.3.17
|
|
3996
|
+
jest-worker: 27.5.1
|
|
3997
|
+
schema-utils: 3.1.1
|
|
3998
|
+
serialize-javascript: 6.0.0
|
|
3999
|
+
terser: 5.15.1
|
|
4000
|
+
webpack: 5.74.0
|
|
4001
|
+
dev: false
|
|
4002
|
+
|
|
4003
|
+
/terser/5.15.1:
|
|
4004
|
+
resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==}
|
|
4005
|
+
engines: {node: '>=10'}
|
|
4006
|
+
hasBin: true
|
|
4007
|
+
dependencies:
|
|
4008
|
+
'@jridgewell/source-map': 0.3.2
|
|
4009
|
+
acorn: 8.8.1
|
|
4010
|
+
commander: 2.20.3
|
|
4011
|
+
source-map-support: 0.5.21
|
|
4012
|
+
dev: false
|
|
4013
|
+
|
|
4014
|
+
/timers-ext/0.1.7:
|
|
4015
|
+
resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==}
|
|
4016
|
+
dependencies:
|
|
4017
|
+
es5-ext: 0.10.62
|
|
4018
|
+
next-tick: 1.1.0
|
|
4019
|
+
dev: true
|
|
4020
|
+
|
|
4021
|
+
/to-fast-properties/1.0.3:
|
|
4022
|
+
resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==}
|
|
4023
|
+
engines: {node: '>=0.10.0'}
|
|
4024
|
+
dev: false
|
|
4025
|
+
|
|
4026
|
+
/to-fast-properties/2.0.0:
|
|
4027
|
+
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
|
|
4028
|
+
engines: {node: '>=4'}
|
|
4029
|
+
dev: false
|
|
4030
|
+
|
|
4031
|
+
/to-regex-range/5.0.1:
|
|
4032
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
4033
|
+
engines: {node: '>=8.0'}
|
|
4034
|
+
dependencies:
|
|
4035
|
+
is-number: 7.0.0
|
|
4036
|
+
dev: false
|
|
4037
|
+
|
|
4038
|
+
/tr46/0.0.3:
|
|
4039
|
+
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
|
|
4040
|
+
dev: true
|
|
4041
|
+
|
|
4042
|
+
/trim-right/1.0.1:
|
|
4043
|
+
resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==}
|
|
4044
|
+
engines: {node: '>=0.10.0'}
|
|
4045
|
+
dev: false
|
|
4046
|
+
|
|
4047
|
+
/tslib/2.4.1:
|
|
4048
|
+
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
|
|
4049
|
+
dev: false
|
|
4050
|
+
|
|
4051
|
+
/type/1.2.0:
|
|
4052
|
+
resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
|
|
4053
|
+
dev: true
|
|
4054
|
+
|
|
4055
|
+
/type/2.7.2:
|
|
4056
|
+
resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
|
|
4057
|
+
dev: true
|
|
4058
|
+
|
|
4059
|
+
/umzug/2.3.0:
|
|
4060
|
+
resolution: {integrity: sha512-Z274K+e8goZK8QJxmbRPhl89HPO1K+ORFtm6rySPhFKfKc5GHhqdzD0SGhSWHkzoXasqJuItdhorSvY7/Cgflw==}
|
|
4061
|
+
engines: {node: '>=6.0.0'}
|
|
4062
|
+
dependencies:
|
|
4063
|
+
bluebird: 3.7.2
|
|
4064
|
+
dev: true
|
|
4065
|
+
|
|
4066
|
+
/unicode-canonical-property-names-ecmascript/2.0.0:
|
|
4067
|
+
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
|
|
4068
|
+
engines: {node: '>=4'}
|
|
4069
|
+
dev: false
|
|
4070
|
+
|
|
4071
|
+
/unicode-match-property-ecmascript/2.0.0:
|
|
4072
|
+
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
|
|
4073
|
+
engines: {node: '>=4'}
|
|
4074
|
+
dependencies:
|
|
4075
|
+
unicode-canonical-property-names-ecmascript: 2.0.0
|
|
4076
|
+
unicode-property-aliases-ecmascript: 2.1.0
|
|
4077
|
+
dev: false
|
|
4078
|
+
|
|
4079
|
+
/unicode-match-property-value-ecmascript/2.0.0:
|
|
4080
|
+
resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==}
|
|
4081
|
+
engines: {node: '>=4'}
|
|
4082
|
+
dev: false
|
|
4083
|
+
|
|
4084
|
+
/unicode-property-aliases-ecmascript/2.1.0:
|
|
4085
|
+
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
|
|
4086
|
+
engines: {node: '>=4'}
|
|
4087
|
+
dev: false
|
|
4088
|
+
|
|
4089
|
+
/unique-filename/2.0.1:
|
|
4090
|
+
resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==}
|
|
4091
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
4092
|
+
dependencies:
|
|
4093
|
+
unique-slug: 3.0.0
|
|
4094
|
+
dev: true
|
|
4095
|
+
|
|
4096
|
+
/unique-slug/3.0.0:
|
|
4097
|
+
resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==}
|
|
4098
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
4099
|
+
dependencies:
|
|
4100
|
+
imurmurhash: 0.1.4
|
|
4101
|
+
dev: true
|
|
4102
|
+
|
|
4103
|
+
/universalify/2.0.0:
|
|
4104
|
+
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
|
|
4105
|
+
engines: {node: '>= 10.0.0'}
|
|
4106
|
+
dev: true
|
|
4107
|
+
|
|
4108
|
+
/update-browserslist-db/1.0.10_browserslist@4.21.4:
|
|
4109
|
+
resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
|
|
4110
|
+
hasBin: true
|
|
4111
|
+
peerDependencies:
|
|
4112
|
+
browserslist: '>= 4.21.0'
|
|
4113
|
+
dependencies:
|
|
4114
|
+
browserslist: 4.21.4
|
|
4115
|
+
escalade: 3.1.1
|
|
4116
|
+
picocolors: 1.0.0
|
|
4117
|
+
dev: false
|
|
4118
|
+
|
|
4119
|
+
/uri-js/4.4.1:
|
|
4120
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
4121
|
+
dependencies:
|
|
4122
|
+
punycode: 2.1.1
|
|
4123
|
+
dev: false
|
|
4124
|
+
|
|
4125
|
+
/util-deprecate/1.0.2:
|
|
4126
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
4127
|
+
|
|
4128
|
+
/utila/0.4.0:
|
|
4129
|
+
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
|
|
4130
|
+
dev: false
|
|
4131
|
+
|
|
4132
|
+
/watchpack/2.4.0:
|
|
4133
|
+
resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
|
|
4134
|
+
engines: {node: '>=10.13.0'}
|
|
4135
|
+
dependencies:
|
|
4136
|
+
glob-to-regexp: 0.4.1
|
|
4137
|
+
graceful-fs: 4.2.10
|
|
4138
|
+
dev: false
|
|
4139
|
+
|
|
4140
|
+
/webidl-conversions/3.0.1:
|
|
4141
|
+
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
|
|
4142
|
+
dev: true
|
|
4143
|
+
|
|
4144
|
+
/webpack-merge/5.8.0:
|
|
4145
|
+
resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
|
|
4146
|
+
engines: {node: '>=10.0.0'}
|
|
4147
|
+
dependencies:
|
|
4148
|
+
clone-deep: 4.0.1
|
|
4149
|
+
wildcard: 2.0.0
|
|
4150
|
+
dev: false
|
|
4151
|
+
|
|
4152
|
+
/webpack-sources/3.2.3:
|
|
4153
|
+
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
|
|
4154
|
+
engines: {node: '>=10.13.0'}
|
|
4155
|
+
dev: false
|
|
4156
|
+
|
|
4157
|
+
/webpack/5.74.0:
|
|
4158
|
+
resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==}
|
|
4159
|
+
engines: {node: '>=10.13.0'}
|
|
4160
|
+
hasBin: true
|
|
4161
|
+
peerDependencies:
|
|
4162
|
+
webpack-cli: '*'
|
|
4163
|
+
peerDependenciesMeta:
|
|
4164
|
+
webpack-cli:
|
|
4165
|
+
optional: true
|
|
4166
|
+
dependencies:
|
|
4167
|
+
'@types/eslint-scope': 3.7.4
|
|
4168
|
+
'@types/estree': 0.0.51
|
|
4169
|
+
'@webassemblyjs/ast': 1.11.1
|
|
4170
|
+
'@webassemblyjs/wasm-edit': 1.11.1
|
|
4171
|
+
'@webassemblyjs/wasm-parser': 1.11.1
|
|
4172
|
+
acorn: 8.8.1
|
|
4173
|
+
acorn-import-assertions: 1.8.0_acorn@8.8.1
|
|
4174
|
+
browserslist: 4.21.4
|
|
4175
|
+
chrome-trace-event: 1.0.3
|
|
4176
|
+
enhanced-resolve: 5.10.0
|
|
4177
|
+
es-module-lexer: 0.9.3
|
|
4178
|
+
eslint-scope: 5.1.1
|
|
4179
|
+
events: 3.3.0
|
|
4180
|
+
glob-to-regexp: 0.4.1
|
|
4181
|
+
graceful-fs: 4.2.10
|
|
4182
|
+
json-parse-even-better-errors: 2.3.1
|
|
4183
|
+
loader-runner: 4.3.0
|
|
4184
|
+
mime-types: 2.1.35
|
|
4185
|
+
neo-async: 2.6.2
|
|
4186
|
+
schema-utils: 3.1.1
|
|
4187
|
+
tapable: 2.2.1
|
|
4188
|
+
terser-webpack-plugin: 5.3.6_webpack@5.74.0
|
|
4189
|
+
watchpack: 2.4.0
|
|
4190
|
+
webpack-sources: 3.2.3
|
|
4191
|
+
transitivePeerDependencies:
|
|
4192
|
+
- '@swc/core'
|
|
4193
|
+
- esbuild
|
|
4194
|
+
- uglify-js
|
|
4195
|
+
dev: false
|
|
4196
|
+
|
|
4197
|
+
/whatwg-url/5.0.0:
|
|
4198
|
+
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
|
|
4199
|
+
dependencies:
|
|
4200
|
+
tr46: 0.0.3
|
|
4201
|
+
webidl-conversions: 3.0.1
|
|
4202
|
+
dev: true
|
|
4203
|
+
|
|
4204
|
+
/which/2.0.2:
|
|
4205
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
4206
|
+
engines: {node: '>= 8'}
|
|
4207
|
+
hasBin: true
|
|
4208
|
+
dependencies:
|
|
4209
|
+
isexe: 2.0.0
|
|
4210
|
+
dev: true
|
|
4211
|
+
|
|
4212
|
+
/wide-align/1.1.5:
|
|
4213
|
+
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
|
|
4214
|
+
dependencies:
|
|
4215
|
+
string-width: 4.2.3
|
|
4216
|
+
dev: true
|
|
4217
|
+
|
|
4218
|
+
/wildcard/2.0.0:
|
|
4219
|
+
resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
|
|
4220
|
+
dev: false
|
|
4221
|
+
|
|
4222
|
+
/wrap-ansi/7.0.0:
|
|
4223
|
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
|
4224
|
+
engines: {node: '>=10'}
|
|
4225
|
+
dependencies:
|
|
4226
|
+
ansi-styles: 4.3.0
|
|
4227
|
+
string-width: 4.2.3
|
|
4228
|
+
strip-ansi: 6.0.1
|
|
4229
|
+
dev: true
|
|
4230
|
+
|
|
4231
|
+
/wrappy/1.0.2:
|
|
4232
|
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
4233
|
+
|
|
4234
|
+
/y18n/5.0.8:
|
|
4235
|
+
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
|
|
4236
|
+
engines: {node: '>=10'}
|
|
4237
|
+
dev: true
|
|
4238
|
+
|
|
4239
|
+
/yallist/2.1.2:
|
|
4240
|
+
resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
|
|
4241
|
+
dev: true
|
|
4242
|
+
|
|
4243
|
+
/yallist/4.0.0:
|
|
4244
|
+
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
|
|
4245
|
+
|
|
4246
|
+
/yargs-parser/20.2.9:
|
|
4247
|
+
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
|
|
4248
|
+
engines: {node: '>=10'}
|
|
4249
|
+
dev: true
|
|
4250
|
+
|
|
4251
|
+
/yargs/16.2.0:
|
|
4252
|
+
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
|
|
4253
|
+
engines: {node: '>=10'}
|
|
4254
|
+
dependencies:
|
|
4255
|
+
cliui: 7.0.4
|
|
4256
|
+
escalade: 3.1.1
|
|
4257
|
+
get-caller-file: 2.0.5
|
|
4258
|
+
require-directory: 2.1.1
|
|
4259
|
+
string-width: 4.2.3
|
|
4260
|
+
y18n: 5.0.8
|
|
4261
|
+
yargs-parser: 20.2.9
|
|
4262
|
+
dev: true
|