station 0.0.97 → 0.0.100
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.
- checksums.yaml +4 -4
- data/Dockerfile +6 -5
- data/Gemfile +1 -1
- data/Gemfile.lock +1 -1
- data/lib/nexmo_developer/.ruby-version +1 -1
- data/lib/nexmo_developer/Dockerfile +1 -1
- data/lib/nexmo_developer/Gemfile +3 -3
- data/lib/nexmo_developer/Gemfile.lock +9 -9
- data/lib/nexmo_developer/app/controllers/dashboard_controller.rb +1 -1
- data/lib/nexmo_developer/version.rb +1 -1
- data/package.json +9 -9
- data/station.gemspec +2 -2
- data/yarn.lock +252 -228
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1198672d56a3ace978b43f205938e988880d40a0afa59b8d1dfad8848a483a01
|
|
4
|
+
data.tar.gz: e0ab45a38265a2bb41e44155cfcbf65523c2855bd83fcc1cd9a94b20ca50a2b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5675f2e4ced7defa9f14af7e9ecd4f88ab7304755ee58ac28f38e9bb070a733ad290a4d921bb29e9d677ff0f9c73d65c71348f346ba77b5810a1739049286ef6
|
|
7
|
+
data.tar.gz: 7129c6147f9d6b8ab673457a7b525b6dcf620917109c61771e3ba7f9b9cadb797cb9e248bd6c27c8d7f5a047f8d68981cbb2f5da4e1b526090c7921816e02b45
|
data/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM ruby:2.
|
|
1
|
+
FROM ruby:2.7.2-alpine AS build-env
|
|
2
2
|
ARG RAILS_ROOT=/station
|
|
3
3
|
ARG BUILD_PACKAGES="build-base curl-dev git"
|
|
4
4
|
ARG DEV_PACKAGES="postgresql-dev yaml-dev zlib-dev nodejs yarn"
|
|
@@ -19,11 +19,12 @@ COPY lib/nexmo_developer/Gemfile* package.json yarn.lock $RAILS_ROOT/
|
|
|
19
19
|
RUN bundle config --global frozen 1 \
|
|
20
20
|
&& gem update --system \
|
|
21
21
|
&& gem install bundler
|
|
22
|
+
|
|
22
23
|
RUN bundle install --without development:test:assets -j4 --retry 3 --path=vendor/bundle \
|
|
23
24
|
# Remove unneeded files (cached *.gem, *.o, *.c)
|
|
24
|
-
&& rm -rf vendor/bundle/ruby/2.
|
|
25
|
-
&& find vendor/bundle/ruby/2.
|
|
26
|
-
&& find vendor/bundle/ruby/2.
|
|
25
|
+
&& rm -rf vendor/bundle/ruby/2.7.0/cache/*.gem \
|
|
26
|
+
&& find vendor/bundle/ruby/2.7.0/gems/ -name "*.c" -delete \
|
|
27
|
+
&& find vendor/bundle/ruby/2.7.0/gems/ -name "*.o" -delete
|
|
27
28
|
|
|
28
29
|
# Install node dependencies
|
|
29
30
|
RUN yarn install --frozen-lockfile
|
|
@@ -36,7 +37,7 @@ RUN bundle exec rake assets:precompile
|
|
|
36
37
|
RUN rm -rf node_modules tmp/cache vendor/assets spec
|
|
37
38
|
|
|
38
39
|
################ Build step done ###############
|
|
39
|
-
FROM ruby:2.
|
|
40
|
+
FROM ruby:2.7.2-alpine
|
|
40
41
|
ARG RAILS_ROOT=/station
|
|
41
42
|
|
|
42
43
|
ENV RACK_ENV production
|
data/Gemfile
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
|
-
ruby '2.
|
|
2
|
+
ruby '2.7.2'
|
data/Gemfile.lock
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.7.2
|
data/lib/nexmo_developer/Gemfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
|
-
ruby '2.
|
|
2
|
+
ruby '2.7.2'
|
|
3
3
|
|
|
4
4
|
git_source(:github) do |repo_name|
|
|
5
5
|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
|
|
@@ -110,7 +110,7 @@ gem 'bootsnap', require: false
|
|
|
110
110
|
gem 'diffy', require: false
|
|
111
111
|
|
|
112
112
|
# Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.
|
|
113
|
-
gem 'rubocop', '~> 1.3.
|
|
113
|
+
gem 'rubocop', '~> 1.3.1', require: false
|
|
114
114
|
gem 'rubocop-rails', '~> 2.8', require: false
|
|
115
115
|
|
|
116
116
|
# Volta needs a CSS autoprefixer
|
|
@@ -129,7 +129,7 @@ gem 'lograge'
|
|
|
129
129
|
gem 'countries'
|
|
130
130
|
gem 'country_select', '~> 4.0'
|
|
131
131
|
|
|
132
|
-
gem 'nexmo-oas-renderer', '~> 2.4.
|
|
132
|
+
gem 'nexmo-oas-renderer', '~> 2.4.1', require: false
|
|
133
133
|
|
|
134
134
|
gem 'nexmo_markdown_renderer', '~> 0.5'
|
|
135
135
|
|
|
@@ -163,7 +163,7 @@ GEM
|
|
|
163
163
|
em-websocket (0.5.2)
|
|
164
164
|
eventmachine (>= 0.12.9)
|
|
165
165
|
http_parser.rb (~> 0.6.0)
|
|
166
|
-
erubi (1.
|
|
166
|
+
erubi (1.10.0)
|
|
167
167
|
eventmachine (1.2.7)
|
|
168
168
|
execjs (2.7.0)
|
|
169
169
|
factory_bot (6.1.0)
|
|
@@ -294,8 +294,8 @@ GEM
|
|
|
294
294
|
neatjson (0.9)
|
|
295
295
|
nenv (0.3.0)
|
|
296
296
|
netrc (0.11.0)
|
|
297
|
-
newrelic_rpm (6.
|
|
298
|
-
nexmo-oas-renderer (2.4.
|
|
297
|
+
newrelic_rpm (6.14.0)
|
|
298
|
+
nexmo-oas-renderer (2.4.1)
|
|
299
299
|
activemodel (~> 6.0)
|
|
300
300
|
activesupport (~> 6.0)
|
|
301
301
|
banzai (~> 0.1.2)
|
|
@@ -308,7 +308,7 @@ GEM
|
|
|
308
308
|
sass (~> 3.1)
|
|
309
309
|
shotgun (~> 0.9)
|
|
310
310
|
sinatra (~> 2.0)
|
|
311
|
-
nexmo_markdown_renderer (0.5.
|
|
311
|
+
nexmo_markdown_renderer (0.5.1)
|
|
312
312
|
activemodel (~> 6.0)
|
|
313
313
|
banzai (~> 0.1.2)
|
|
314
314
|
i18n (~> 1.7)
|
|
@@ -398,7 +398,7 @@ GEM
|
|
|
398
398
|
recaptcha (5.6.0)
|
|
399
399
|
json
|
|
400
400
|
redcarpet (3.4.0)
|
|
401
|
-
redis (4.2.
|
|
401
|
+
redis (4.2.5)
|
|
402
402
|
regexp_parser (1.8.2)
|
|
403
403
|
request_store (1.5.0)
|
|
404
404
|
rack (>= 1.4)
|
|
@@ -437,7 +437,7 @@ GEM
|
|
|
437
437
|
rspec-snapshot (0.1.2)
|
|
438
438
|
rspec (> 3.0.0)
|
|
439
439
|
rspec-support (3.10.0)
|
|
440
|
-
rubocop (1.3.
|
|
440
|
+
rubocop (1.3.1)
|
|
441
441
|
parallel (~> 1.10)
|
|
442
442
|
parser (>= 2.7.1.5)
|
|
443
443
|
rainbow (>= 2.2.2, < 4.0)
|
|
@@ -589,7 +589,7 @@ DEPENDENCIES
|
|
|
589
589
|
lograge
|
|
590
590
|
neatjson
|
|
591
591
|
newrelic_rpm
|
|
592
|
-
nexmo-oas-renderer (~> 2.4.
|
|
592
|
+
nexmo-oas-renderer (~> 2.4.1)
|
|
593
593
|
nexmo_markdown_renderer (~> 0.5)
|
|
594
594
|
nokogiri (~> 1.10.9)
|
|
595
595
|
octokit
|
|
@@ -605,7 +605,7 @@ DEPENDENCIES
|
|
|
605
605
|
rspec-collection_matchers
|
|
606
606
|
rspec-rails (~> 4.0)
|
|
607
607
|
rspec-snapshot (~> 0.1.2)
|
|
608
|
-
rubocop (~> 1.3.
|
|
608
|
+
rubocop (~> 1.3.1)
|
|
609
609
|
rubocop-rails (~> 2.8)
|
|
610
610
|
ruby-progressbar
|
|
611
611
|
sassc-rails (~> 2.1)
|
|
@@ -624,7 +624,7 @@ DEPENDENCIES
|
|
|
624
624
|
woothee
|
|
625
625
|
|
|
626
626
|
RUBY VERSION
|
|
627
|
-
ruby 2.
|
|
627
|
+
ruby 2.7.2p137
|
|
628
628
|
|
|
629
629
|
BUNDLED WITH
|
|
630
630
|
2.1.4
|
|
@@ -197,7 +197,7 @@ class DashboardController < ApplicationController
|
|
|
197
197
|
|
|
198
198
|
parts.insert(1, 'top-level') if parts.count < 3
|
|
199
199
|
|
|
200
|
-
parts = [parts[0], parts[1], parts[2
|
|
200
|
+
parts = [parts[0], parts[1], parts[2..].join('/')] if parts.count > 3
|
|
201
201
|
next if parts[0] == 'migrate'
|
|
202
202
|
|
|
203
203
|
x = @complete_coverage
|
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
|
-
"@babel/core": "^7.12.
|
|
3
|
+
"@babel/core": "^7.12.7",
|
|
4
4
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
|
5
5
|
"@babel/plugin-proposal-decorators": "^7.12.1",
|
|
6
6
|
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
|
|
12
12
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
13
13
|
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
|
14
|
-
"@babel/preset-env": "^7.12.
|
|
14
|
+
"@babel/preset-env": "^7.12.7",
|
|
15
15
|
"@rails/ujs": "^6.0.3-4",
|
|
16
16
|
"@rails/webpacker": "^5.2.1",
|
|
17
17
|
"@vonagevolta/volta2": "^0.0.56",
|
|
18
|
-
"algoliasearch": "^4.
|
|
18
|
+
"algoliasearch": "^4.8.0",
|
|
19
19
|
"autoprefixer": "^9.8.6",
|
|
20
20
|
"babel-loader": "^8.2.1",
|
|
21
21
|
"babel-preset-babili": "^0.1.4",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"css-loader": "^5.0.1",
|
|
26
26
|
"dotenv": "^8.2.0",
|
|
27
27
|
"file-loader": "^6.2.0",
|
|
28
|
-
"fetch-mock": "^9.
|
|
28
|
+
"fetch-mock": "^9.11.0",
|
|
29
29
|
"foundation-sites": "^6.6.3",
|
|
30
30
|
"glob": "^7.1.2",
|
|
31
31
|
"gsap": "^3.5.1",
|
|
32
32
|
"https-proxy-agent": "^5.0.0",
|
|
33
33
|
"jquery": "^3.5.0",
|
|
34
34
|
"js-yaml": "3.14.0",
|
|
35
|
-
"jsrsasign": "^10.
|
|
35
|
+
"jsrsasign": "^10.1.4",
|
|
36
36
|
"kind-of": "^6.0.3",
|
|
37
37
|
"lodash": "^4.17.20",
|
|
38
38
|
"markdown-spellcheck": "^1.3.1",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"postcss-smart-import": "^0.7.5",
|
|
44
44
|
"precss": "^4.0.0",
|
|
45
45
|
"prop-types": "^15.7.2",
|
|
46
|
-
"puppeteer": "^5.
|
|
46
|
+
"puppeteer": "^5.5.0",
|
|
47
47
|
"rails-erb-loader": "^5.1.0",
|
|
48
48
|
"resolve-url-loader": "^3.1.2",
|
|
49
49
|
"sass-loader": "^10.1.0",
|
|
@@ -74,12 +74,12 @@
|
|
|
74
74
|
"@vue/test-utils": "1.1.1",
|
|
75
75
|
"babel-core": "^7.0.0-bridge.0",
|
|
76
76
|
"babel-jest": "^26.6.3",
|
|
77
|
-
"eslint": "^7.
|
|
78
|
-
"eslint-config-standard": "^16.0.
|
|
77
|
+
"eslint": "^7.14.0",
|
|
78
|
+
"eslint-config-standard": "^16.0.2",
|
|
79
79
|
"eslint-plugin-import": "^2.22.1",
|
|
80
80
|
"eslint-plugin-node": "^11.1.0",
|
|
81
81
|
"eslint-plugin-promise": "^4.2.1",
|
|
82
|
-
"eslint-plugin-standard": "^
|
|
82
|
+
"eslint-plugin-standard": "^5.0.0",
|
|
83
83
|
"extract-text-webpack-plugin": "^3.0.2",
|
|
84
84
|
"flush-promises": "^1.0.2",
|
|
85
85
|
"jest": "^26.6.3",
|
data/station.gemspec
CHANGED
|
@@ -85,8 +85,8 @@ Gem::Specification.new do |spec|
|
|
|
85
85
|
spec.add_runtime_dependency('countries', '3.0.1')
|
|
86
86
|
spec.add_runtime_dependency('country_select', '4.0.0')
|
|
87
87
|
spec.add_runtime_dependency('smartling', '2.0.3')
|
|
88
|
-
spec.add_runtime_dependency('newrelic_rpm', '6.
|
|
89
|
-
spec.add_runtime_dependency('redis', '4.2.
|
|
88
|
+
spec.add_runtime_dependency('newrelic_rpm', '6.14.0')
|
|
89
|
+
spec.add_runtime_dependency('redis', '4.2.5')
|
|
90
90
|
|
|
91
91
|
spec.add_development_dependency('rubocop', '~> 1.3.0')
|
|
92
92
|
spec.add_development_dependency('rubocop-rails', '~> 2.6')
|
data/yarn.lock
CHANGED
|
@@ -2,109 +2,109 @@
|
|
|
2
2
|
# yarn lockfile v1
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
"@algolia/cache-browser-local-storage@4.
|
|
6
|
-
version "4.
|
|
7
|
-
resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.
|
|
8
|
-
integrity sha512-
|
|
5
|
+
"@algolia/cache-browser-local-storage@4.8.0":
|
|
6
|
+
version "4.8.0"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.8.0.tgz#42137b8e18474e8a94bd7206d7e4ada2daf5da04"
|
|
8
|
+
integrity sha512-VnI25yr+3LfCnHdp4YWWjdjtTseY3/hFwhp9vXBZLq+ZCbGpDiRjCNP9ZXLJELrtugk5tn2DpBGN2LWF4ZpKLg==
|
|
9
9
|
dependencies:
|
|
10
|
-
"@algolia/cache-common" "4.
|
|
10
|
+
"@algolia/cache-common" "4.8.0"
|
|
11
11
|
|
|
12
|
-
"@algolia/cache-common@4.
|
|
13
|
-
version "4.
|
|
14
|
-
resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.
|
|
15
|
-
integrity sha512-
|
|
12
|
+
"@algolia/cache-common@4.8.0":
|
|
13
|
+
version "4.8.0"
|
|
14
|
+
resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.8.0.tgz#fd57e4bfb75c93ae82c1cf047fa81511d720cfd9"
|
|
15
|
+
integrity sha512-68WmVpHOFerjDh7AqUZdGdZF/wR1kEmDv1o32Gcty00BIfHLAo8YuA7ijoTPhJh4fGWwR2gYIybO/WOmFhwK5Q==
|
|
16
16
|
|
|
17
|
-
"@algolia/cache-in-memory@4.
|
|
18
|
-
version "4.
|
|
19
|
-
resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.
|
|
20
|
-
integrity sha512-
|
|
17
|
+
"@algolia/cache-in-memory@4.8.0":
|
|
18
|
+
version "4.8.0"
|
|
19
|
+
resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.8.0.tgz#7716ec2dd797f890e69fb48e44add5ae1faa1ad3"
|
|
20
|
+
integrity sha512-m1uYLns8+PzlTy8xeXkM+p2sjFCJahYnrPj0s8ymU1bHgQC5qGp7rEz7o7zxElGYBeJ+f8tNiXrsnCnutASfNg==
|
|
21
21
|
dependencies:
|
|
22
|
-
"@algolia/cache-common" "4.
|
|
22
|
+
"@algolia/cache-common" "4.8.0"
|
|
23
23
|
|
|
24
|
-
"@algolia/client-account@4.
|
|
25
|
-
version "4.
|
|
26
|
-
resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.
|
|
27
|
-
integrity sha512-
|
|
24
|
+
"@algolia/client-account@4.8.0":
|
|
25
|
+
version "4.8.0"
|
|
26
|
+
resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.8.0.tgz#0b88d04a1733fc48b813db4e1d7a8226062ae79b"
|
|
27
|
+
integrity sha512-xNMfm7UPuPQpKtd5a2NB8j5LGockB4vsx+/0O9ZbboMKbDeucWa44CpXx7p0vPXW4SUgifCu7AFN//qXxIyxXg==
|
|
28
28
|
dependencies:
|
|
29
|
-
"@algolia/client-common" "4.
|
|
30
|
-
"@algolia/client-search" "4.
|
|
31
|
-
"@algolia/transporter" "4.
|
|
29
|
+
"@algolia/client-common" "4.8.0"
|
|
30
|
+
"@algolia/client-search" "4.8.0"
|
|
31
|
+
"@algolia/transporter" "4.8.0"
|
|
32
32
|
|
|
33
|
-
"@algolia/client-analytics@4.
|
|
34
|
-
version "4.
|
|
35
|
-
resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.
|
|
36
|
-
integrity sha512-
|
|
33
|
+
"@algolia/client-analytics@4.8.0":
|
|
34
|
+
version "4.8.0"
|
|
35
|
+
resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.8.0.tgz#3bd928f20e20c15feb0cb3741ac581bfb8aecd51"
|
|
36
|
+
integrity sha512-Zq+yjvN03E7sDvLer9NvGfab9WplckRCGjnyDcdk11rF1Bhht8adtbfyaO78Ftl2SujkvBMsnTF8THVf0Ewplg==
|
|
37
37
|
dependencies:
|
|
38
|
-
"@algolia/client-common" "4.
|
|
39
|
-
"@algolia/client-search" "4.
|
|
40
|
-
"@algolia/requester-common" "4.
|
|
41
|
-
"@algolia/transporter" "4.
|
|
38
|
+
"@algolia/client-common" "4.8.0"
|
|
39
|
+
"@algolia/client-search" "4.8.0"
|
|
40
|
+
"@algolia/requester-common" "4.8.0"
|
|
41
|
+
"@algolia/transporter" "4.8.0"
|
|
42
42
|
|
|
43
|
-
"@algolia/client-common@4.
|
|
44
|
-
version "4.
|
|
45
|
-
resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.
|
|
46
|
-
integrity sha512-
|
|
43
|
+
"@algolia/client-common@4.8.0":
|
|
44
|
+
version "4.8.0"
|
|
45
|
+
resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.8.0.tgz#3c3fcfa135fae2813d2be13e23282714cc306b98"
|
|
46
|
+
integrity sha512-tjth4GICsY/V3gFtzebH7fS9V9/dlLdKpMgjbrNeIDo+rB3vJtBYwguhUrVLl2x2H0Hu5ffN26VclXRHFpwslg==
|
|
47
47
|
dependencies:
|
|
48
|
-
"@algolia/requester-common" "4.
|
|
49
|
-
"@algolia/transporter" "4.
|
|
48
|
+
"@algolia/requester-common" "4.8.0"
|
|
49
|
+
"@algolia/transporter" "4.8.0"
|
|
50
50
|
|
|
51
|
-
"@algolia/client-recommendation@4.
|
|
52
|
-
version "4.
|
|
53
|
-
resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.
|
|
54
|
-
integrity sha512-
|
|
51
|
+
"@algolia/client-recommendation@4.8.0":
|
|
52
|
+
version "4.8.0"
|
|
53
|
+
resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.8.0.tgz#fbe6d49ad9a87ee0ffdd79491e1332a1711ebbd2"
|
|
54
|
+
integrity sha512-HdKBNRYVrFhyX3oPZg+LT1peO7tMawFYtiMHGoHFyR0PHfqMIw305NAErV+jGo3WmLJuyt4ywNrTtQnwFd+YYw==
|
|
55
55
|
dependencies:
|
|
56
|
-
"@algolia/client-common" "4.
|
|
57
|
-
"@algolia/requester-common" "4.
|
|
58
|
-
"@algolia/transporter" "4.
|
|
56
|
+
"@algolia/client-common" "4.8.0"
|
|
57
|
+
"@algolia/requester-common" "4.8.0"
|
|
58
|
+
"@algolia/transporter" "4.8.0"
|
|
59
59
|
|
|
60
|
-
"@algolia/client-search@4.
|
|
61
|
-
version "4.
|
|
62
|
-
resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.
|
|
63
|
-
integrity sha512
|
|
60
|
+
"@algolia/client-search@4.8.0":
|
|
61
|
+
version "4.8.0"
|
|
62
|
+
resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.8.0.tgz#be9021adcb958f9e5478159e38f741b98e88f8ca"
|
|
63
|
+
integrity sha512-emfW9q/uqO4FmB7vLipLk+O/m4BKsAZ7Yaaamawv35kw1HqfBdJZZbIUcg5aGz45SIUdA36WIuT7JiRdrCfxBA==
|
|
64
64
|
dependencies:
|
|
65
|
-
"@algolia/client-common" "4.
|
|
66
|
-
"@algolia/requester-common" "4.
|
|
67
|
-
"@algolia/transporter" "4.
|
|
65
|
+
"@algolia/client-common" "4.8.0"
|
|
66
|
+
"@algolia/requester-common" "4.8.0"
|
|
67
|
+
"@algolia/transporter" "4.8.0"
|
|
68
68
|
|
|
69
|
-
"@algolia/logger-common@4.
|
|
70
|
-
version "4.
|
|
71
|
-
resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.
|
|
72
|
-
integrity sha512-
|
|
69
|
+
"@algolia/logger-common@4.8.0":
|
|
70
|
+
version "4.8.0"
|
|
71
|
+
resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.8.0.tgz#ef5541a39bc13cf2a8b024f8f3dc6e35b08bbffe"
|
|
72
|
+
integrity sha512-6kewiORcU2a56hJOo5+Q91SF2ynk5H89jmfnNsveHdl3PPaOKJSsb9tqIErOZyv911zeeK6bVTCHllYeeJkxsg==
|
|
73
73
|
|
|
74
|
-
"@algolia/logger-console@4.
|
|
75
|
-
version "4.
|
|
76
|
-
resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.
|
|
77
|
-
integrity sha512-
|
|
74
|
+
"@algolia/logger-console@4.8.0":
|
|
75
|
+
version "4.8.0"
|
|
76
|
+
resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.8.0.tgz#4c2dd4c66788f7e47b91fe027c129f20c3006146"
|
|
77
|
+
integrity sha512-K1E/ppSHo5+215tj2G2N4LNjQLYjh6NfRDlAD30x9M6BbTSDI8tf12CgiPBe6wmdj8IQLzA2+5od8MSZKBpUMA==
|
|
78
78
|
dependencies:
|
|
79
|
-
"@algolia/logger-common" "4.
|
|
79
|
+
"@algolia/logger-common" "4.8.0"
|
|
80
80
|
|
|
81
|
-
"@algolia/requester-browser-xhr@4.
|
|
82
|
-
version "4.
|
|
83
|
-
resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.
|
|
84
|
-
integrity sha512-
|
|
81
|
+
"@algolia/requester-browser-xhr@4.8.0":
|
|
82
|
+
version "4.8.0"
|
|
83
|
+
resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.8.0.tgz#30c59783ea865504aa843eb6ba49daf92bbfb6d1"
|
|
84
|
+
integrity sha512-BCKwuGQX+HujFeTpJdA9VwSFyjvmyz1wYdoYcCxgROWrM8QRCxxFvGUKCCjvkRf1vuqz/6xoSTsysZyKFkcjTA==
|
|
85
85
|
dependencies:
|
|
86
|
-
"@algolia/requester-common" "4.
|
|
86
|
+
"@algolia/requester-common" "4.8.0"
|
|
87
87
|
|
|
88
|
-
"@algolia/requester-common@4.
|
|
89
|
-
version "4.
|
|
90
|
-
resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.
|
|
91
|
-
integrity sha512-
|
|
88
|
+
"@algolia/requester-common@4.8.0":
|
|
89
|
+
version "4.8.0"
|
|
90
|
+
resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.8.0.tgz#515d46294ec14a982ea75ac9ce97e20566c1c576"
|
|
91
|
+
integrity sha512-JKjlHPZU43rTcyvANHh5ctYRNXIZea2g5A33YPlrCXFJb3BBqS/H0ssFNyEwp8SJxJR3uUHl3m6DJpvuA7RtHg==
|
|
92
92
|
|
|
93
|
-
"@algolia/requester-node-http@4.
|
|
94
|
-
version "4.
|
|
95
|
-
resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.
|
|
96
|
-
integrity sha512-
|
|
93
|
+
"@algolia/requester-node-http@4.8.0":
|
|
94
|
+
version "4.8.0"
|
|
95
|
+
resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.8.0.tgz#7bf308a91f7b1854df91c5855fa9313949a70607"
|
|
96
|
+
integrity sha512-OSX00OXT/SWTmVwi7bkfSoGJdo9zwUHb1o0j71WbIdt8NH1KVZdC1mFfyRPp5mN2pi02brm3tv9NGNCeaLgLvQ==
|
|
97
97
|
dependencies:
|
|
98
|
-
"@algolia/requester-common" "4.
|
|
98
|
+
"@algolia/requester-common" "4.8.0"
|
|
99
99
|
|
|
100
|
-
"@algolia/transporter@4.
|
|
101
|
-
version "4.
|
|
102
|
-
resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.
|
|
103
|
-
integrity sha512-
|
|
100
|
+
"@algolia/transporter@4.8.0":
|
|
101
|
+
version "4.8.0"
|
|
102
|
+
resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.8.0.tgz#4ddf9db11c946ddbbd640ad3bced38147734a24a"
|
|
103
|
+
integrity sha512-fYYXUMQ5avvW1a1vLdQX8qRiPxUv3C1+DAw0nWDqfhHAesQtgwsibRmuQV9XVs3hpmRwiZbavzD+dXbhkY/XCQ==
|
|
104
104
|
dependencies:
|
|
105
|
-
"@algolia/cache-common" "4.
|
|
106
|
-
"@algolia/logger-common" "4.
|
|
107
|
-
"@algolia/requester-common" "4.
|
|
105
|
+
"@algolia/cache-common" "4.8.0"
|
|
106
|
+
"@algolia/logger-common" "4.8.0"
|
|
107
|
+
"@algolia/requester-common" "4.8.0"
|
|
108
108
|
|
|
109
109
|
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
|
|
110
110
|
version "7.10.4"
|
|
@@ -113,24 +113,24 @@
|
|
|
113
113
|
dependencies:
|
|
114
114
|
"@babel/highlight" "^7.10.4"
|
|
115
115
|
|
|
116
|
-
"@babel/compat-data@^7.12.
|
|
117
|
-
version "7.12.
|
|
118
|
-
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.
|
|
119
|
-
integrity sha512-
|
|
116
|
+
"@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7":
|
|
117
|
+
version "7.12.7"
|
|
118
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41"
|
|
119
|
+
integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==
|
|
120
120
|
|
|
121
|
-
"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.
|
|
122
|
-
version "7.12.
|
|
123
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.
|
|
124
|
-
integrity sha512-
|
|
121
|
+
"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.7", "@babel/core@^7.5.5", "@babel/core@^7.7.5":
|
|
122
|
+
version "7.12.7"
|
|
123
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.7.tgz#bf55363c08c8352a37691f7216ec30090bf7e3bf"
|
|
124
|
+
integrity sha512-tRKx9B53kJe8NCGGIxEQb2Bkr0riUIEuN7Sc1fxhs5H8lKlCWUvQCSNMVIB0Meva7hcbCRJ76de15KoLltdoqw==
|
|
125
125
|
dependencies:
|
|
126
126
|
"@babel/code-frame" "^7.10.4"
|
|
127
|
-
"@babel/generator" "^7.12.
|
|
127
|
+
"@babel/generator" "^7.12.5"
|
|
128
128
|
"@babel/helper-module-transforms" "^7.12.1"
|
|
129
|
-
"@babel/helpers" "^7.12.
|
|
130
|
-
"@babel/parser" "^7.12.
|
|
131
|
-
"@babel/template" "^7.
|
|
132
|
-
"@babel/traverse" "^7.12.
|
|
133
|
-
"@babel/types" "^7.12.
|
|
129
|
+
"@babel/helpers" "^7.12.5"
|
|
130
|
+
"@babel/parser" "^7.12.7"
|
|
131
|
+
"@babel/template" "^7.12.7"
|
|
132
|
+
"@babel/traverse" "^7.12.7"
|
|
133
|
+
"@babel/types" "^7.12.7"
|
|
134
134
|
convert-source-map "^1.7.0"
|
|
135
135
|
debug "^4.1.0"
|
|
136
136
|
gensync "^1.0.0-beta.1"
|
|
@@ -140,12 +140,12 @@
|
|
|
140
140
|
semver "^5.4.1"
|
|
141
141
|
source-map "^0.5.0"
|
|
142
142
|
|
|
143
|
-
"@babel/generator@^7.12.
|
|
144
|
-
version "7.12.
|
|
145
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.
|
|
146
|
-
integrity sha512-
|
|
143
|
+
"@babel/generator@^7.12.5":
|
|
144
|
+
version "7.12.5"
|
|
145
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de"
|
|
146
|
+
integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==
|
|
147
147
|
dependencies:
|
|
148
|
-
"@babel/types" "^7.12.
|
|
148
|
+
"@babel/types" "^7.12.5"
|
|
149
149
|
jsesc "^2.5.1"
|
|
150
150
|
source-map "^0.5.0"
|
|
151
151
|
|
|
@@ -164,14 +164,14 @@
|
|
|
164
164
|
"@babel/helper-explode-assignable-expression" "^7.10.4"
|
|
165
165
|
"@babel/types" "^7.10.4"
|
|
166
166
|
|
|
167
|
-
"@babel/helper-compilation-targets@^7.12.
|
|
168
|
-
version "7.12.
|
|
169
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.
|
|
170
|
-
integrity sha512
|
|
167
|
+
"@babel/helper-compilation-targets@^7.12.5":
|
|
168
|
+
version "7.12.5"
|
|
169
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831"
|
|
170
|
+
integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==
|
|
171
171
|
dependencies:
|
|
172
|
-
"@babel/compat-data" "^7.12.
|
|
172
|
+
"@babel/compat-data" "^7.12.5"
|
|
173
173
|
"@babel/helper-validator-option" "^7.12.1"
|
|
174
|
-
browserslist "^4.
|
|
174
|
+
browserslist "^4.14.5"
|
|
175
175
|
semver "^5.5.0"
|
|
176
176
|
|
|
177
177
|
"@babel/helper-create-class-features-plugin@^7.12.1":
|
|
@@ -241,12 +241,12 @@
|
|
|
241
241
|
dependencies:
|
|
242
242
|
"@babel/types" "^7.12.1"
|
|
243
243
|
|
|
244
|
-
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.1":
|
|
245
|
-
version "7.12.
|
|
246
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.
|
|
247
|
-
integrity sha512-
|
|
244
|
+
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5":
|
|
245
|
+
version "7.12.5"
|
|
246
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb"
|
|
247
|
+
integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
|
|
248
248
|
dependencies:
|
|
249
|
-
"@babel/types" "^7.12.
|
|
249
|
+
"@babel/types" "^7.12.5"
|
|
250
250
|
|
|
251
251
|
"@babel/helper-module-transforms@^7.12.1":
|
|
252
252
|
version "7.12.1"
|
|
@@ -342,14 +342,14 @@
|
|
|
342
342
|
"@babel/traverse" "^7.10.4"
|
|
343
343
|
"@babel/types" "^7.10.4"
|
|
344
344
|
|
|
345
|
-
"@babel/helpers@^7.12.
|
|
346
|
-
version "7.12.
|
|
347
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.
|
|
348
|
-
integrity sha512-
|
|
345
|
+
"@babel/helpers@^7.12.5":
|
|
346
|
+
version "7.12.5"
|
|
347
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e"
|
|
348
|
+
integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
|
|
349
349
|
dependencies:
|
|
350
350
|
"@babel/template" "^7.10.4"
|
|
351
|
-
"@babel/traverse" "^7.12.
|
|
352
|
-
"@babel/types" "^7.12.
|
|
351
|
+
"@babel/traverse" "^7.12.5"
|
|
352
|
+
"@babel/types" "^7.12.5"
|
|
353
353
|
|
|
354
354
|
"@babel/highlight@^7.10.4":
|
|
355
355
|
version "7.10.4"
|
|
@@ -360,10 +360,10 @@
|
|
|
360
360
|
chalk "^2.0.0"
|
|
361
361
|
js-tokens "^4.0.0"
|
|
362
362
|
|
|
363
|
-
"@babel/parser@^7.1.0", "@babel/parser@^7.
|
|
364
|
-
version "7.12.
|
|
365
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.
|
|
366
|
-
integrity sha512-
|
|
363
|
+
"@babel/parser@^7.1.0", "@babel/parser@^7.12.7":
|
|
364
|
+
version "7.12.7"
|
|
365
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056"
|
|
366
|
+
integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==
|
|
367
367
|
|
|
368
368
|
"@babel/plugin-proposal-async-generator-functions@^7.12.1":
|
|
369
369
|
version "7.12.1"
|
|
@@ -448,10 +448,10 @@
|
|
|
448
448
|
"@babel/helper-plugin-utils" "^7.10.4"
|
|
449
449
|
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
|
450
450
|
|
|
451
|
-
"@babel/plugin-proposal-numeric-separator@^7.12.
|
|
452
|
-
version "7.12.
|
|
453
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.
|
|
454
|
-
integrity sha512-
|
|
451
|
+
"@babel/plugin-proposal-numeric-separator@^7.12.5", "@babel/plugin-proposal-numeric-separator@^7.12.7":
|
|
452
|
+
version "7.12.7"
|
|
453
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b"
|
|
454
|
+
integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
|
|
455
455
|
dependencies:
|
|
456
456
|
"@babel/helper-plugin-utils" "^7.10.4"
|
|
457
457
|
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
|
@@ -473,10 +473,10 @@
|
|
|
473
473
|
"@babel/helper-plugin-utils" "^7.10.4"
|
|
474
474
|
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
|
475
475
|
|
|
476
|
-
"@babel/plugin-proposal-optional-chaining@^7.12.
|
|
477
|
-
version "7.12.
|
|
478
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.
|
|
479
|
-
integrity sha512-
|
|
476
|
+
"@babel/plugin-proposal-optional-chaining@^7.12.7":
|
|
477
|
+
version "7.12.7"
|
|
478
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c"
|
|
479
|
+
integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
|
|
480
480
|
dependencies:
|
|
481
481
|
"@babel/helper-plugin-utils" "^7.10.4"
|
|
482
482
|
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
|
@@ -855,13 +855,12 @@
|
|
|
855
855
|
"@babel/helper-plugin-utils" "^7.10.4"
|
|
856
856
|
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
|
857
857
|
|
|
858
|
-
"@babel/plugin-transform-sticky-regex@^7.12.
|
|
859
|
-
version "7.12.
|
|
860
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.
|
|
861
|
-
integrity sha512-
|
|
858
|
+
"@babel/plugin-transform-sticky-regex@^7.12.7":
|
|
859
|
+
version "7.12.7"
|
|
860
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad"
|
|
861
|
+
integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==
|
|
862
862
|
dependencies:
|
|
863
863
|
"@babel/helper-plugin-utils" "^7.10.4"
|
|
864
|
-
"@babel/helper-regex" "^7.10.4"
|
|
865
864
|
|
|
866
865
|
"@babel/plugin-transform-template-literals@^7.12.1":
|
|
867
866
|
version "7.12.1"
|
|
@@ -900,14 +899,14 @@
|
|
|
900
899
|
core-js "^2.6.5"
|
|
901
900
|
regenerator-runtime "^0.13.4"
|
|
902
901
|
|
|
903
|
-
"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.
|
|
904
|
-
version "7.12.
|
|
905
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.
|
|
906
|
-
integrity sha512-
|
|
902
|
+
"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.7":
|
|
903
|
+
version "7.12.7"
|
|
904
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.7.tgz#54ea21dbe92caf6f10cb1a0a576adc4ebf094b55"
|
|
905
|
+
integrity sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==
|
|
907
906
|
dependencies:
|
|
908
|
-
"@babel/compat-data" "^7.12.
|
|
909
|
-
"@babel/helper-compilation-targets" "^7.12.
|
|
910
|
-
"@babel/helper-module-imports" "^7.12.
|
|
907
|
+
"@babel/compat-data" "^7.12.7"
|
|
908
|
+
"@babel/helper-compilation-targets" "^7.12.5"
|
|
909
|
+
"@babel/helper-module-imports" "^7.12.5"
|
|
911
910
|
"@babel/helper-plugin-utils" "^7.10.4"
|
|
912
911
|
"@babel/helper-validator-option" "^7.12.1"
|
|
913
912
|
"@babel/plugin-proposal-async-generator-functions" "^7.12.1"
|
|
@@ -917,10 +916,10 @@
|
|
|
917
916
|
"@babel/plugin-proposal-json-strings" "^7.12.1"
|
|
918
917
|
"@babel/plugin-proposal-logical-assignment-operators" "^7.12.1"
|
|
919
918
|
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
|
|
920
|
-
"@babel/plugin-proposal-numeric-separator" "^7.12.
|
|
919
|
+
"@babel/plugin-proposal-numeric-separator" "^7.12.7"
|
|
921
920
|
"@babel/plugin-proposal-object-rest-spread" "^7.12.1"
|
|
922
921
|
"@babel/plugin-proposal-optional-catch-binding" "^7.12.1"
|
|
923
|
-
"@babel/plugin-proposal-optional-chaining" "^7.12.
|
|
922
|
+
"@babel/plugin-proposal-optional-chaining" "^7.12.7"
|
|
924
923
|
"@babel/plugin-proposal-private-methods" "^7.12.1"
|
|
925
924
|
"@babel/plugin-proposal-unicode-property-regex" "^7.12.1"
|
|
926
925
|
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
|
@@ -962,14 +961,14 @@
|
|
|
962
961
|
"@babel/plugin-transform-reserved-words" "^7.12.1"
|
|
963
962
|
"@babel/plugin-transform-shorthand-properties" "^7.12.1"
|
|
964
963
|
"@babel/plugin-transform-spread" "^7.12.1"
|
|
965
|
-
"@babel/plugin-transform-sticky-regex" "^7.12.
|
|
964
|
+
"@babel/plugin-transform-sticky-regex" "^7.12.7"
|
|
966
965
|
"@babel/plugin-transform-template-literals" "^7.12.1"
|
|
967
966
|
"@babel/plugin-transform-typeof-symbol" "^7.12.1"
|
|
968
967
|
"@babel/plugin-transform-unicode-escapes" "^7.12.1"
|
|
969
968
|
"@babel/plugin-transform-unicode-regex" "^7.12.1"
|
|
970
969
|
"@babel/preset-modules" "^0.1.3"
|
|
971
|
-
"@babel/types" "^7.12.
|
|
972
|
-
core-js-compat "^3.
|
|
970
|
+
"@babel/types" "^7.12.7"
|
|
971
|
+
core-js-compat "^3.7.0"
|
|
973
972
|
semver "^5.5.0"
|
|
974
973
|
|
|
975
974
|
"@babel/preset-modules@^0.1.3":
|
|
@@ -983,41 +982,41 @@
|
|
|
983
982
|
"@babel/types" "^7.4.4"
|
|
984
983
|
esutils "^2.0.2"
|
|
985
984
|
|
|
986
|
-
"@babel/runtime@^7.11.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
|
|
987
|
-
version "7.
|
|
988
|
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.
|
|
989
|
-
integrity sha512-
|
|
985
|
+
"@babel/runtime@^7.0.0", "@babel/runtime@^7.11.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
|
|
986
|
+
version "7.12.5"
|
|
987
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
|
|
988
|
+
integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
|
|
990
989
|
dependencies:
|
|
991
990
|
regenerator-runtime "^0.13.4"
|
|
992
991
|
|
|
993
|
-
"@babel/template@^7.10.4", "@babel/template@^7.3.3":
|
|
994
|
-
version "7.
|
|
995
|
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.
|
|
996
|
-
integrity sha512-
|
|
992
|
+
"@babel/template@^7.10.4", "@babel/template@^7.12.7", "@babel/template@^7.3.3":
|
|
993
|
+
version "7.12.7"
|
|
994
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc"
|
|
995
|
+
integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
|
|
997
996
|
dependencies:
|
|
998
997
|
"@babel/code-frame" "^7.10.4"
|
|
999
|
-
"@babel/parser" "^7.
|
|
1000
|
-
"@babel/types" "^7.
|
|
998
|
+
"@babel/parser" "^7.12.7"
|
|
999
|
+
"@babel/types" "^7.12.7"
|
|
1001
1000
|
|
|
1002
|
-
"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.5.5":
|
|
1003
|
-
version "7.12.
|
|
1004
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.
|
|
1005
|
-
integrity sha512-
|
|
1001
|
+
"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5", "@babel/traverse@^7.12.7", "@babel/traverse@^7.5.5":
|
|
1002
|
+
version "7.12.7"
|
|
1003
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.7.tgz#572a722408681cef17d6b0bef69ef2e728ca69f1"
|
|
1004
|
+
integrity sha512-nMWaqsQEeSvMNypswUDzjqQ+0rR6pqCtoQpsqGJC4/Khm9cISwPTSpai57F6/jDaOoEGz8yE/WxcO3PV6tKSmQ==
|
|
1006
1005
|
dependencies:
|
|
1007
1006
|
"@babel/code-frame" "^7.10.4"
|
|
1008
|
-
"@babel/generator" "^7.12.
|
|
1007
|
+
"@babel/generator" "^7.12.5"
|
|
1009
1008
|
"@babel/helper-function-name" "^7.10.4"
|
|
1010
1009
|
"@babel/helper-split-export-declaration" "^7.11.0"
|
|
1011
|
-
"@babel/parser" "^7.12.
|
|
1012
|
-
"@babel/types" "^7.12.
|
|
1010
|
+
"@babel/parser" "^7.12.7"
|
|
1011
|
+
"@babel/types" "^7.12.7"
|
|
1013
1012
|
debug "^4.1.0"
|
|
1014
1013
|
globals "^11.1.0"
|
|
1015
1014
|
lodash "^4.17.19"
|
|
1016
1015
|
|
|
1017
|
-
"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
|
|
1018
|
-
version "7.12.
|
|
1019
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.
|
|
1020
|
-
integrity sha512-
|
|
1016
|
+
"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
|
|
1017
|
+
version "7.12.7"
|
|
1018
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13"
|
|
1019
|
+
integrity sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==
|
|
1021
1020
|
dependencies:
|
|
1022
1021
|
"@babel/helper-validator-identifier" "^7.10.4"
|
|
1023
1022
|
lodash "^4.17.19"
|
|
@@ -2061,25 +2060,25 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5:
|
|
|
2061
2060
|
json-schema-traverse "^0.4.1"
|
|
2062
2061
|
uri-js "^4.2.2"
|
|
2063
2062
|
|
|
2064
|
-
algoliasearch@^4.
|
|
2065
|
-
version "4.
|
|
2066
|
-
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.
|
|
2067
|
-
integrity sha512-
|
|
2068
|
-
dependencies:
|
|
2069
|
-
"@algolia/cache-browser-local-storage" "4.
|
|
2070
|
-
"@algolia/cache-common" "4.
|
|
2071
|
-
"@algolia/cache-in-memory" "4.
|
|
2072
|
-
"@algolia/client-account" "4.
|
|
2073
|
-
"@algolia/client-analytics" "4.
|
|
2074
|
-
"@algolia/client-common" "4.
|
|
2075
|
-
"@algolia/client-recommendation" "4.
|
|
2076
|
-
"@algolia/client-search" "4.
|
|
2077
|
-
"@algolia/logger-common" "4.
|
|
2078
|
-
"@algolia/logger-console" "4.
|
|
2079
|
-
"@algolia/requester-browser-xhr" "4.
|
|
2080
|
-
"@algolia/requester-common" "4.
|
|
2081
|
-
"@algolia/requester-node-http" "4.
|
|
2082
|
-
"@algolia/transporter" "4.
|
|
2063
|
+
algoliasearch@^4.8.0:
|
|
2064
|
+
version "4.8.0"
|
|
2065
|
+
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.8.0.tgz#12bb88b4093b05a5afdc369d3e8b83036d5f4822"
|
|
2066
|
+
integrity sha512-y2PisBS5323otDtuZuUJavk6AATBiq7M/lDryClRigpU3dHGGamtoN/8dDD4/giw38QV7dfw2LwogU6Xb4txmQ==
|
|
2067
|
+
dependencies:
|
|
2068
|
+
"@algolia/cache-browser-local-storage" "4.8.0"
|
|
2069
|
+
"@algolia/cache-common" "4.8.0"
|
|
2070
|
+
"@algolia/cache-in-memory" "4.8.0"
|
|
2071
|
+
"@algolia/client-account" "4.8.0"
|
|
2072
|
+
"@algolia/client-analytics" "4.8.0"
|
|
2073
|
+
"@algolia/client-common" "4.8.0"
|
|
2074
|
+
"@algolia/client-recommendation" "4.8.0"
|
|
2075
|
+
"@algolia/client-search" "4.8.0"
|
|
2076
|
+
"@algolia/logger-common" "4.8.0"
|
|
2077
|
+
"@algolia/logger-console" "4.8.0"
|
|
2078
|
+
"@algolia/requester-browser-xhr" "4.8.0"
|
|
2079
|
+
"@algolia/requester-common" "4.8.0"
|
|
2080
|
+
"@algolia/requester-node-http" "4.8.0"
|
|
2081
|
+
"@algolia/transporter" "4.8.0"
|
|
2083
2082
|
|
|
2084
2083
|
alphanum-sort@^1.0.0:
|
|
2085
2084
|
version "1.0.2"
|
|
@@ -3076,7 +3075,7 @@ browserslist@^2.0.0, browserslist@^2.11.3:
|
|
|
3076
3075
|
caniuse-lite "^1.0.30000792"
|
|
3077
3076
|
electron-to-chromium "^1.3.30"
|
|
3078
3077
|
|
|
3079
|
-
browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.6.4
|
|
3078
|
+
browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.6.4:
|
|
3080
3079
|
version "4.14.0"
|
|
3081
3080
|
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.0.tgz#2908951abfe4ec98737b72f34c3bcedc8d43b000"
|
|
3082
3081
|
integrity sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==
|
|
@@ -3086,6 +3085,17 @@ browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.6.4, browserslist@^4.
|
|
|
3086
3085
|
escalade "^3.0.2"
|
|
3087
3086
|
node-releases "^1.1.60"
|
|
3088
3087
|
|
|
3088
|
+
browserslist@^4.14.5, browserslist@^4.14.6:
|
|
3089
|
+
version "4.14.7"
|
|
3090
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.7.tgz#c071c1b3622c1c2e790799a37bb09473a4351cb6"
|
|
3091
|
+
integrity sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ==
|
|
3092
|
+
dependencies:
|
|
3093
|
+
caniuse-lite "^1.0.30001157"
|
|
3094
|
+
colorette "^1.2.1"
|
|
3095
|
+
electron-to-chromium "^1.3.591"
|
|
3096
|
+
escalade "^3.1.1"
|
|
3097
|
+
node-releases "^1.1.66"
|
|
3098
|
+
|
|
3089
3099
|
bser@2.1.1:
|
|
3090
3100
|
version "2.1.1"
|
|
3091
3101
|
resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
|
|
@@ -3363,6 +3373,11 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000792, caniuse-lite@^1.0.30000805, can
|
|
|
3363
3373
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz#2e88119afb332ead5eaa330e332e951b1c4bfea9"
|
|
3364
3374
|
integrity sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==
|
|
3365
3375
|
|
|
3376
|
+
caniuse-lite@^1.0.30001157:
|
|
3377
|
+
version "1.0.30001159"
|
|
3378
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001159.tgz#bebde28f893fa9594dadcaa7d6b8e2aa0299df20"
|
|
3379
|
+
integrity sha512-w9Ph56jOsS8RL20K9cLND3u/+5WASWdhC/PPrf+V3/HsM3uHOavWOR1Xzakbv4Puo/srmPHudkmCRWM7Aq+/UA==
|
|
3380
|
+
|
|
3366
3381
|
capture-exit@^2.0.0:
|
|
3367
3382
|
version "2.0.0"
|
|
3368
3383
|
resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
|
|
@@ -3957,12 +3972,12 @@ copy-webpack-plugin@^4.5.3:
|
|
|
3957
3972
|
p-limit "^1.0.0"
|
|
3958
3973
|
serialize-javascript "^1.4.0"
|
|
3959
3974
|
|
|
3960
|
-
core-js-compat@^3.
|
|
3961
|
-
version "3.
|
|
3962
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.
|
|
3963
|
-
integrity sha512-
|
|
3975
|
+
core-js-compat@^3.7.0:
|
|
3976
|
+
version "3.7.0"
|
|
3977
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.7.0.tgz#8479c5d3d672d83f1f5ab94cf353e57113e065ed"
|
|
3978
|
+
integrity sha512-V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg==
|
|
3964
3979
|
dependencies:
|
|
3965
|
-
browserslist "^4.
|
|
3980
|
+
browserslist "^4.14.6"
|
|
3966
3981
|
semver "7.0.0"
|
|
3967
3982
|
|
|
3968
3983
|
core-js@^2.4.0, core-js@^2.5.7, core-js@^2.6.5:
|
|
@@ -4584,10 +4599,10 @@ detect-node@^2.0.4:
|
|
|
4584
4599
|
resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c"
|
|
4585
4600
|
integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==
|
|
4586
4601
|
|
|
4587
|
-
devtools-protocol@0.0.
|
|
4588
|
-
version "0.0.
|
|
4589
|
-
resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.
|
|
4590
|
-
integrity sha512-
|
|
4602
|
+
devtools-protocol@0.0.818844:
|
|
4603
|
+
version "0.0.818844"
|
|
4604
|
+
resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.818844.tgz#d1947278ec85b53e4c8ca598f607a28fa785ba9e"
|
|
4605
|
+
integrity sha512-AD1hi7iVJ8OD0aMLQU5VK0XH9LDlA1+BcPIgrAxPfaibx2DbWucuyOhc4oyQCbnvDDO68nN6/LcKfqTP343Jjg==
|
|
4591
4606
|
|
|
4592
4607
|
diff-sequences@^26.6.2:
|
|
4593
4608
|
version "26.6.2"
|
|
@@ -4805,6 +4820,11 @@ electron-to-chromium@^1.3.30, electron-to-chromium@^1.3.523:
|
|
|
4805
4820
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz#d7e5ca4d57e9bc99af87efbe13e7be5dde729b0f"
|
|
4806
4821
|
integrity sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==
|
|
4807
4822
|
|
|
4823
|
+
electron-to-chromium@^1.3.591:
|
|
4824
|
+
version "1.3.603"
|
|
4825
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.603.tgz#1b71bec27fb940eccd79245f6824c63d5f7e8abf"
|
|
4826
|
+
integrity sha512-J8OHxOeJkoSLgBXfV9BHgKccgfLMHh+CoeRo6wJsi6m0k3otaxS/5vrHpMNSEYY4MISwewqanPOuhAtuE8riQQ==
|
|
4827
|
+
|
|
4808
4828
|
elliptic@^6.5.3:
|
|
4809
4829
|
version "6.5.3"
|
|
4810
4830
|
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
|
|
@@ -4965,6 +4985,11 @@ escalade@^3.0.2:
|
|
|
4965
4985
|
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4"
|
|
4966
4986
|
integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==
|
|
4967
4987
|
|
|
4988
|
+
escalade@^3.1.1:
|
|
4989
|
+
version "3.1.1"
|
|
4990
|
+
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
|
|
4991
|
+
integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
|
|
4992
|
+
|
|
4968
4993
|
escape-html@~1.0.3:
|
|
4969
4994
|
version "1.0.3"
|
|
4970
4995
|
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
|
|
@@ -4992,10 +5017,10 @@ escodegen@^1.14.1:
|
|
|
4992
5017
|
optionalDependencies:
|
|
4993
5018
|
source-map "~0.6.1"
|
|
4994
5019
|
|
|
4995
|
-
eslint-config-standard@^16.0.
|
|
4996
|
-
version "16.0.
|
|
4997
|
-
resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.
|
|
4998
|
-
integrity sha512-
|
|
5020
|
+
eslint-config-standard@^16.0.2:
|
|
5021
|
+
version "16.0.2"
|
|
5022
|
+
resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.2.tgz#71e91727ac7a203782d0a5ca4d1c462d14e234f6"
|
|
5023
|
+
integrity sha512-fx3f1rJDsl9bY7qzyX8SAtP8GBSk6MfXFaTfaGgk12aAYW4gJSyRm7dM790L6cbXv63fvjY4XeSzXnb4WM+SKw==
|
|
4999
5024
|
|
|
5000
5025
|
eslint-import-resolver-node@^0.3.4:
|
|
5001
5026
|
version "0.3.4"
|
|
@@ -5079,10 +5104,10 @@ eslint-plugin-react@^7.14.3:
|
|
|
5079
5104
|
resolve "^1.17.0"
|
|
5080
5105
|
string.prototype.matchall "^4.0.2"
|
|
5081
5106
|
|
|
5082
|
-
eslint-plugin-standard@^
|
|
5083
|
-
version "
|
|
5084
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-
|
|
5085
|
-
integrity sha512-
|
|
5107
|
+
eslint-plugin-standard@^5.0.0:
|
|
5108
|
+
version "5.0.0"
|
|
5109
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-5.0.0.tgz#c43f6925d669f177db46f095ea30be95476b1ee4"
|
|
5110
|
+
integrity sha512-eSIXPc9wBM4BrniMzJRBm2uoVuXz2EPa+NXPk2+itrVt+r5SbKFERx/IgrK/HmfjddyKVz2f+j+7gBRvu19xLg==
|
|
5086
5111
|
|
|
5087
5112
|
eslint-scope@^4.0.3:
|
|
5088
5113
|
version "4.0.3"
|
|
@@ -5117,10 +5142,10 @@ eslint-visitor-keys@^2.0.0:
|
|
|
5117
5142
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
|
|
5118
5143
|
integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
|
|
5119
5144
|
|
|
5120
|
-
eslint@^7.
|
|
5121
|
-
version "7.
|
|
5122
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.
|
|
5123
|
-
integrity sha512-
|
|
5145
|
+
eslint@^7.14.0:
|
|
5146
|
+
version "7.14.0"
|
|
5147
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.14.0.tgz#2d2cac1d28174c510a97b377f122a5507958e344"
|
|
5148
|
+
integrity sha512-5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA==
|
|
5124
5149
|
dependencies:
|
|
5125
5150
|
"@babel/code-frame" "^7.0.0"
|
|
5126
5151
|
"@eslint/eslintrc" "^0.2.1"
|
|
@@ -5533,12 +5558,13 @@ fd-slicer@~1.1.0:
|
|
|
5533
5558
|
dependencies:
|
|
5534
5559
|
pend "~1.2.0"
|
|
5535
5560
|
|
|
5536
|
-
fetch-mock@^9.
|
|
5537
|
-
version "9.
|
|
5538
|
-
resolved "https://registry.yarnpkg.com/fetch-mock/-/fetch-mock-9.
|
|
5539
|
-
integrity sha512-
|
|
5561
|
+
fetch-mock@^9.11.0:
|
|
5562
|
+
version "9.11.0"
|
|
5563
|
+
resolved "https://registry.yarnpkg.com/fetch-mock/-/fetch-mock-9.11.0.tgz#371c6fb7d45584d2ae4a18ee6824e7ad4b637a3f"
|
|
5564
|
+
integrity sha512-PG1XUv+x7iag5p/iNHD4/jdpxL9FtVSqRMUQhPab4hVDt80T1MH5ehzVrL2IdXO9Q2iBggArFvPqjUbHFuI58Q==
|
|
5540
5565
|
dependencies:
|
|
5541
|
-
babel
|
|
5566
|
+
"@babel/core" "^7.0.0"
|
|
5567
|
+
"@babel/runtime" "^7.0.0"
|
|
5542
5568
|
core-js "^3.0.0"
|
|
5543
5569
|
debug "^4.1.1"
|
|
5544
5570
|
glob-to-regexp "^0.4.0"
|
|
@@ -7780,10 +7806,10 @@ jsprim@^1.2.2:
|
|
|
7780
7806
|
json-schema "0.2.3"
|
|
7781
7807
|
verror "1.10.0"
|
|
7782
7808
|
|
|
7783
|
-
jsrsasign@^10.
|
|
7784
|
-
version "10.
|
|
7785
|
-
resolved "https://registry.yarnpkg.com/jsrsasign/-/jsrsasign-10.
|
|
7786
|
-
integrity sha512-
|
|
7809
|
+
jsrsasign@^10.1.4:
|
|
7810
|
+
version "10.1.4"
|
|
7811
|
+
resolved "https://registry.yarnpkg.com/jsrsasign/-/jsrsasign-10.1.4.tgz#8fca72f4bce9b0cb24fe3390df60a5b4a059b446"
|
|
7812
|
+
integrity sha512-j+bG6EaQ/SBvQvnI8M2x3Wawz8jx3fBViPClAw84QpsnLSjtr5fobp5W2TAljpAhboxWvbkZmd/KDBm+hckqJQ==
|
|
7787
7813
|
|
|
7788
7814
|
jsx-ast-utils@^2.4.1:
|
|
7789
7815
|
version "2.4.1"
|
|
@@ -8728,6 +8754,11 @@ node-releases@^1.1.60:
|
|
|
8728
8754
|
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084"
|
|
8729
8755
|
integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==
|
|
8730
8756
|
|
|
8757
|
+
node-releases@^1.1.66:
|
|
8758
|
+
version "1.1.67"
|
|
8759
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12"
|
|
8760
|
+
integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==
|
|
8761
|
+
|
|
8731
8762
|
node-sass@^4.12.0, node-sass@^4.14.1:
|
|
8732
8763
|
version "4.14.1"
|
|
8733
8764
|
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.14.1.tgz#99c87ec2efb7047ed638fb4c9db7f3a42e2217b5"
|
|
@@ -10868,13 +10899,13 @@ punycode@^2.1.0, punycode@^2.1.1:
|
|
|
10868
10899
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
|
10869
10900
|
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
|
10870
10901
|
|
|
10871
|
-
puppeteer@^5.
|
|
10872
|
-
version "5.
|
|
10873
|
-
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-5.
|
|
10874
|
-
integrity sha512-
|
|
10902
|
+
puppeteer@^5.5.0:
|
|
10903
|
+
version "5.5.0"
|
|
10904
|
+
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-5.5.0.tgz#331a7edd212ca06b4a556156435f58cbae08af00"
|
|
10905
|
+
integrity sha512-OM8ZvTXAhfgFA7wBIIGlPQzvyEETzDjeRa4mZRCRHxYL+GNH5WAuYUQdja3rpWZvkX/JKqmuVgbsxDNsDFjMEg==
|
|
10875
10906
|
dependencies:
|
|
10876
10907
|
debug "^4.1.0"
|
|
10877
|
-
devtools-protocol "0.0.
|
|
10908
|
+
devtools-protocol "0.0.818844"
|
|
10878
10909
|
extract-zip "^2.0.0"
|
|
10879
10910
|
https-proxy-agent "^4.0.0"
|
|
10880
10911
|
node-fetch "^2.6.1"
|
|
@@ -11391,14 +11422,7 @@ resolve-url@^0.2.1:
|
|
|
11391
11422
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
|
11392
11423
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
|
11393
11424
|
|
|
11394
|
-
resolve@^1.1.7, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
|
|
11395
|
-
version "1.17.0"
|
|
11396
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
|
|
11397
|
-
integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
|
|
11398
|
-
dependencies:
|
|
11399
|
-
path-parse "^1.0.6"
|
|
11400
|
-
|
|
11401
|
-
resolve@^1.18.1:
|
|
11425
|
+
resolve@^1.1.7, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
|
|
11402
11426
|
version "1.18.1"
|
|
11403
11427
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130"
|
|
11404
11428
|
integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: station
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.100
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vonage DevRel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-11-
|
|
11
|
+
date: 2020-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activeadmin
|
|
@@ -708,28 +708,28 @@ dependencies:
|
|
|
708
708
|
requirements:
|
|
709
709
|
- - '='
|
|
710
710
|
- !ruby/object:Gem::Version
|
|
711
|
-
version: 6.
|
|
711
|
+
version: 6.14.0
|
|
712
712
|
type: :runtime
|
|
713
713
|
prerelease: false
|
|
714
714
|
version_requirements: !ruby/object:Gem::Requirement
|
|
715
715
|
requirements:
|
|
716
716
|
- - '='
|
|
717
717
|
- !ruby/object:Gem::Version
|
|
718
|
-
version: 6.
|
|
718
|
+
version: 6.14.0
|
|
719
719
|
- !ruby/object:Gem::Dependency
|
|
720
720
|
name: redis
|
|
721
721
|
requirement: !ruby/object:Gem::Requirement
|
|
722
722
|
requirements:
|
|
723
723
|
- - '='
|
|
724
724
|
- !ruby/object:Gem::Version
|
|
725
|
-
version: 4.2.
|
|
725
|
+
version: 4.2.5
|
|
726
726
|
type: :runtime
|
|
727
727
|
prerelease: false
|
|
728
728
|
version_requirements: !ruby/object:Gem::Requirement
|
|
729
729
|
requirements:
|
|
730
730
|
- - '='
|
|
731
731
|
- !ruby/object:Gem::Version
|
|
732
|
-
version: 4.2.
|
|
732
|
+
version: 4.2.5
|
|
733
733
|
- !ruby/object:Gem::Dependency
|
|
734
734
|
name: rubocop
|
|
735
735
|
requirement: !ruby/object:Gem::Requirement
|