-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
14237 lines (14237 loc) · 578 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "@keystonejs/example-projects-blank",
"version": "5.0.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ampproject/toolbox-core": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-core/-/toolbox-core-2.3.0.tgz",
"integrity": "sha512-NT+kVR5Rm2cxp12h40IXgPRWmq0cpUdmcgZmgdelplp/q//4aWkt2+llGHR2foQJkwICxMVVlb/XidsHz0Rh9g==",
"requires": {
"cross-fetch": "3.0.4"
}
},
"@ampproject/toolbox-optimizer": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-optimizer/-/toolbox-optimizer-2.2.0.tgz",
"integrity": "sha512-lEujArv6jyl/mEab0uBZ25oMkf+kf8cpTuHPcy8k3+jtomNyVtd94lbSWbQtomsEnYQ0MA9MvLvCJXsJz1fQcg==",
"requires": {
"@ampproject/toolbox-core": "^2.2.0",
"@ampproject/toolbox-runtime-version": "^2.2.0",
"@ampproject/toolbox-script-csp": "^2.2.0",
"@ampproject/toolbox-validator-rules": "^2.2.0",
"cssnano": "4.1.10",
"domhandler": "3.0.0",
"domutils": "2.0.0",
"htmlparser2": "4.1.0",
"normalize-html-whitespace": "1.0.0",
"postcss-safe-parser": "4.0.2",
"terser": "4.6.8"
},
"dependencies": {
"domelementtype": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
"integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ=="
},
"domhandler": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.0.0.tgz",
"integrity": "sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==",
"requires": {
"domelementtype": "^2.0.1"
}
},
"domutils": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.0.0.tgz",
"integrity": "sha512-n5SelJ1axbO636c2yUtOGia/IcJtVtlhQbFiVDBZHKV5ReJO1ViX7sFEemtuyoAnBxk5meNSYgA8V4s0271efg==",
"requires": {
"dom-serializer": "^0.2.1",
"domelementtype": "^2.0.1",
"domhandler": "^3.0.0"
}
},
"htmlparser2": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz",
"integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==",
"requires": {
"domelementtype": "^2.0.1",
"domhandler": "^3.0.0",
"domutils": "^2.0.0",
"entities": "^2.0.0"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"terser": {
"version": "4.6.8",
"resolved": "https://registry.npmjs.org/terser/-/terser-4.6.8.tgz",
"integrity": "sha512-drV7ga6ZlIpBtitvb87Uk7P7gAJkCt3j/TqZr9wwF4Dlt0MBn52ANIAyuvP1F605WdPY4w6vT63u6KTWqaXFRQ==",
"requires": {
"commander": "^2.20.0",
"source-map": "~0.6.1",
"source-map-support": "~0.5.12"
}
}
}
},
"@ampproject/toolbox-runtime-version": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.3.1.tgz",
"integrity": "sha512-ocDCSaSUlbgPbuXRVyLU7k+dLGYluKrnfSPKXIwwpGkwNw58JOddvgnQGyB0R/2Ma36nxFA8AAyxjnghLSScpg==",
"requires": {
"@ampproject/toolbox-core": "^2.3.0"
}
},
"@ampproject/toolbox-script-csp": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-script-csp/-/toolbox-script-csp-2.3.0.tgz",
"integrity": "sha512-Qba53ohvCH79sYl5O8K5GMSo/372OjuyxNc+XySG26sAsG26WpBKJEE0HTr8rsa//CD3Fc92FieT1gK5U/jK4Q=="
},
"@ampproject/toolbox-validator-rules": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-validator-rules/-/toolbox-validator-rules-2.3.0.tgz",
"integrity": "sha512-S10YIyOKettoRDWoyRymRyjzWZD4/qW7YfHNhHAS13QVneabRcU5MF7vEwkG6dHWx/UdufT5GbqYnvpQRMNt3Q==",
"requires": {
"cross-fetch": "3.0.4"
}
},
"@apollo/protobufjs": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.0.3.tgz",
"integrity": "sha512-gqeT810Ect9WIqsrgfUvr+ljSB5m1PyBae9HGdrRyQ3HjHjTcjVvxpsMYXlUk4rUHnrfUqyoGvLSy2yLlRGEOw==",
"requires": {
"@protobufjs/aspromise": "^1.1.2",
"@protobufjs/base64": "^1.1.2",
"@protobufjs/codegen": "^2.0.4",
"@protobufjs/eventemitter": "^1.1.0",
"@protobufjs/fetch": "^1.1.0",
"@protobufjs/float": "^1.0.2",
"@protobufjs/inquire": "^1.1.0",
"@protobufjs/path": "^1.1.2",
"@protobufjs/pool": "^1.1.0",
"@protobufjs/utf8": "^1.1.0",
"@types/long": "^4.0.0",
"@types/node": "^10.1.0",
"long": "^4.0.0"
},
"dependencies": {
"@types/node": {
"version": "10.17.21",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.21.tgz",
"integrity": "sha512-PQKsydPxYxF1DsAFWmunaxd3sOi3iMt6Zmx/tgaagHYmwJ/9cRH91hQkeJZaUGWbvn0K5HlSVEXkn5U/llWPpQ=="
}
}
},
"@apollo/react-common": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@apollo/react-common/-/react-common-3.1.4.tgz",
"integrity": "sha512-X5Kyro73bthWSCBJUC5XYQqMnG0dLWuDZmVkzog9dynovhfiVCV4kPSdgSIkqnb++cwCzOVuQ4rDKVwo2XRzQA==",
"requires": {
"ts-invariant": "^0.4.4",
"tslib": "^1.10.0"
}
},
"@apollo/react-hooks": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/@apollo/react-hooks/-/react-hooks-3.1.5.tgz",
"integrity": "sha512-y0CJ393DLxIIkksRup4nt+vSjxalbZBXnnXxYbviq/woj+zKa431zy0yT4LqyRKpFy9ahMIwxBnBwfwIoupqLQ==",
"requires": {
"@apollo/react-common": "^3.1.4",
"@wry/equality": "^0.1.9",
"ts-invariant": "^0.4.4",
"tslib": "^1.10.0"
}
},
"@apollographql/apollo-tools": {
"version": "0.4.8",
"resolved": "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.4.8.tgz",
"integrity": "sha512-W2+HB8Y7ifowcf3YyPHgDI05izyRtOeZ4MqIr7LbTArtmJ0ZHULWpn84SGMW7NAvTV1tFExpHlveHhnXuJfuGA==",
"requires": {
"apollo-env": "^0.6.5"
}
},
"@apollographql/graphql-playground-html": {
"version": "1.6.24",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.24.tgz",
"integrity": "sha512-8GqG48m1XqyXh4mIZrtB5xOhUwSsh1WsrrsaZQOEYYql3YN9DEu9OOSg0ILzXHZo/h2Q74777YE4YzlArQzQEQ=="
},
"@apollographql/graphql-playground-react": {
"version": "1.7.32",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-react/-/graphql-playground-react-1.7.32.tgz",
"integrity": "sha512-IRp92j+XOyiONQQDA45yJxEeylmQIRhewVwB0i+DnH2HNUp37BSk/ZzF6OPncHfiZ9qnGe6jZloQftYHQKk5Vg==",
"requires": {
"@types/lru-cache": "^4.1.1",
"apollo-link": "^1.0.7",
"apollo-link-http": "^1.3.2",
"apollo-link-ws": "1.0.8",
"calculate-size": "^1.1.1",
"codemirror": "^5.38.0",
"codemirror-graphql": "github:timsuchanek/codemirror-graphql#details-fix",
"copy-to-clipboard": "^3.0.8",
"cryptiles": "4.1.2",
"cuid": "^1.3.8",
"graphiql": "^0.11.2",
"graphql": "^0.11.7",
"immutable": "^4.0.0-rc.9",
"isomorphic-fetch": "^2.2.1",
"js-yaml": "^3.10.0",
"json-stable-stringify": "^1.0.1",
"keycode": "^2.1.9",
"lodash": "^4.17.11",
"lodash.debounce": "^4.0.8",
"markdown-it": "^8.4.1",
"marked": "^0.3.19",
"prettier": "^1.13.0",
"prop-types": "^15.6.0",
"query-string": "5",
"react": "^16.3.1",
"react-addons-shallow-compare": "^15.6.2",
"react-codemirror": "^1.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-display-name": "^0.2.3",
"react-dom": "^16.3.1",
"react-helmet": "^5.2.0",
"react-input-autosize": "^2.2.1",
"react-modal": "^3.1.11",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-sortable-hoc": "^0.8.3",
"react-transition-group": "^2.2.1",
"react-virtualized": "^9.12.0",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-immutable": "^4.0.0",
"redux-localstorage": "^1.0.0-rc5",
"redux-localstorage-debounce": "^0.1.0",
"redux-localstorage-filter": "^0.1.1",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"seamless-immutable": "^7.0.1",
"styled-components": "^4.0.0",
"subscriptions-transport-ws": "^0.9.5",
"utility-types": "^1.0.0",
"webpack-bundle-analyzer": "^3.3.2",
"zen-observable": "^0.7.1"
},
"dependencies": {
"cuid": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/cuid/-/cuid-1.3.8.tgz",
"integrity": "sha1-S4deCWm612T37AcGz0T1+wgx9rc=",
"requires": {
"browser-fingerprint": "0.0.1",
"core-js": "^1.1.1",
"node-fingerprint": "0.0.2"
}
},
"dom-helpers": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
"integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
"requires": {
"@babel/runtime": "^7.1.2"
}
},
"graphql": {
"version": "0.11.7",
"resolved": "https://registry.npmjs.org/graphql/-/graphql-0.11.7.tgz",
"integrity": "sha512-x7uDjyz8Jx+QPbpCFCMQ8lltnQa4p4vSYHx6ADe8rVYRTdsyhCJbvSty5DAsLVmU6cGakl+r8HQYolKHxk/tiw==",
"requires": {
"iterall": "1.1.3"
}
},
"hoist-non-react-statics": {
"version": "2.5.5",
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw=="
},
"iterall": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/iterall/-/iterall-1.1.3.tgz",
"integrity": "sha512-Cu/kb+4HiNSejAPhSaN1VukdNTTi/r4/e+yykqjlG/IW+1gZH5b4+Bq3whDX4tvbYugta3r8KTMUiqT3fIGxuQ=="
},
"query-string": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz",
"integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==",
"requires": {
"decode-uri-component": "^0.2.0",
"object-assign": "^4.1.0",
"strict-uri-encode": "^1.0.0"
}
},
"react-router": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/react-router/-/react-router-4.3.1.tgz",
"integrity": "sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==",
"requires": {
"history": "^4.7.2",
"hoist-non-react-statics": "^2.5.0",
"invariant": "^2.2.4",
"loose-envify": "^1.3.1",
"path-to-regexp": "^1.7.0",
"prop-types": "^15.6.1",
"warning": "^4.0.1"
}
},
"react-router-dom": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-4.3.1.tgz",
"integrity": "sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==",
"requires": {
"history": "^4.7.2",
"invariant": "^2.2.4",
"loose-envify": "^1.3.1",
"prop-types": "^15.6.1",
"react-router": "^4.3.1",
"warning": "^4.0.1"
}
},
"react-transition-group": {
"version": "2.9.0",
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz",
"integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==",
"requires": {
"dom-helpers": "^3.4.0",
"loose-envify": "^1.4.0",
"prop-types": "^15.6.2",
"react-lifecycles-compat": "^3.0.4"
}
},
"strict-uri-encode": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
"integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM="
},
"zen-observable": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.7.1.tgz",
"integrity": "sha512-OI6VMSe0yeqaouIXtedC+F55Sr6r9ppS7+wTbSexkYdHbdt4ctTuPNXP/rwm7GTVI63YBc+EBT0b0tl7YnJLRg=="
}
}
},
"@arch-ui/alert": {
"version": "0.0.17",
"resolved": "https://registry.npmjs.org/@arch-ui/alert/-/alert-0.0.17.tgz",
"integrity": "sha512-hS7b5By/lF1gJ21FASxspyfZ6nsyBZwtFZdVW7ndiSId89R72WckrwQMNr5JtdQLyppjIJQrSZIU99+e4uYWgQ==",
"requires": {
"@arch-ui/theme": "^0.0.10",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/badge": {
"version": "0.0.16",
"resolved": "https://registry.npmjs.org/@arch-ui/badge/-/badge-0.0.16.tgz",
"integrity": "sha512-emH6FImd9XfK3yv4OJb6aAdwOoh+pO0G0rt8rTD+yXIburPQSkjcvSkAiPNBlomWOgpY9zSnrvQP0z78/WfJFw==",
"requires": {
"@arch-ui/theme": "0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/button": {
"version": "0.0.18",
"resolved": "https://registry.npmjs.org/@arch-ui/button/-/button-0.0.18.tgz",
"integrity": "sha512-1pkjjV9CmX43pfcG6INDz73j4WFC9/yC4IbZAxu4Oc8dhE2fVfn+HhhHoPehokA05NfjKzvx0uOQ8SoAd/jPNQ==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/common": "^0.0.11",
"@arch-ui/loading": "^0.0.17",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"react-pseudo-state": "^2.2.2",
"react-router-dom": "5.1.2"
}
},
"@arch-ui/card": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/card/-/card-0.0.14.tgz",
"integrity": "sha512-m7BJsUTIBePofJ/nAAGks0TdcnxIKA8+ZYUgoYfwuJXB6PXvC8A81sACWx4qRFUYqcu5oxkgBB3QRoxOEUVSIA==",
"requires": {
"@arch-ui/theme": "0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28"
}
},
"@arch-ui/color-utils": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.2.tgz",
"integrity": "sha512-bFzzak13UWSjkoojKoatSgyj5t4p6HTOIvRu+L6PfGhwgugaNcVhu1XCBJnt3v/ilQX8OXFWecN0e55QI4sVCQ=="
},
"@arch-ui/common": {
"version": "0.0.11",
"resolved": "https://registry.npmjs.org/@arch-ui/common/-/common-0.0.11.tgz",
"integrity": "sha512-NU0DCcEAbiDHzsOfobv5U2tYaMMfMQVfEANUyPzt1uOTxCv4FY15Iyz9SCdb+5PXES3HEWqPUK3gGzdatbc+1w==",
"requires": {
"@arch-ui/theme": "^0.0.10"
}
},
"@arch-ui/confirm": {
"version": "0.0.19",
"resolved": "https://registry.npmjs.org/@arch-ui/confirm/-/confirm-0.0.19.tgz",
"integrity": "sha512-eP2DXanXzNKpCvMH5EoHnerep9I0cM1Z7MbrxTv8/s9INzCrmENuP3BHBsVhmrlgySbS0QC+dd62OR4r3Ty1Sw==",
"requires": {
"@arch-ui/modal-utils": "^1.0.10",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^6.0.0",
"react-scrolllock": "^4.0.1"
}
},
"@arch-ui/controls": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/@arch-ui/controls/-/controls-0.1.8.tgz",
"integrity": "sha512-RgrtgY4i5lMmcoj1CRtwzlqWHZ1NoO7LwtoP4DRA8o7nN8rGHePk/+owbm3uz0PfiUNsxidaGemS7r3NlOrKLg==",
"requires": {
"@arch-ui/input": "^0.1.9",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"react-pseudo-state": "^2.2.2",
"react-radios": "^1.1.0"
}
},
"@arch-ui/day-picker": {
"version": "0.0.26",
"resolved": "https://registry.npmjs.org/@arch-ui/day-picker/-/day-picker-0.0.26.tgz",
"integrity": "sha512-CKKG0ss8MvJY/T5QlYvJvQ9/uAixOGhtM96asvXJTJioz8m8F+2U+ykuOD5TBpL+bYkOasdaosvXICRCAr6iRQ==",
"requires": {
"@arch-ui/icons": "^0.1.1",
"@arch-ui/input": "^0.1.9",
"@arch-ui/select": "^0.1.8",
"@arch-ui/theme": "^0.0.10",
"@arch-ui/typography": "^0.0.17",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"chrono-node": "^1.3.5",
"date-fns": "^1.30.1",
"intersection-observer": "^0.10.0",
"moment": "^2.24.0",
"react-window": "^1.7.0"
}
},
"@arch-ui/dialog": {
"version": "0.0.21",
"resolved": "https://registry.npmjs.org/@arch-ui/dialog/-/dialog-0.0.21.tgz",
"integrity": "sha512-D4GezoXtU1TonDMH62Ttik3XmgdRq+L1icPl9G1qcRUKTnAuNx9uQHESMoJWb1YLNjxSlvqlJPfjPqcDNreeGQ==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/modal-utils": "^1.0.10",
"@arch-ui/theme": "^0.0.10",
"@arch-ui/typography": "^0.0.17",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^6.0.0",
"react-scrolllock": "^4.0.1"
}
},
"@arch-ui/drawer": {
"version": "0.0.21",
"resolved": "https://registry.npmjs.org/@arch-ui/drawer/-/drawer-0.0.21.tgz",
"integrity": "sha512-MgCH5zfCTN8L/oG25hZey+U6jvYckLzWchU/qSrZfmlb457Tw+I2+1aEALHpsdFMHC3X0Kjwm49KstQSjwE6LA==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/modal-utils": "^1.0.10",
"@arch-ui/theme": "^0.0.10",
"@arch-ui/typography": "^0.0.17",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^6.0.0",
"react-scrolllock": "^4.0.1"
}
},
"@arch-ui/dropdown": {
"version": "0.0.17",
"resolved": "https://registry.npmjs.org/@arch-ui/dropdown/-/dropdown-0.0.17.tgz",
"integrity": "sha512-WAeiO9WBKSR+VKjasssIc/r+u9mmZHYQHAK8GhrMAeR0DVBc5jgjKbRE1BDiOjLegT3MXfXAzfYChshECZbq8A==",
"requires": {
"@arch-ui/modal-utils": "^1.0.10",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^6.0.0",
"react-router-dom": "5.1.2"
}
},
"@arch-ui/fields": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@arch-ui/fields/-/fields-3.0.1.tgz",
"integrity": "sha512-EaxDbXYxN29L9Im0/JHN4IrkLejaTWhPO8Abt29Z1Yd/eLDe3Iv+md+H8za3eWzM9YzTYk723lOSk4T2TRZrcg==",
"requires": {
"@arch-ui/icons": "^0.1.1",
"@arch-ui/lozenge": "^0.0.16",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/filters": {
"version": "0.0.19",
"resolved": "https://registry.npmjs.org/@arch-ui/filters/-/filters-0.0.19.tgz",
"integrity": "sha512-Xl2GUj9RjM5LlzDkHRFJGoxU2J8PgkP6jOdJJfZCoLQ9ssNDUDgpmUMKX+2CUr92Uf+KJWy/NW4xItmxOz8Chw==",
"requires": {
"@arch-ui/controls": "^0.1.8",
"@arch-ui/layout": "^0.2.13",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"react-radios": "^1.1.0"
}
},
"@arch-ui/hooks": {
"version": "0.0.10",
"resolved": "https://registry.npmjs.org/@arch-ui/hooks/-/hooks-0.0.10.tgz",
"integrity": "sha512-Skgh6VQgWs/GbOQOe4rK0yaJYv63o95JtJpdiPABDCPaNgPBKtoA0MhtZkQXPFUPhibPdLBHstr6ilyggXJidQ==",
"requires": {
"@babel/runtime": "^7.8.4",
"resize-observer-polyfill": "^1.5.1"
}
},
"@arch-ui/icons": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@arch-ui/icons/-/icons-0.1.1.tgz",
"integrity": "sha512-0YkXgZ2s1hiu6fMrpDlw4KKEsvbGT1sQNAgLZrAqHTVZ+Zx91uarhlu2XRpCDx3Qm8wz56bttKOJaqf2Icn/2g==",
"requires": {
"@babel/runtime": "^7.8.4"
}
},
"@arch-ui/input": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@arch-ui/input/-/input-0.1.9.tgz",
"integrity": "sha512-5D3ad+3m0l2pE9Wsx9V+UcW/GRSBshVBWDgp9AxxqNsN2/go+6uU45AHledQ5S1BWlKmIkLd28v6JD5Qpbe+Mg==",
"requires": {
"@arch-ui/color-utils": "0.0.2",
"@arch-ui/common": "0.0.11",
"@arch-ui/theme": "0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28"
}
},
"@arch-ui/layout": {
"version": "0.2.13",
"resolved": "https://registry.npmjs.org/@arch-ui/layout/-/layout-0.2.13.tgz",
"integrity": "sha512-nRrL1Nskk3jORNTtxh7CvFpSlUqc7ap/giVQu2FulBI5sqsFxac0CGRyyz5Mcfrt40b8CHBtrdtqnyfy2zcHQQ==",
"requires": {
"@arch-ui/common": "0.0.11",
"@arch-ui/theme": "0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/loading": {
"version": "0.0.17",
"resolved": "https://registry.npmjs.org/@arch-ui/loading/-/loading-0.0.17.tgz",
"integrity": "sha512-koroAiBTsymeeXhum6pzbS1LdFAAhTeKcbM0/qZY1wM/dC7ka8LA1Lgcw3Hx05KfXAvFfik9yBlIhUpKPnV8cg==",
"requires": {
"@arch-ui/theme": "0.0.10",
"@arch-ui/typography": "0.0.17",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/lozenge": {
"version": "0.0.16",
"resolved": "https://registry.npmjs.org/@arch-ui/lozenge/-/lozenge-0.0.16.tgz",
"integrity": "sha512-4jvKAmPhtaaHh+VHaNrFEnIqhfHQzyjVTsmpWl0/bFxmb2mn9ndwOFxQe+9mANLxj8tNniaaMRU9V73rMob9Ow==",
"requires": {
"@arch-ui/theme": "0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/modal-utils": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/@arch-ui/modal-utils/-/modal-utils-1.0.10.tgz",
"integrity": "sha512-nxqkA9PIvg/YO9GApBAAfpEn0g+KoY/5Pl4Fm/W2AMFQRorIB+JOpj40hA3eSWiHwNynoRcOzS0vLZPlZmUH5g==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"react-scrolllock": "^4.0.1",
"react-transition-group": "^4.3.0"
}
},
"@arch-ui/navbar": {
"version": "0.1.10",
"resolved": "https://registry.npmjs.org/@arch-ui/navbar/-/navbar-0.1.10.tgz",
"integrity": "sha512-VXB46F9GFFs7iDWuVwnvz3snkj+Q/Wg/LOqcMwFI5A8IZM8UxZscLzenT6Jll/548zAp3Z/vKiB5j67kS2+Thw==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"react-router-dom": "5.1.2"
}
},
"@arch-ui/options": {
"version": "0.0.21",
"resolved": "https://registry.npmjs.org/@arch-ui/options/-/options-0.0.21.tgz",
"integrity": "sha512-4yRUwX1fXkQCErFdmGymQrIB4ufO1GDBl3STl0dWb6yBkGNlroWN0M421hrrmSKEJRULwQFOWWXZqaU4GPHRfw==",
"requires": {
"@arch-ui/common": "^0.0.11",
"@arch-ui/icons": "^0.1.1",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"react-select": "^3.1.0"
}
},
"@arch-ui/pagination": {
"version": "0.0.20",
"resolved": "https://registry.npmjs.org/@arch-ui/pagination/-/pagination-0.0.20.tgz",
"integrity": "sha512-ae6gGj8qXIrzX+xQYK0u3XgvJ3cKdaf9dcEN5Du+RdTEo69URazdSrRpkKRPxFdHIkQYbGkMqR5sOYHdFh5wfA==",
"requires": {
"@arch-ui/button": "^0.0.18",
"@arch-ui/icons": "^0.1.1",
"@arch-ui/layout": "^0.2.13",
"@arch-ui/loading": "^0.0.17",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"react-router-dom": "5.1.2"
}
},
"@arch-ui/pill": {
"version": "0.1.15",
"resolved": "https://registry.npmjs.org/@arch-ui/pill/-/pill-0.1.15.tgz",
"integrity": "sha512-CqRIfL2QDdUP7285S26BOpDnJMG7TpfzDLiv8/hXZSM5IIc2aJILWibsz13/RkHmX15yiW359I7e+v4Ke29IjQ==",
"requires": {
"@arch-ui/common": "^0.0.11",
"@arch-ui/icons": "^0.1.1",
"@arch-ui/theme": "0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/popout": {
"version": "0.0.19",
"resolved": "https://registry.npmjs.org/@arch-ui/popout/-/popout-0.0.19.tgz",
"integrity": "sha512-dWhAbPAyOsnTpKFbxb2OiCZjHyTfjt7txqOhSAlQ+4tPryyBv7di1P8uEWsE28HYg0FHw8MUzNe1ZZDk6W0MTg==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/modal-utils": "^1.0.10",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@popperjs/core": "^2.3.3",
"focus-trap-react": "^6.0.0",
"react-popper": "^2.2.2"
}
},
"@arch-ui/select": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/@arch-ui/select/-/select-0.1.8.tgz",
"integrity": "sha512-4NBwpl4vTXAcW05qgAh5jhvEQ7yrqX/ppE2e6LIhJ8Pd+rIFWSdEgQ4HjIJxlQM6t6p+FI6x1LohhwMiSvk1Zg==",
"requires": {
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"react-select": "^3.1.0"
}
},
"@arch-ui/theme": {
"version": "0.0.10",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.10.tgz",
"integrity": "sha512-Tg7/+EZmQj/tKNDD7EYiPjz6wQRNHuBqhAku7Fucogz85QbiiXTw/iJUY5zNGfe1xDH0j1iccOO9Me/Jv+UBiQ==",
"requires": {
"@arch-ui/color-utils": "0.0.2",
"@babel/runtime": "^7.8.4"
}
},
"@arch-ui/tooltip": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/@arch-ui/tooltip/-/tooltip-0.1.12.tgz",
"integrity": "sha512-YuY/myuDHEH6Y9RclJQ4BjhjYqI2xWMRret+VAJu0BZ0YWnUJnWvQvXfFeMjRP1YM1mxpTa/mfYmYGfmpYd/og==",
"requires": {
"@arch-ui/modal-utils": "^1.0.10",
"@arch-ui/theme": "^0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@popperjs/core": "^2.3.3",
"flushable": "^1.0.0",
"react-popper": "^2.2.2"
}
},
"@arch-ui/typography": {
"version": "0.0.17",
"resolved": "https://registry.npmjs.org/@arch-ui/typography/-/typography-0.0.17.tgz",
"integrity": "sha512-I/I2RwaJA73YVlSkJqLiH12I3G0B/7qeJ66jocnJ/2jLGClQ1aJrJ+oZQl1Jg2HyUm8zPn0QALb9cIByCfDomw==",
"requires": {
"@arch-ui/theme": "0.0.10",
"@babel/runtime": "^7.8.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27"
}
},
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
"integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
"requires": {
"@babel/highlight": "^7.8.3"
}
},
"@babel/compat-data": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.9.6.tgz",
"integrity": "sha512-5QPTrNen2bm7RBc7dsOmcA5hbrS4O2Vhmk5XOL4zWW/zD/hV0iinpefDlkm+tBBy8kDtFaaeEvmAqt+nURAV2g==",
"requires": {
"browserslist": "^4.11.1",
"invariant": "^2.2.4",
"semver": "^5.5.0"
}
},
"@babel/core": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.6.tgz",
"integrity": "sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg==",
"requires": {
"@babel/code-frame": "^7.8.3",
"@babel/generator": "^7.9.6",
"@babel/helper-module-transforms": "^7.9.0",
"@babel/helpers": "^7.9.6",
"@babel/parser": "^7.9.6",
"@babel/template": "^7.8.6",
"@babel/traverse": "^7.9.6",
"@babel/types": "^7.9.6",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.1",
"json5": "^2.1.2",
"lodash": "^4.17.13",
"resolve": "^1.3.2",
"semver": "^5.4.1",
"source-map": "^0.5.0"
}
},
"@babel/generator": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.6.tgz",
"integrity": "sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ==",
"requires": {
"@babel/types": "^7.9.6",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
}
},
"@babel/helper-annotate-as-pure": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
"integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-builder-binary-assignment-operator-visitor": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz",
"integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==",
"requires": {
"@babel/helper-explode-assignable-expression": "^7.8.3",
"@babel/types": "^7.8.3"
}
},
"@babel/helper-builder-react-jsx": {
"version": "7.9.0",
"resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz",
"integrity": "sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.8.3",
"@babel/types": "^7.9.0"
}
},
"@babel/helper-builder-react-jsx-experimental": {
"version": "7.9.5",
"resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz",
"integrity": "sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.8.3",
"@babel/helper-module-imports": "^7.8.3",
"@babel/types": "^7.9.5"
}
},
"@babel/helper-compilation-targets": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.9.6.tgz",
"integrity": "sha512-x2Nvu0igO0ejXzx09B/1fGBxY9NXQlBW2kZsSxCJft+KHN8t9XWzIvFxtPHnBOAXpVsdxZKZFbRUC8TsNKajMw==",
"requires": {
"@babel/compat-data": "^7.9.6",
"browserslist": "^4.11.1",
"invariant": "^2.2.4",
"levenary": "^1.1.1",
"semver": "^5.5.0"
}
},
"@babel/helper-create-class-features-plugin": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.6.tgz",
"integrity": "sha512-6N9IeuyHvMBRyjNYOMJHrhwtu4WJMrYf8hVbEHD3pbbbmNOk1kmXSQs7bA4dYDUaIx4ZEzdnvo6NwC3WHd/Qow==",
"requires": {
"@babel/helper-function-name": "^7.9.5",
"@babel/helper-member-expression-to-functions": "^7.8.3",
"@babel/helper-optimise-call-expression": "^7.8.3",
"@babel/helper-plugin-utils": "^7.8.3",
"@babel/helper-replace-supers": "^7.9.6",
"@babel/helper-split-export-declaration": "^7.8.3"
}
},
"@babel/helper-create-regexp-features-plugin": {
"version": "7.8.8",
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz",
"integrity": "sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.8.3",
"@babel/helper-regex": "^7.8.3",
"regexpu-core": "^4.7.0"
}
},
"@babel/helper-define-map": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz",
"integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==",
"requires": {
"@babel/helper-function-name": "^7.8.3",
"@babel/types": "^7.8.3",
"lodash": "^4.17.13"
}
},
"@babel/helper-explode-assignable-expression": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz",
"integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==",
"requires": {
"@babel/traverse": "^7.8.3",
"@babel/types": "^7.8.3"
}
},
"@babel/helper-function-name": {
"version": "7.9.5",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz",
"integrity": "sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==",
"requires": {
"@babel/helper-get-function-arity": "^7.8.3",
"@babel/template": "^7.8.3",
"@babel/types": "^7.9.5"
}
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz",
"integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-hoist-variables": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz",
"integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-member-expression-to-functions": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz",
"integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-module-imports": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
"integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-module-transforms": {
"version": "7.9.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz",
"integrity": "sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==",
"requires": {
"@babel/helper-module-imports": "^7.8.3",
"@babel/helper-replace-supers": "^7.8.6",
"@babel/helper-simple-access": "^7.8.3",
"@babel/helper-split-export-declaration": "^7.8.3",
"@babel/template": "^7.8.6",
"@babel/types": "^7.9.0",
"lodash": "^4.17.13"
}
},
"@babel/helper-optimise-call-expression": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz",
"integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-plugin-utils": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ=="
},
"@babel/helper-regex": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz",
"integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==",
"requires": {
"lodash": "^4.17.13"
}
},
"@babel/helper-remap-async-to-generator": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz",
"integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.8.3",
"@babel/helper-wrap-function": "^7.8.3",
"@babel/template": "^7.8.3",
"@babel/traverse": "^7.8.3",
"@babel/types": "^7.8.3"
}
},
"@babel/helper-replace-supers": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz",
"integrity": "sha512-qX+chbxkbArLyCImk3bWV+jB5gTNU/rsze+JlcF6Nf8tVTigPJSI1o1oBow/9Resa1yehUO9lIipsmu9oG4RzA==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.8.3",
"@babel/helper-optimise-call-expression": "^7.8.3",
"@babel/traverse": "^7.9.6",
"@babel/types": "^7.9.6"
}
},
"@babel/helper-simple-access": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz",
"integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==",
"requires": {
"@babel/template": "^7.8.3",
"@babel/types": "^7.8.3"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz",
"integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-validator-identifier": {
"version": "7.9.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz",
"integrity": "sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g=="
},
"@babel/helper-wrap-function": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz",
"integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==",
"requires": {
"@babel/helper-function-name": "^7.8.3",
"@babel/template": "^7.8.3",
"@babel/traverse": "^7.8.3",
"@babel/types": "^7.8.3"
}
},
"@babel/helpers": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.9.6.tgz",
"integrity": "sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw==",
"requires": {
"@babel/template": "^7.8.3",
"@babel/traverse": "^7.9.6",
"@babel/types": "^7.9.6"
}
},
"@babel/highlight": {
"version": "7.9.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz",
"integrity": "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==",
"requires": {
"@babel/helper-validator-identifier": "^7.9.0",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.6.tgz",
"integrity": "sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q=="
},
"@babel/plugin-proposal-async-generator-functions": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz",
"integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==",
"requires": {
"@babel/helper-plugin-utils": "^7.8.3",
"@babel/helper-remap-async-to-generator": "^7.8.3",