-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
21311 lines (21311 loc) · 880 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": "sick-fits-backend",
"version": "2.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ampproject/toolbox-core": {
"version": "2.7.4",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-core/-/toolbox-core-2.7.4.tgz",
"integrity": "sha512-qpBhcS4urB7IKc+jx2kksN7BuvvwCo7Y3IstapWo+EW+COY5EYAUwb2pil37v3TsaqHKgX//NloFP1SKzGZAnw==",
"requires": {
"cross-fetch": "3.0.6",
"lru-cache": "6.0.0"
},
"dependencies": {
"lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
"requires": {
"yallist": "^4.0.0"
}
},
"yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
}
}
},
"@ampproject/toolbox-optimizer": {
"version": "2.7.1-alpha.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-optimizer/-/toolbox-optimizer-2.7.1-alpha.0.tgz",
"integrity": "sha512-WGPZKVQvHgNYJk1XVJCCmY+NVGTGJtvn0OALDyiegN4FJWOcilQUhCIcjMkZN59u1flz/u+sEKccM5qsROqVyg==",
"requires": {
"@ampproject/toolbox-core": "^2.7.1-alpha.0",
"@ampproject/toolbox-runtime-version": "^2.7.1-alpha.0",
"@ampproject/toolbox-script-csp": "^2.5.4",
"@ampproject/toolbox-validator-rules": "^2.7.1-alpha.0",
"abort-controller": "3.0.0",
"cross-fetch": "3.0.6",
"cssnano-simple": "1.2.1",
"dom-serializer": "1.1.0",
"domhandler": "3.3.0",
"domutils": "2.4.2",
"htmlparser2": "5.0.1",
"https-proxy-agent": "5.0.0",
"lru-cache": "6.0.0",
"node-fetch": "2.6.1",
"normalize-html-whitespace": "1.0.0",
"postcss": "7.0.32",
"postcss-safe-parser": "4.0.2",
"terser": "5.5.1"
},
"dependencies": {
"dom-serializer": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.1.0.tgz",
"integrity": "sha512-ox7bvGXt2n+uLWtCRLybYx60IrOlWL/aCebWJk1T0d4m3y2tzf4U3ij9wBMUb6YJZpz06HCCYuyCDveE2xXmzQ==",
"requires": {
"domelementtype": "^2.0.1",
"domhandler": "^3.0.0",
"entities": "^2.0.0"
}
},
"domutils": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.4.2.tgz",
"integrity": "sha512-NKbgaM8ZJOecTZsIzW5gSuplsX2IWW2mIK7xVr8hTQF2v1CJWTmLZ1HOCh5sH+IzVPAGE5IucooOkvwBRAdowA==",
"requires": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.0.1",
"domhandler": "^3.3.0"
}
},
"lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
"requires": {
"yallist": "^4.0.0"
}
},
"postcss": {
"version": "7.0.32",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz",
"integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==",
"requires": {
"chalk": "^2.4.2",
"source-map": "^0.6.1",
"supports-color": "^6.1.0"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"supports-color": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
"requires": {
"has-flag": "^3.0.0"
}
},
"terser": {
"version": "5.5.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.5.1.tgz",
"integrity": "sha512-6VGWZNVP2KTUcltUQJ25TtNjx/XgdDsBDKGt8nN0MpydU36LmbPPcMBd2kmtZNNGVVDLg44k7GKeHHj+4zPIBQ==",
"requires": {
"commander": "^2.20.0",
"source-map": "~0.7.2",
"source-map-support": "~0.5.19"
},
"dependencies": {
"source-map": {
"version": "0.7.3",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
}
}
},
"yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
}
}
},
"@ampproject/toolbox-runtime-version": {
"version": "2.7.4",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.7.4.tgz",
"integrity": "sha512-SAdOUOERp42thVNWaBJlnFvFVvnacMVnz5z9LyUZHSnoL1EqrAW5Sz5jv+Ly+gkA8NYsEaUxAdSCBAzE9Uzb4Q==",
"requires": {
"@ampproject/toolbox-core": "2.7.4"
}
},
"@ampproject/toolbox-script-csp": {
"version": "2.5.4",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-script-csp/-/toolbox-script-csp-2.5.4.tgz",
"integrity": "sha512-+knTYetI5nWllRZ9wFcj7mYxelkiiFVRAAW/hl0ad8EnKHMH82tRlk40CapEnUHhp6Er5sCYkumQ8dngs3Q4zQ=="
},
"@ampproject/toolbox-validator-rules": {
"version": "2.7.4",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-validator-rules/-/toolbox-validator-rules-2.7.4.tgz",
"integrity": "sha512-z3JRcpIZLLdVC9XVe7YTZuB3a/eR9s2SjElYB9AWRdyJyL5Jt7+pGNv4Uwh1uHVoBXsWEVQzNOWSNtrO3mSwZA==",
"requires": {
"cross-fetch": "3.0.6"
}
},
"@apollo/client": {
"version": "3.3.7",
"resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.3.7.tgz",
"integrity": "sha512-Cb0OqqvlehlRHtHIXRIS/Pe5WYU4hHl1FznXTRSxBAN42WmBUM3zy/Unvw183RdWMyV6Kc2pFKOEuaG1K7JTAQ==",
"requires": {
"@graphql-typed-document-node/core": "^3.0.0",
"@types/zen-observable": "^0.8.0",
"@wry/context": "^0.5.2",
"@wry/equality": "^0.3.0",
"fast-json-stable-stringify": "^2.0.0",
"graphql-tag": "^2.11.0",
"hoist-non-react-statics": "^3.3.2",
"optimism": "^0.14.0",
"prop-types": "^15.7.2",
"symbol-observable": "^2.0.0",
"ts-invariant": "^0.6.0",
"tslib": "^1.10.0",
"zen-observable": "^0.8.14"
}
},
"@apollo/protobufjs": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.0.5.tgz",
"integrity": "sha512-ZtyaBH1icCgqwIGb3zrtopV2D5Q8yxibkJzlaViM08eOhTQc7rACdYu0pfORFfhllvdMZ3aq69vifYHszY4gNA==",
"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.51",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.51.tgz",
"integrity": "sha512-KANw+MkL626tq90l++hGelbl67irOJzGhUJk6a1Bt8QHOeh9tztJx+L0AqttraWKinmZn7Qi5lJZJzx45Gq0dg=="
}
}
},
"@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.26",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.26.tgz",
"integrity": "sha512-XAwXOIab51QyhBxnxySdK3nuMEUohhDsHQ5Rbco/V1vjlP75zZ0ZLHD9dTpXTN8uxKxopb2lUvJTq+M4g2Q0HQ==",
"requires": {
"xss": "^1.0.6"
}
},
"@apollographql/graphql-playground-react": {
"version": "1.7.36",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-react/-/graphql-playground-react-1.7.36.tgz",
"integrity": "sha512-T3RSiaV1/gVA1esSUDKAD4sy2S5o21kUkR+PNCxbdYsIDCPJWsFu0syUN/FRn7bZBvm8GX/JQAa+5jTaE2BElA==",
"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.58.1",
"codemirror-graphql": "^0.12.3",
"copy-to-clipboard": "^3.0.8",
"cryptiles": "4.1.2",
"cuid": "^1.3.8",
"graphiql": "^0.17.5",
"graphql": "^15.5.0",
"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.8.2",
"prettier": "2.2.1",
"prop-types": "^15.7.2",
"query-string": "5",
"react": "16.13.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.13.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": {
"core-js": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
"integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY="
},
"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"
}
},
"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=="
},
"react": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz",
"integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2"
}
},
"react-input-autosize": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/react-input-autosize/-/react-input-autosize-2.2.2.tgz",
"integrity": "sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==",
"requires": {
"prop-types": "^15.5.8"
}
},
"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"
}
},
"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.18",
"resolved": "https://registry.npmjs.org/@arch-ui/alert/-/alert-0.0.18.tgz",
"integrity": "sha512-saIVqNht626gPH7o8Y6glYfO6dPHVKVkSJWzBraxqhUcdHHxVVF+dE+l92sRxckoMQjZwRg3AHgQdc8Ioe7Afg==",
"requires": {
"@arch-ui/theme": "^0.0.11",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/badge": {
"version": "0.0.17",
"resolved": "https://registry.npmjs.org/@arch-ui/badge/-/badge-0.0.17.tgz",
"integrity": "sha512-N+2lHxTih40fJPiF3gI01AK2GrfxNmeRcpYJ6iqCPmHd6HVjpqTJKYvFp2w00l3VIOUnoc/MAqLLByMb33j1Cg==",
"requires": {
"@arch-ui/theme": "0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/button": {
"version": "0.0.22",
"resolved": "https://registry.npmjs.org/@arch-ui/button/-/button-0.0.22.tgz",
"integrity": "sha512-2vQbWD8sSRZtvcXK/ud9tncQpcOfVoSxVsvO/9lD6J2VQz5hGo/w44DfU9ZKbtVfHEcdpOS47prBq4yOBw55tA==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/common": "^0.0.12",
"@arch-ui/loading": "^0.0.18",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"react-pseudo-state": "^2.2.2",
"react-router-dom": "5.2.0"
}
},
"@arch-ui/card": {
"version": "0.0.15",
"resolved": "https://registry.npmjs.org/@arch-ui/card/-/card-0.0.15.tgz",
"integrity": "sha512-6hEYTjsg/H0Qql3MrZKYN4Xm5XoCn7E8ZzAvbhaAOCmTEWrEYT2INmmOiOPY2tpKYU51XXezDfEY/69NYUO2Bg==",
"requires": {
"@arch-ui/theme": "0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35"
}
},
"@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.12",
"resolved": "https://registry.npmjs.org/@arch-ui/common/-/common-0.0.12.tgz",
"integrity": "sha512-1ixk/ubNqJup6fMHPOxApqgKkLJ2IFlQE7s+bXTIBzokx4ogPX+jMb5qYh7NGuzN5UfZnXS6etxZ9nDdoMoIvA==",
"requires": {
"@arch-ui/theme": "^0.0.11"
}
},
"@arch-ui/confirm": {
"version": "0.0.23",
"resolved": "https://registry.npmjs.org/@arch-ui/confirm/-/confirm-0.0.23.tgz",
"integrity": "sha512-AxWbq1zibwUAHDraqpBr+NGb3T+cGC8oIbUNn4FHLK77z8UZ8k82OFOxjM/ud7x8Ah3lBbY+iFlV5wuamcqZDQ==",
"requires": {
"@arch-ui/modal-utils": "^1.0.13",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.12.5",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^8.3.0",
"react-scrolllock": "^5.0.1"
}
},
"@arch-ui/controls": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@arch-ui/controls/-/controls-0.1.9.tgz",
"integrity": "sha512-JKXhEC65qyVrZ4MsTVYhJvm8WhviPv4uxzueySkFKb/W3k1valgIgA+SJ15vwMQQbeFbU5MFz6lpIPn5IMOtyw==",
"requires": {
"@arch-ui/input": "^0.1.11",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"react-pseudo-state": "^2.2.2",
"react-radios": "^1.1.0"
}
},
"@arch-ui/day-picker": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/day-picker/-/day-picker-1.0.5.tgz",
"integrity": "sha512-3ZLvh30ogzu3elIIGuD/duEYM2myvbCaSVtJozr4tb13xnqd4ZnIPF4kM7B2g5KVhxr8SKobJtW1H+tLEN0t+g==",
"requires": {
"@arch-ui/input": "^0.1.11",
"@arch-ui/select": "^0.1.9",
"@arch-ui/theme": "^0.0.11",
"@arch-ui/typography": "^0.0.18",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@primer/octicons-react": "^11.0.0",
"chrono-node": "^1.4.8",
"date-fns": "^2.16.1",
"intersection-observer": "^0.11.0",
"moment": "^2.28.0",
"react-window": "^1.8.5"
},
"dependencies": {
"intersection-observer": {
"version": "0.11.0",
"resolved": "https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.11.0.tgz",
"integrity": "sha512-KZArj2QVnmdud9zTpKf279m2bbGfG+4/kn16UU0NL3pTVl52ZHiJ9IRNSsnn6jaHrL9EGLFM5eWjTx2fz/+zoQ=="
}
}
},
"@arch-ui/dialog": {
"version": "0.0.25",
"resolved": "https://registry.npmjs.org/@arch-ui/dialog/-/dialog-0.0.25.tgz",
"integrity": "sha512-Sp4BQchKZhFL8w8K6eHyjzaNO+48DLBV5dhfcysgMiuDeD6WIfrOOSma58nJGnfZqSPvfUXIIXi3D9/6lblG5g==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/modal-utils": "^1.0.13",
"@arch-ui/theme": "^0.0.11",
"@arch-ui/typography": "^0.0.18",
"@babel/runtime": "^7.12.5",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^8.3.0",
"react-scrolllock": "^5.0.1"
}
},
"@arch-ui/drawer": {
"version": "0.0.25",
"resolved": "https://registry.npmjs.org/@arch-ui/drawer/-/drawer-0.0.25.tgz",
"integrity": "sha512-N+FrfJbs3DdJvg0bnTaaPdFvktxNDzLGlYvYHmWXjWeQAkA1YBWrS+i4lIhNtaZE5VMsu75nXHdPTup3qgCO5Q==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/modal-utils": "^1.0.13",
"@arch-ui/theme": "^0.0.11",
"@arch-ui/typography": "^0.0.18",
"@babel/runtime": "^7.12.5",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^8.3.0",
"react-scrolllock": "^5.0.1"
}
},
"@arch-ui/dropdown": {
"version": "0.0.22",
"resolved": "https://registry.npmjs.org/@arch-ui/dropdown/-/dropdown-0.0.22.tgz",
"integrity": "sha512-X56t+jhaPMsJ5ikumVvcPJE6Gf1nlE8kYCoKNVLMsSQbhU6Ly5+lWRO5ULqLUT2SX/MxYRKFbHfN/1M0VSENqQ==",
"requires": {
"@arch-ui/modal-utils": "^1.0.13",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.12.5",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^8.3.0",
"react-router-dom": "5.2.0"
}
},
"@arch-ui/fields": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/fields/-/fields-3.0.5.tgz",
"integrity": "sha512-D+jDNamPwCIxyR6/V44RZ7QQl/Vri/Tchmv/oxYU65RwzQKtErW//FBvI820OIP/lqPxee4zYx7HYITzMxB45g==",
"requires": {
"@arch-ui/lozenge": "^0.0.17",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@primer/octicons-react": "^11.0.0"
}
},
"@arch-ui/filters": {
"version": "0.0.20",
"resolved": "https://registry.npmjs.org/@arch-ui/filters/-/filters-0.0.20.tgz",
"integrity": "sha512-Up14Hv7Z9UE8Y9x7+VJLLN/8mgCMptE3Lix7xLUyOQLR59++AoUBvm+0P6ISKY1iiXR2ksmNAql++jUVyZ1idQ==",
"requires": {
"@arch-ui/controls": "^0.1.9",
"@arch-ui/layout": "^0.2.14",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"react-radios": "^1.1.0"
}
},
"@arch-ui/hooks": {
"version": "0.0.11",
"resolved": "https://registry.npmjs.org/@arch-ui/hooks/-/hooks-0.0.11.tgz",
"integrity": "sha512-gsqZspxIVb3j+4OsQ0DihrPcBKInbvBOaTyWEwbsyzjNM6ConKRUnTRGsmanN/deI/q/S/S60YDP7j5bx1B9Bg==",
"requires": {
"@babel/runtime": "^7.11.2",
"resize-observer-polyfill": "^1.5.1"
}
},
"@arch-ui/input": {
"version": "0.1.11",
"resolved": "https://registry.npmjs.org/@arch-ui/input/-/input-0.1.11.tgz",
"integrity": "sha512-Nj3vhtP4CnRWu4/xhZ1lQtVRXJ+7yT7wbYYzy0fdGdfA6oxQXWdDIhoxRUbHx1O2lJX6h2kIBssGEtnM9GhHJA==",
"requires": {
"@arch-ui/color-utils": "0.0.2",
"@arch-ui/common": "0.0.12",
"@arch-ui/theme": "0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35"
}
},
"@arch-ui/layout": {
"version": "0.2.14",
"resolved": "https://registry.npmjs.org/@arch-ui/layout/-/layout-0.2.14.tgz",
"integrity": "sha512-H97ISJIHnhbgR9R/4Nt1CKpgi7KqhecOpNHiTJZ4B/uXi38JYnKCdtMGcOmN/uzq67ZtCLt2mn+SeBeAn0zeDQ==",
"requires": {
"@arch-ui/common": "0.0.12",
"@arch-ui/theme": "0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/loading": {
"version": "0.0.18",
"resolved": "https://registry.npmjs.org/@arch-ui/loading/-/loading-0.0.18.tgz",
"integrity": "sha512-EwBRIae0YBTk2Tkx+rEyidIEoCKfntJDoRSVQna7v5V744DxpleKDjquHlatPPehyRsNPPmDhPHGYGy1qq3MXQ==",
"requires": {
"@arch-ui/theme": "0.0.11",
"@arch-ui/typography": "0.0.18",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/lozenge": {
"version": "0.0.17",
"resolved": "https://registry.npmjs.org/@arch-ui/lozenge/-/lozenge-0.0.17.tgz",
"integrity": "sha512-L8+bm5LJk2QrooIi+QgCW4vw0AI6FyoKhHpPUyiTfIQfWwtRw3wdxe6dVnEuouBpdmcW/vXn2b4YJxaI9BuPjA==",
"requires": {
"@arch-ui/theme": "0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/modal-utils": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@arch-ui/modal-utils/-/modal-utils-1.0.13.tgz",
"integrity": "sha512-NLymMTEDtSQhbvwluAFKbAH97UyX/FDmzKLO+W0Euby2j457VJhmWcD7XYK83rGTCFukZLKipKIXoW2q2RGfDA==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"react-scrolllock": "^5.0.1",
"react-transition-group": "^4.4.1"
}
},
"@arch-ui/navbar": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/@arch-ui/navbar/-/navbar-0.1.12.tgz",
"integrity": "sha512-X3vLWd9RLrDVbf2dZATW3nuR/0MUfXJAHFJmzBTjE6yvdbJ3dw8uXmXwvdkpn34OX9hpuw/wjKhHIraFFwsaXg==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"react-router-dom": "5.2.0"
}
},
"@arch-ui/options": {
"version": "0.0.24",
"resolved": "https://registry.npmjs.org/@arch-ui/options/-/options-0.0.24.tgz",
"integrity": "sha512-SEU8hnEvYlhICnvpABDSoMsmce0poHulB6dS005lnTdc35DmqqdehlpwZb8CjC9Gv9i0BVb3nWf0fMF8CHR4Rw==",
"requires": {
"@arch-ui/common": "^0.0.12",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@primer/octicons-react": "^11.0.0",
"react-select": "^3.1.0"
}
},
"@arch-ui/pagination": {
"version": "0.0.26",
"resolved": "https://registry.npmjs.org/@arch-ui/pagination/-/pagination-0.0.26.tgz",
"integrity": "sha512-zNfllXZGKvNOqfiEJ0QsHvrGk1aL737kOnsv271smedMVJUvLtl3+JPXzSW1/Ds6ADFIzMhWEud8LBk/5Sj0wg==",
"requires": {
"@arch-ui/button": "^0.0.22",
"@arch-ui/layout": "^0.2.14",
"@arch-ui/loading": "^0.0.18",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@primer/octicons-react": "^11.0.0",
"react-router-dom": "5.2.0"
}
},
"@arch-ui/pill": {
"version": "0.1.18",
"resolved": "https://registry.npmjs.org/@arch-ui/pill/-/pill-0.1.18.tgz",
"integrity": "sha512-Do0uC8W8aQvrC9e/U6MzM4mNor0auu8zoRKW+xeUzF5gl+jr3LGdm8gFZuHrebh9aKfE5CWCSxGzX0QSH1Efgw==",
"requires": {
"@arch-ui/common": "^0.0.12",
"@arch-ui/theme": "0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@primer/octicons-react": "^11.0.0"
}
},
"@arch-ui/popout": {
"version": "0.0.23",
"resolved": "https://registry.npmjs.org/@arch-ui/popout/-/popout-0.0.23.tgz",
"integrity": "sha512-p0e3C6hO8yT5JDXZ12lx8e82VIVvt8lo0b8vnYkkl4Sm8tFKIzsNjTtpRagXVF21UdRQD5o86Yg1i1woRv4f6A==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/modal-utils": "^1.0.13",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.12.5",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@popperjs/core": "^2.5.4",
"focus-trap-react": "^8.3.0",
"react-popper": "^2.2.4"
}
},
"@arch-ui/select": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@arch-ui/select/-/select-0.1.9.tgz",
"integrity": "sha512-+4j0lBf9r6CbtRzk5TMGHnK1nxenu75PXwWjTjr8Dx5N0c7eAKKAe7RSx7qJ3DfIJP8Ar1AUrsobUA4m2WoA/A==",
"requires": {
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"react-select": "^3.1.0"
}
},
"@arch-ui/theme": {
"version": "0.0.11",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.11.tgz",
"integrity": "sha512-wLPV06stMV7mDdDSthKyGZBFaVdeEWN/9L39co2Dl3ouY+DGIFNwIG15i8DmMSKpJ9VqgF+rnG1apu5s8yd/AQ==",
"requires": {
"@arch-ui/color-utils": "0.0.2",
"@babel/runtime": "^7.11.2"
}
},
"@arch-ui/tooltip": {
"version": "0.1.14",
"resolved": "https://registry.npmjs.org/@arch-ui/tooltip/-/tooltip-0.1.14.tgz",
"integrity": "sha512-LXT997IycG6K+xHMCnZKO2syeqmKQwCtFVRvGsjkh/FpookQlLDiRSzVX8Tp20phGXYzH53w3djkNb63QqUhig==",
"requires": {
"@arch-ui/modal-utils": "^1.0.13",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@popperjs/core": "^2.4.4",
"flushable": "^1.0.0",
"react-popper": "^2.2.3"
}
},
"@arch-ui/typography": {
"version": "0.0.18",
"resolved": "https://registry.npmjs.org/@arch-ui/typography/-/typography-0.0.18.tgz",
"integrity": "sha512-phqcqDo0bm/xZrlNmyYPmb+kun9GnW3QNJtZiXr3dSR6U1SisrAaV97MZ4xebnUMraf6gyXEovuyMhKSyJ8g7Q==",
"requires": {
"@arch-ui/theme": "0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@ardatan/aggregate-error": {
"version": "0.0.6",
"resolved": "https://registry.npmjs.org/@ardatan/aggregate-error/-/aggregate-error-0.0.6.tgz",
"integrity": "sha512-vyrkEHG1jrukmzTPtyWB4NLPauUw5bQeg4uhn8f+1SSynmrOcyvlb1GKQjjgoBzElLdfXCRYX8UnBlhklOHYRQ==",
"requires": {
"tslib": "~2.0.1"
},
"dependencies": {
"tslib": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz",
"integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="
}
}
},
"@babel/code-frame": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
"integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
"requires": {
"@babel/highlight": "^7.10.4"
}
},
"@babel/compat-data": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.13.tgz",
"integrity": "sha512-U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg=="
},
"@babel/core": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.13.tgz",
"integrity": "sha512-BQKE9kXkPlXHPeqissfxo0lySWJcYdEP0hdtJOH/iJfDdhOCcgtNCjftCJg3qqauB4h+lz2N6ixM++b9DN1Tcw==",
"requires": {
"@babel/code-frame": "^7.12.13",
"@babel/generator": "^7.12.13",
"@babel/helper-module-transforms": "^7.12.13",
"@babel/helpers": "^7.12.13",
"@babel/parser": "^7.12.13",
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.12.13",
"@babel/types": "^7.12.13",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.1",
"json5": "^2.1.2",
"lodash": "^4.17.19",
"semver": "^5.4.1",
"source-map": "^0.5.0"
},
"dependencies": {
"@babel/code-frame": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz",
"integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==",
"requires": {
"@babel/highlight": "^7.12.13"
}
},
"@babel/generator": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.13.tgz",
"integrity": "sha512-9qQ8Fgo8HaSvHEt6A5+BATP7XktD/AdAnObUeTRz5/e2y3kbrxZgz32qUJJsdmwUvBJzF4AeV21nGTNwv05Mpw==",
"requires": {
"@babel/types": "^7.12.13",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-function-name": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz",
"integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==",
"requires": {
"@babel/helper-get-function-arity": "^7.12.13",
"@babel/template": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"@babel/helper-get-function-arity": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz",
"integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==",
"requires": {
"@babel/types": "^7.12.13"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz",
"integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==",
"requires": {
"@babel/types": "^7.12.13"
}
},
"@babel/highlight": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz",
"integrity": "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==",
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.12.14",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.14.tgz",
"integrity": "sha512-xcfxDq3OrBnDsA/Z8eK5/2iPcLD8qbOaSSfOw4RA6jp4i7e6dEQ7+wTwxItEwzcXPQcsry5nZk96gmVPKletjQ=="
},
"@babel/template": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz",
"integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==",
"requires": {
"@babel/code-frame": "^7.12.13",
"@babel/parser": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"@babel/traverse": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.13.tgz",
"integrity": "sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA==",
"requires": {
"@babel/code-frame": "^7.12.13",
"@babel/generator": "^7.12.13",
"@babel/helper-function-name": "^7.12.13",
"@babel/helper-split-export-declaration": "^7.12.13",
"@babel/parser": "^7.12.13",
"@babel/types": "^7.12.13",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz",
"integrity": "sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ==",
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
}
}
},
"@babel/generator": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
"integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
"requires": {
"@babel/types": "^7.12.11",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-annotate-as-pure": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz",
"integrity": "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==",
"requires": {
"@babel/types": "^7.12.13"
},
"dependencies": {
"@babel/types": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz",
"integrity": "sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ==",
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
}
}
},
"@babel/helper-builder-binary-assignment-operator-visitor": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz",
"integrity": "sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==",
"requires": {
"@babel/helper-explode-assignable-expression": "^7.12.13",
"@babel/types": "^7.12.13"
},
"dependencies": {
"@babel/types": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz",
"integrity": "sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ==",
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
}
}
},
"@babel/helper-compilation-targets": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.13.tgz",
"integrity": "sha512-dXof20y/6wB5HnLOGyLh/gobsMvDNoekcC+8MCV2iaTd5JemhFkPD73QB+tK3iFC9P0xJC73B6MvKkyUfS9cCw==",
"requires": {
"@babel/compat-data": "^7.12.13",
"@babel/helper-validator-option": "^7.12.11",
"browserslist": "^4.14.5",
"semver": "^5.5.0"
}
},
"@babel/helper-create-class-features-plugin": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.13.tgz",
"integrity": "sha512-Vs/e9wv7rakKYeywsmEBSRC9KtmE7Px+YBlESekLeJOF0zbGUicGfXSNi3o+tfXSNS48U/7K9mIOOCR79Cl3+Q==",
"requires": {
"@babel/helper-function-name": "^7.12.13",
"@babel/helper-member-expression-to-functions": "^7.12.13",
"@babel/helper-optimise-call-expression": "^7.12.13",
"@babel/helper-replace-supers": "^7.12.13",
"@babel/helper-split-export-declaration": "^7.12.13"
},
"dependencies": {
"@babel/code-frame": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz",
"integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==",
"requires": {
"@babel/highlight": "^7.12.13"
}
},
"@babel/helper-function-name": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz",
"integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==",
"requires": {
"@babel/helper-get-function-arity": "^7.12.13",
"@babel/template": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"@babel/helper-get-function-arity": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz",
"integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==",
"requires": {
"@babel/types": "^7.12.13"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz",
"integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==",
"requires": {
"@babel/types": "^7.12.13"
}
},
"@babel/highlight": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz",
"integrity": "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==",
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"