generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathNOTICE
More file actions
1189 lines (1183 loc) · 50.4 KB
/
NOTICE
File metadata and controls
1189 lines (1183 loc) · 50.4 KB
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
Innovation Sandbox on AWS
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License Version 2.0 (the "License"). You may not use this file except
in compliance with the License. A copy of the License is located at http://www.apache.org/licenses/
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the
specific language governing permissions and limitations under the License.
**********************
THIRD PARTY COMPONENTS
**********************
This software includes third party software subject to the following copyrights:
amazonlinux/amazonlinux under the CC-BY-SA-4.0 license.
@amzn/innovation-sandbox-commons under the Apache-2.0 license.
@amzn/innovation-sandbox-frontend under the Apache-2.0 license.
@aws-northstar/ui under the Apache-2.0 license.
@types/hast under the MIT license.
@types/mdast under the MIT license.
@types/unist under the MIT license.
hast-util-whitespace under the MIT license.
inline-style-parser under the MIT license.
mdast-util-from-markdown under the MIT license.
decode-named-character-reference under the MIT license.
character-entities under the MIT license.
uvu under the MIT license.
dequal under the MIT license.
diff under the BSD-3-Clause license.
kleur under the MIT license.
sade under the MIT license.
mri under the MIT license.
mdast-util-to-hast under the MIT license.
mdast-util-definitions under the MIT license.
unist-util-is under the MIT license.
unist-util-visit under the MIT license.
unist-util-visit-parents under the MIT license.
trim-lines under the MIT license.
unist-util-generated under the MIT license.
mdast-util-to-string under the MIT license.
micromark under the MIT license.
@types/debug under the MIT license.
@types/ms under the MIT license.
debug under the MIT license.
ms under the MIT license.
micromark-core-commonmark under the MIT license.
micromark-factory-destination under the MIT license.
micromark-factory-label under the MIT license.
micromark-factory-space under the MIT license.
micromark-factory-title under the MIT license.
micromark-factory-whitespace under the MIT license.
micromark-util-character under the MIT license.
micromark-util-chunked under the MIT license.
micromark-util-classify-character under the MIT license.
micromark-util-combine-extensions under the MIT license.
micromark-util-decode-numeric-character-reference under the MIT license.
micromark-util-decode-string under the MIT license.
micromark-util-encode under the MIT license.
micromark-util-html-tag-name under the MIT license.
micromark-util-normalize-identifier under the MIT license.
micromark-util-resolve-all under the MIT license.
micromark-util-sanitize-uri under the MIT license.
micromark-util-subtokenize under the MIT license.
micromark-util-symbol under the MIT license.
micromark-util-types under the MIT license.
property-information under the MIT license.
react-is under the MIT license.
react-markdown under the MIT license.
@types/react under the MIT license.
@types/prop-types under the MIT license.
csstype under the MIT license.
react under the MIT license.
loose-envify under the MIT license.
js-tokens under the MIT license.
comma-separated-tokens under the MIT license.
prop-types under the MIT license.
object-assign under the MIT license.
space-separated-tokens under the MIT license.
remark-parse under the MIT license.
remark-rehype under the MIT license.
style-to-object under the MIT license.
unified under the MIT license.
bail under the MIT license.
extend under the MIT license.
is-buffer under the MIT license.
is-plain-obj under the MIT license.
trough under the MIT license.
unist-util-position under the MIT license.
unist-util-stringify-position under the MIT license.
vfile under the MIT license.
vfile-message under the MIT license.
@cloudscape-design/components under the Apache-2.0 license.
react-transition-group under the BSD-3-Clause license.
react-dom under the MIT license.
scheduler under the MIT license.
@babel/runtime under the MIT license.
dom-helpers under the MIT license.
weekstart under the MIT license.
@cloudscape-design/collection-hooks under the Apache-2.0 license.
@cloudscape-design/component-toolkit under the Apache-2.0 license.
tslib under the 0BSD license.
@cloudscape-design/test-utils-core under the Apache-2.0 license.
css-selector-tokenizer under the MIT license.
cssesc under the MIT license.
fastparse under the MIT license.
css.escape under the MIT license.
@cloudscape-design/theming-runtime under the Apache-2.0 license.
@material/material-color-utilities under the Apache-2.0 license.
@dnd-kit/core under the MIT license.
@dnd-kit/accessibility under the MIT license.
@dnd-kit/utilities under the MIT license.
@dnd-kit/sortable under the MIT license.
ace-builds under the BSD-3-Clause license.
clsx under the MIT license.
d3-shape under the BSD-3-Clause license.
d3-path under the BSD-3-Clause license.
date-fns under the MIT license.
intl-messageformat under the BSD-3-Clause license.
@formatjs/ecma402-abstract under the MIT license.
@formatjs/fast-memoize under the MIT license.
@formatjs/intl-localematcher under the MIT license.
decimal.js under the MIT license.
@formatjs/icu-messageformat-parser under the MIT license.
@formatjs/icu-skeleton-parser under the MIT license.
mnth under the MIT license.
react-keyed-flatten-children under the MIT license.
@tanstack/react-query under the MIT license.
@tanstack/query-core under the MIT license.
@types/react-dom under the MIT license.
@types/react-router-dom under the MIT license.
@types/history under the MIT license.
@types/react-router under the MIT license.
react-router-dom under the MIT license.
@remix-run/router under the MIT license.
react-router under the MIT license.
@aws-crypto/sha256-js under the Apache-2.0 license.
@aws-crypto/util under the Apache-2.0 license.
@smithy/is-array-buffer under the Apache-2.0 license.
@smithy/util-buffer-from under the Apache-2.0 license.
@smithy/util-utf8 under the Apache-2.0 license.
@aws-sdk/types under the Apache-2.0 license.
@smithy/types under the Apache-2.0 license.
@aws-sdk/client-cognito-identity under the Apache-2.0 license.
@aws-crypto/sha256-browser under the Apache-2.0 license.
@aws-crypto/supports-web-crypto under the Apache-2.0 license.
@aws-sdk/util-locate-window under the Apache-2.0 license.
@aws-sdk/core under the Apache-2.0 license.
@aws-sdk/xml-builder under the Apache-2.0 license.
fast-xml-parser under the MIT license.
fast-xml-builder under the MIT license.
strnum under the MIT license.
@smithy/core under the Apache-2.0 license.
@smithy/middleware-serde under the Apache-2.0 license.
@smithy/protocol-http under the Apache-2.0 license.
@smithy/util-base64 under the Apache-2.0 license.
@smithy/util-body-length-browser under the Apache-2.0 license.
@smithy/util-middleware under the Apache-2.0 license.
@smithy/util-stream under the Apache-2.0 license.
@smithy/fetch-http-handler under the Apache-2.0 license.
@smithy/querystring-builder under the Apache-2.0 license.
@smithy/util-uri-escape under the Apache-2.0 license.
@smithy/node-http-handler under the Apache-2.0 license.
@smithy/abort-controller under the Apache-2.0 license.
@smithy/util-hex-encoding under the Apache-2.0 license.
@smithy/uuid under the Apache-2.0 license.
@smithy/node-config-provider under the Apache-2.0 license.
@smithy/property-provider under the Apache-2.0 license.
@smithy/shared-ini-file-loader under the Apache-2.0 license.
@smithy/signature-v4 under the Apache-2.0 license.
@smithy/smithy-client under the Apache-2.0 license.
@smithy/middleware-endpoint under the Apache-2.0 license.
@smithy/url-parser under the Apache-2.0 license.
@smithy/querystring-parser under the Apache-2.0 license.
@smithy/middleware-stack under the Apache-2.0 license.
@aws-sdk/credential-provider-node under the Apache-2.0 license.
@aws-sdk/credential-provider-env under the Apache-2.0 license.
@aws-sdk/credential-provider-http under the Apache-2.0 license.
@aws-sdk/credential-provider-ini under the Apache-2.0 license.
@aws-sdk/credential-provider-login under the Apache-2.0 license.
@aws-sdk/nested-clients under the Apache-2.0 license.
@aws-sdk/middleware-host-header under the Apache-2.0 license.
@aws-sdk/middleware-logger under the Apache-2.0 license.
@aws-sdk/middleware-recursion-detection under the Apache-2.0 license.
@aws/lambda-invoke-store under the Apache-2.0 license.
@aws-sdk/middleware-user-agent under the Apache-2.0 license.
@aws-sdk/util-endpoints under the Apache-2.0 license.
@smithy/util-endpoints under the Apache-2.0 license.
@aws-sdk/region-config-resolver under the Apache-2.0 license.
@smithy/config-resolver under the Apache-2.0 license.
@smithy/util-config-provider under the Apache-2.0 license.
@aws-sdk/util-user-agent-browser under the Apache-2.0 license.
bowser under the MIT license.
@aws-sdk/util-user-agent-node under the Apache-2.0 license.
@smithy/hash-node under the Apache-2.0 license.
@smithy/invalid-dependency under the Apache-2.0 license.
@smithy/middleware-content-length under the Apache-2.0 license.
@smithy/middleware-retry under the Apache-2.0 license.
@smithy/service-error-classification under the Apache-2.0 license.
@smithy/util-retry under the Apache-2.0 license.
@smithy/util-body-length-node under the Apache-2.0 license.
@smithy/util-defaults-mode-browser under the Apache-2.0 license.
@smithy/util-defaults-mode-node under the Apache-2.0 license.
@smithy/credential-provider-imds under the Apache-2.0 license.
@aws-sdk/credential-provider-process under the Apache-2.0 license.
@aws-sdk/credential-provider-sso under the Apache-2.0 license.
@aws-sdk/client-sso under the Apache-2.0 license.
@aws-sdk/token-providers under the Apache-2.0 license.
@aws-sdk/credential-provider-web-identity under the Apache-2.0 license.
@aws-sdk/client-cognito-identity-provider under the Apache-2.0 license.
@aws-sdk/credential-provider-cognito-identity under the Apache-2.0 license.
@aws-sdk/protocol-http under the Apache-2.0 license.
@aws-sdk/querystring-parser under the Apache-2.0 license.
@aws-sdk/signature-v4 under the Apache-2.0 license.
@aws-sdk/eventstream-codec under the Apache-2.0 license.
@aws-crypto/crc32 under the Apache-2.0 license.
@aws-sdk/util-utf8-browser under the Apache-2.0 license.
@aws-sdk/util-hex-encoding under the Apache-2.0 license.
@aws-sdk/is-array-buffer under the Apache-2.0 license.
@aws-sdk/util-middleware under the Apache-2.0 license.
@aws-sdk/util-uri-escape under the Apache-2.0 license.
@aws-sdk/util-utf8 under the Apache-2.0 license.
@aws-sdk/util-buffer-from under the Apache-2.0 license.
@cloudscape-design/design-tokens under the Apache-2.0 license.
@cloudscape-design/global-styles under the Apache-2.0 license.
@data-driven-forms/react-form-renderer under the Apache-2.0 license.
final-form under the MIT license.
final-form-arrays under the MIT license.
final-form-focus under the MIT license.
lodash under the MIT license.
react-final-form under the MIT license.
react-final-form-arrays under the MIT license.
@types/uuid under the MIT license.
amazon-cognito-identity-js under the Apache-2.0 license.
buffer under the MIT license.
base64-js under the MIT license.
ieee754 under the BSD-3-Clause license.
isarray under the MIT license.
fast-base64-decode under the MIT license.
isomorphic-unfetch under the MIT license.
node-fetch under the MIT license.
tr46 under the MIT license.
webidl-conversions under the BSD-2-Clause license.
whatwg-url under the MIT license.
unfetch under the MIT license.
js-cookie under the MIT license.
cross-fetch under the MIT license.
react-qr-code under the MIT license.
qr.js under the MIT license.
remark-frontmatter under the MIT license.
mdast-util-frontmatter under the MIT license.
mdast-util-phrasing under the MIT license.
mdast-util-to-markdown under the MIT license.
longest-streak under the MIT license.
zwitch under the MIT license.
micromark-extension-frontmatter under the MIT license.
fault under the MIT license.
format under the MIT license.
remark-gfm under the MIT license.
mdast-util-gfm under the MIT license.
mdast-util-gfm-autolink-literal under the MIT license.
ccount under the MIT license.
mdast-util-find-and-replace under the MIT license.
escape-string-regexp under the MIT license.
mdast-util-gfm-footnote under the MIT license.
mdast-util-gfm-strikethrough under the MIT license.
mdast-util-gfm-table under the MIT license.
markdown-table under the MIT license.
mdast-util-gfm-task-list-item under the MIT license.
micromark-extension-gfm under the MIT license.
micromark-extension-gfm-autolink-literal under the MIT license.
micromark-extension-gfm-footnote under the MIT license.
micromark-extension-gfm-strikethrough under the MIT license.
micromark-extension-gfm-table under the MIT license.
micromark-extension-gfm-tagfilter under the MIT license.
micromark-extension-gfm-task-list-item under the MIT license.
use-debounce under the MIT license.
uuid under the MIT license.
@hookform/resolvers under the MIT license.
react-hook-form under the MIT license.
@standard-schema/utils under the MIT license.
classnames under the MIT license.
file-loader under the MIT license.
webpack under the MIT license.
ajv under the MIT license.
fast-deep-equal under the MIT license.
fast-uri under the BSD-3-Clause license.
require-from-string under the MIT license.
ajv-keywords under the MIT license.
es-module-lexer under the MIT license.
eslint-scope under the BSD-2-Clause license.
esrecurse under the BSD-2-Clause license.
estraverse under the BSD-2-Clause license.
json-schema-traverse under the MIT license.
schema-utils under the MIT license.
@types/json-schema under the MIT license.
ajv-formats under the MIT license.
@types/eslint-scope under the MIT license.
@types/eslint under the MIT license.
@types/estree under the MIT license.
@webassemblyjs/ast under the MIT license.
@webassemblyjs/helper-numbers under the MIT license.
@webassemblyjs/floating-point-hex-parser under the MIT license.
@webassemblyjs/helper-api-error under the MIT license.
@xtuc/long under the Apache-2.0 license.
@webassemblyjs/helper-wasm-bytecode under the MIT license.
@webassemblyjs/wasm-edit under the MIT license.
@webassemblyjs/helper-buffer under the MIT license.
@webassemblyjs/helper-wasm-section under the MIT license.
@webassemblyjs/wasm-gen under the MIT license.
@webassemblyjs/ieee754 under the MIT license.
@xtuc/ieee754 under the BSD-3-Clause license.
@webassemblyjs/leb128 under the Apache-2.0 license.
@webassemblyjs/utf8 under the MIT license.
@webassemblyjs/wasm-opt under the MIT license.
@webassemblyjs/wasm-parser under the MIT license.
@webassemblyjs/wast-printer under the MIT license.
acorn under the MIT license.
acorn-import-phases under the MIT license.
browserslist under the MIT license.
baseline-browser-mapping under the Apache-2.0 license.
caniuse-lite under the CC-BY-4.0 license.
electron-to-chromium under the ISC license.
node-releases under the MIT license.
update-browserslist-db under the MIT license.
escalade under the MIT license.
picocolors under the ISC license.
chrome-trace-event under the MIT license.
enhanced-resolve under the MIT license.
graceful-fs under the ISC license.
tapable under the MIT license.
events under the MIT license.
glob-to-regexp under the BSD-2-Clause license.
json-parse-even-better-errors under the MIT license.
loader-runner under the MIT license.
mime-types under the MIT license.
mime-db under the MIT license.
neo-async under the MIT license.
terser-webpack-plugin under the MIT license.
@jridgewell/trace-mapping under the MIT license.
@jridgewell/resolve-uri under the MIT license.
@jridgewell/sourcemap-codec under the MIT license.
jest-worker under the MIT license.
supports-color under the MIT license.
has-flag under the MIT license.
@types/node under the MIT license.
undici-types under the MIT license.
merge-stream under the MIT license.
serialize-javascript under the BSD-3-Clause license.
randombytes under the MIT license.
safe-buffer under the MIT license.
terser under the BSD-2-Clause license.
@jridgewell/source-map under the MIT license.
@jridgewell/gen-mapping under the MIT license.
commander under the MIT license.
source-map-support under the MIT license.
source-map under the BSD-3-Clause license.
buffer-from under the MIT license.
watchpack under the MIT license.
webpack-sources under the MIT license.
loader-utils under the MIT license.
big.js under the MIT license.
emojis-list under the MIT license.
json5 under the MIT license.
fast-json-stable-stringify under the MIT license.
uri-js under the BSD-2-Clause license.
punycode under the MIT license.
framer-motion under the MIT license.
motion-dom under the MIT license.
motion-utils under the MIT license.
front-matter under the MIT license.
argparse under the Python-2.0 license.
sprintf-js under the BSD-3-Clause license.
js-yaml under the MIT license.
esprima under the BSD-2-Clause license.
react-icons under the MIT license.
devlop under the MIT license.
hast-util-to-jsx-runtime under the MIT license.
estree-util-is-identifier-name under the MIT license.
mdast-util-mdx-expression under the MIT license.
@types/estree-jsx under the MIT license.
mdast-util-mdx-jsx under the MIT license.
parse-entities under the MIT license.
character-entities-legacy under the MIT license.
character-reference-invalid under the MIT license.
is-alphanumerical under the MIT license.
is-alphabetical under the MIT license.
is-decimal under the MIT license.
is-hexadecimal under the MIT license.
stringify-entities under the MIT license.
character-entities-html4 under the MIT license.
mdast-util-mdxjs-esm under the MIT license.
style-to-js under the MIT license.
html-url-attributes under the MIT license.
@ungap/structured-clone under the ISC license.
react-toastify under the MIT license.
@testing-library/dom under the MIT license.
@babel/code-frame under the MIT license.
@babel/helper-validator-identifier under the MIT license.
@types/aria-query under the MIT license.
aria-query under the Apache-2.0 license.
dom-accessibility-api under the MIT license.
lz-string under the MIT license.
pretty-format under the MIT license.
ansi-styles under the MIT license.
ansi-regex under the MIT license.
@testing-library/jest-dom under the MIT license.
@adobe/css-tools under the MIT license.
redent under the MIT license.
indent-string under the MIT license.
strip-indent under the MIT license.
min-indent under the MIT license.
@testing-library/react under the MIT license.
@testing-library/user-event under the MIT license.
@typescript-eslint/eslint-plugin under the MIT license.
@typescript-eslint/parser under the MIT license.
eslint under the MIT license.
globals under the MIT license.
ignore under the MIT license.
type-fest under the MIT license.
@eslint-community/eslint-utils under the MIT license.
eslint-visitor-keys under the Apache-2.0 license.
@eslint-community/regexpp under the MIT license.
@eslint/eslintrc under the MIT license.
espree under the BSD-2-Clause license.
acorn-jsx under the MIT license.
import-fresh under the MIT license.
parent-module under the MIT license.
callsites under the MIT license.
resolve-from under the MIT license.
minimatch under the BlueOak-1.0.0 license.
brace-expansion under the MIT license.
balanced-match under the MIT license.
strip-json-comments under the MIT license.
@eslint/js under the MIT license.
@humanwhocodes/config-array under the Apache-2.0 license.
@humanwhocodes/object-schema under the BSD-3-Clause license.
@humanwhocodes/module-importer under the Apache-2.0 license.
@nodelib/fs.walk under the MIT license.
@nodelib/fs.scandir under the MIT license.
@nodelib/fs.stat under the MIT license.
run-parallel under the MIT license.
queue-microtask under the MIT license.
fastq under the ISC license.
reusify under the MIT license.
chalk under the MIT license.
color-convert under the MIT license.
color-name under the MIT license.
cross-spawn under the MIT license.
path-key under the MIT license.
shebang-command under the MIT license.
shebang-regex under the MIT license.
which under the ISC license.
isexe under the ISC license.
doctrine under the Apache-2.0 license.
esutils under the BSD-2-Clause license.
esquery under the BSD-3-Clause license.
file-entry-cache under the MIT license.
flat-cache under the MIT license.
flatted under the ISC license.
keyv under the MIT license.
json-buffer under the MIT license.
rimraf under the ISC license.
glob under the ISC license.
fs.realpath under the ISC license.
inflight under the ISC license.
once under the ISC license.
wrappy under the ISC license.
inherits under the ISC license.
path-is-absolute under the MIT license.
find-up under the MIT license.
locate-path under the MIT license.
p-locate under the MIT license.
p-limit under the MIT license.
yocto-queue under the MIT license.
path-exists under the MIT license.
glob-parent under the ISC license.
is-glob under the MIT license.
is-extglob under the MIT license.
graphemer under the MIT license.
imurmurhash under the MIT license.
is-path-inside under the MIT license.
json-stable-stringify-without-jsonify under the MIT license.
levn under the MIT license.
prelude-ls under the MIT license.
type-check under the MIT license.
lodash.merge under the MIT license.
natural-compare under the MIT license.
optionator under the MIT license.
deep-is under the MIT license.
fast-levenshtein under the MIT license.
word-wrap under the MIT license.
strip-ansi under the MIT license.
text-table under the MIT license.
typescript under the Apache-2.0 license.
@typescript-eslint/scope-manager under the MIT license.
@typescript-eslint/types under the MIT license.
@typescript-eslint/visitor-keys under the MIT license.
@typescript-eslint/typescript-estree under the MIT license.
@typescript-eslint/project-service under the MIT license.
@typescript-eslint/tsconfig-utils under the MIT license.
semver under the ISC license.
tinyglobby under the MIT license.
fdir under the MIT license.
picomatch under the MIT license.
ts-api-utils under the MIT license.
@typescript-eslint/type-utils under the MIT license.
@typescript-eslint/utils under the MIT license.
@vitejs/plugin-react under the MIT license.
vite under the MIT license.
sass under the MIT license.
chokidar under the MIT license.
readdirp under the MIT license.
immutable under the MIT license.
source-map-js under the BSD-3-Clause license.
@parcel/watcher under the MIT license.
detect-libc under the Apache-2.0 license.
node-addon-api under the MIT license.
@parcel/watcher-android-arm64 under the MIT license.
@parcel/watcher-darwin-arm64 under the MIT license.
@parcel/watcher-darwin-x64 under the MIT license.
@parcel/watcher-freebsd-x64 under the MIT license.
@parcel/watcher-linux-arm-glibc under the MIT license.
@parcel/watcher-linux-arm-musl under the MIT license.
@parcel/watcher-linux-arm64-glibc under the MIT license.
@parcel/watcher-linux-arm64-musl under the MIT license.
@parcel/watcher-linux-x64-glibc under the MIT license.
@parcel/watcher-linux-x64-musl under the MIT license.
@parcel/watcher-win32-arm64 under the MIT license.
@parcel/watcher-win32-ia32 under the MIT license.
@parcel/watcher-win32-x64 under the MIT license.
tsx under the MIT license.
esbuild under the MIT license.
@esbuild/aix-ppc64 under the MIT license.
@esbuild/android-arm under the MIT license.
@esbuild/android-arm64 under the MIT license.
@esbuild/android-x64 under the MIT license.
@esbuild/darwin-arm64 under the MIT license.
@esbuild/darwin-x64 under the MIT license.
@esbuild/freebsd-arm64 under the MIT license.
@esbuild/freebsd-x64 under the MIT license.
@esbuild/linux-arm under the MIT license.
@esbuild/linux-arm64 under the MIT license.
@esbuild/linux-ia32 under the MIT license.
@esbuild/linux-loong64 under the MIT license.
@esbuild/linux-mips64el under the MIT license.
@esbuild/linux-ppc64 under the MIT license.
@esbuild/linux-riscv64 under the MIT license.
@esbuild/linux-s390x under the MIT license.
@esbuild/linux-x64 under the MIT license.
@esbuild/netbsd-arm64 under the MIT license.
@esbuild/netbsd-x64 under the MIT license.
@esbuild/openbsd-arm64 under the MIT license.
@esbuild/openbsd-x64 under the MIT license.
@esbuild/openharmony-arm64 under the MIT license.
@esbuild/sunos-x64 under the MIT license.
@esbuild/win32-arm64 under the MIT license.
@esbuild/win32-ia32 under the MIT license.
@esbuild/win32-x64 under the MIT license.
get-tsconfig under the MIT license.
resolve-pkg-maps under the MIT license.
fsevents under the MIT license.
postcss under the MIT license.
nanoid under the MIT license.
rollup under the MIT license.
@rollup/rollup-android-arm-eabi under the MIT license.
@rollup/rollup-android-arm64 under the MIT license.
@rollup/rollup-darwin-arm64 under the MIT license.
@rollup/rollup-darwin-x64 under the MIT license.
@rollup/rollup-freebsd-arm64 under the MIT license.
@rollup/rollup-freebsd-x64 under the MIT license.
@rollup/rollup-linux-arm-gnueabihf under the MIT license.
@rollup/rollup-linux-arm-musleabihf under the MIT license.
@rollup/rollup-linux-arm64-gnu under the MIT license.
@rollup/rollup-linux-arm64-musl under the MIT license.
@rollup/rollup-linux-loong64-gnu under the MIT license.
@rollup/rollup-linux-loong64-musl under the MIT license.
@rollup/rollup-linux-ppc64-gnu under the MIT license.
@rollup/rollup-linux-ppc64-musl under the MIT license.
@rollup/rollup-linux-riscv64-gnu under the MIT license.
@rollup/rollup-linux-riscv64-musl under the MIT license.
@rollup/rollup-linux-s390x-gnu under the MIT license.
@rollup/rollup-linux-x64-gnu under the MIT license.
@rollup/rollup-linux-x64-musl under the MIT license.
@rollup/rollup-openbsd-x64 under the MIT license.
@rollup/rollup-openharmony-arm64 under the MIT license.
@rollup/rollup-win32-arm64-msvc under the MIT license.
@rollup/rollup-win32-ia32-msvc under the MIT license.
@rollup/rollup-win32-x64-gnu under the MIT license.
@rollup/rollup-win32-x64-msvc under the MIT license.
@babel/core under the MIT license.
@babel/generator under the MIT license.
@babel/parser under the MIT license.
@babel/types under the MIT license.
@babel/helper-string-parser under the MIT license.
@babel/traverse under the MIT license.
@babel/helper-globals under the MIT license.
@babel/template under the MIT license.
jsesc under the MIT license.
@babel/helper-compilation-targets under the MIT license.
@babel/compat-data under the MIT license.
@babel/helper-validator-option under the MIT license.
lru-cache under the ISC license.
yallist under the ISC license.
@babel/helper-module-transforms under the MIT license.
@babel/helper-module-imports under the MIT license.
@babel/helpers under the MIT license.
@jridgewell/remapping under the MIT license.
convert-source-map under the MIT license.
gensync under the MIT license.
@babel/plugin-transform-react-jsx-self under the MIT license.
@babel/helper-plugin-utils under the MIT license.
@babel/plugin-transform-react-jsx-source under the MIT license.
@rolldown/pluginutils under the MIT license.
@types/babel__core under the MIT license.
@types/babel__generator under the MIT license.
to-fast-properties under the MIT license.
@types/babel__template under the MIT license.
@types/babel__traverse under the MIT license.
react-refresh under the MIT license.
eslint-config-prettier under the MIT license.
eslint-plugin-prettier under the MIT license.
prettier under the MIT license.
prettier-linter-helpers under the MIT license.
fast-diff under the Apache-2.0 license.
synckit under the MIT license.
@pkgr/core under the MIT license.
eslint-plugin-react under the MIT license.
array-includes under the MIT license.
call-bind under the MIT license.
call-bind-apply-helpers under the MIT license.
es-errors under the MIT license.
function-bind under the MIT license.
es-define-property under the MIT license.
get-intrinsic under the MIT license.
es-object-atoms under the MIT license.
get-proto under the MIT license.
dunder-proto under the MIT license.
gopd under the MIT license.
has-symbols under the MIT license.
hasown under the MIT license.
math-intrinsics under the MIT license.
set-function-length under the MIT license.
define-data-property under the MIT license.
has-property-descriptors under the MIT license.
call-bound under the MIT license.
define-properties under the MIT license.
object-keys under the MIT license.
es-abstract under the MIT license.
array-buffer-byte-length under the MIT license.
is-array-buffer under the MIT license.
arraybuffer.prototype.slice under the MIT license.
available-typed-arrays under the MIT license.
possible-typed-array-names under the MIT license.
data-view-buffer under the MIT license.
is-data-view under the MIT license.
is-typed-array under the MIT license.
which-typed-array under the MIT license.
for-each under the MIT license.
is-callable under the MIT license.
has-tostringtag under the MIT license.
data-view-byte-length under the MIT license.
data-view-byte-offset under the MIT license.
es-set-tostringtag under the MIT license.
es-to-primitive under the MIT license.
is-date-object under the MIT license.
is-symbol under the MIT license.
safe-regex-test under the MIT license.
is-regex under the MIT license.
function.prototype.name under the MIT license.
functions-have-names under the MIT license.
get-symbol-description under the MIT license.
globalthis under the MIT license.
has-proto under the MIT license.
internal-slot under the MIT license.
side-channel under the MIT license.
object-inspect under the MIT license.
side-channel-list under the MIT license.
side-channel-map under the MIT license.
side-channel-weakmap under the MIT license.
is-negative-zero under the MIT license.
is-set under the MIT license.
is-shared-array-buffer under the MIT license.
is-string under the MIT license.
is-weakref under the MIT license.
object.assign under the MIT license.
own-keys under the MIT license.
safe-push-apply under the MIT license.
regexp.prototype.flags under the MIT license.
set-function-name under the MIT license.
safe-array-concat under the MIT license.
set-proto under the MIT license.
stop-iteration-iterator under the MIT license.
string.prototype.trim under the MIT license.
string.prototype.trimend under the MIT license.
string.prototype.trimstart under the MIT license.
typed-array-buffer under the MIT license.
typed-array-byte-length under the MIT license.
typed-array-byte-offset under the MIT license.
reflect.getprototypeof under the MIT license.
which-builtin-type under the MIT license.
is-async-function under the MIT license.
async-function under the MIT license.
is-finalizationregistry under the MIT license.
is-generator-function under the MIT license.
generator-function under the MIT license.
which-boxed-primitive under the MIT license.
is-bigint under the MIT license.
has-bigints under the MIT license.
is-boolean-object under the MIT license.
is-number-object under the MIT license.
which-collection under the MIT license.
is-map under the MIT license.
is-weakmap under the MIT license.
is-weakset under the MIT license.
typed-array-length under the MIT license.
unbox-primitive under the MIT license.
array.prototype.findlast under the MIT license.
es-shim-unscopables under the MIT license.
array.prototype.flatmap under the MIT license.
array.prototype.tosorted under the MIT license.
es-iterator-helpers under the MIT license.
iterator.prototype under the MIT license.
jsx-ast-utils under the MIT license.
array.prototype.flat under the MIT license.
object.values under the MIT license.
object.entries under the MIT license.
object.fromentries under the MIT license.
resolve under the MIT license.
is-core-module under the MIT license.
node-exports-info under the MIT license.
path-parse under the MIT license.
supports-preserve-symlinks-flag under the MIT license.
string.prototype.matchall under the MIT license.
string.prototype.repeat under the MIT license.
eslint-plugin-react-hooks under the MIT license.
eslint-plugin-react-refresh under the MIT license.
eslint-plugin-simple-import-sort under the MIT license.
jsdom under the MIT license.
cssstyle under the MIT license.
rrweb-cssom under the MIT license.
@asamuzakjp/css-color under the MIT license.
@csstools/css-calc under the MIT license.
@csstools/css-parser-algorithms under the MIT license.
@csstools/css-tokenizer under the MIT license.
@csstools/css-color-parser under the MIT license.
@csstools/color-helpers under the MIT-0 license.
data-urls under the MIT license.
whatwg-mimetype under the MIT license.
form-data under the MIT license.
asynckit under the MIT license.
combined-stream under the MIT license.
delayed-stream under the MIT license.
html-encoding-sniffer under the MIT license.
whatwg-encoding under the MIT license.
iconv-lite under the MIT license.
safer-buffer under the MIT license.
http-proxy-agent under the MIT license.
agent-base under the MIT license.
https-proxy-agent under the MIT license.
is-potential-custom-element-name under the MIT license.
nwsapi under the MIT license.
parse5 under the MIT license.
entities under the BSD-2-Clause license.
saxes under the ISC license.
xmlchars under the MIT license.
symbol-tree under the MIT license.
tough-cookie under the BSD-3-Clause license.
tldts under the MIT license.
tldts-core under the MIT license.
w3c-xmlserializer under the MIT license.
xml-name-validator under the Apache-2.0 license.
ws under the MIT license.
msw under the MIT license.
cookie under the MIT license.
path-to-regexp under the MIT license.
@inquirer/confirm under the MIT license.
@inquirer/core under the MIT license.
@inquirer/ansi under the MIT license.
@inquirer/figures under the MIT license.
@inquirer/type under the MIT license.
cli-width under the ISC license.
mute-stream under the ISC license.
signal-exit under the ISC license.
wrap-ansi under the MIT license.
string-width under the MIT license.
emoji-regex under the MIT license.
is-fullwidth-code-point under the MIT license.
yoctocolors-cjs under the MIT license.
@mswjs/interceptors under the MIT license.
@open-draft/deferred-promise under the MIT license.
@open-draft/logger under the MIT license.
is-node-process under the MIT license.
outvariant under the MIT license.
@open-draft/until under the MIT license.
strict-event-emitter under the MIT license.
@types/statuses under the MIT license.
graphql under the MIT license.
headers-polyfill under the MIT license.
rettime under the MIT license.
statuses under the MIT license.
tagged-tag under the MIT license.
until-async under the MIT license.
yargs under the MIT license.
cliui under the ISC license.
get-caller-file under the ISC license.
require-directory under the MIT license.
y18n under the ISC license.
yargs-parser under the ISC license.
stylelint under the MIT license.
cacheable under the MIT license.
@keyv/serialize under the MIT license.
@cacheable/memory under the MIT license.
@keyv/bigmap under the MIT license.
hashery under the MIT license.
hookified under the MIT license.
@cacheable/utils under the MIT license.
qified under the MIT license.
@csstools/css-syntax-patches-for-csstree under the MIT-0 license.
@csstools/media-query-list-parser under the MIT license.
@csstools/selector-specificity under the MIT-0 license.
postcss-selector-parser under the MIT license.
util-deprecate under the MIT license.
@dual-bundle/import-meta-resolve under the MIT license.
colord under the MIT license.
cosmiconfig under the MIT license.
env-paths under the MIT license.
parse-json under the MIT license.
error-ex under the MIT license.
is-arrayish under the MIT license.
lines-and-columns under the MIT license.
css-functions-list under the MIT license.
css-tree under the MIT license.
mdn-data under the CC0-1.0 license.
fast-glob under the MIT license.
merge2 under the MIT license.
micromatch under the MIT license.
braces under the MIT license.
fill-range under the MIT license.
to-regex-range under the MIT license.
is-number under the MIT license.
fastest-levenshtein under the MIT license.
global-modules under the MIT license.
global-prefix under the MIT license.
ini under the ISC license.
kind-of under the MIT license.
globby under the MIT license.
array-union under the MIT license.
dir-glob under the MIT license.
path-type under the MIT license.
slash under the MIT license.
globjoin under the MIT license.
html-tags under the MIT license.
is-plain-object under the MIT license.
known-css-properties under the MIT license.
mathml-tag-names under the MIT license.
meow under the MIT license.
normalize-path under the MIT license.
postcss-resolve-nested-selector under the MIT license.
postcss-safe-parser under the MIT license.
postcss-value-parser under the MIT license.
supports-hyperlinks under the MIT license.
svg-tags under the MIT license.
table under the BSD-3-Clause license.
lodash.truncate under the MIT license.
slice-ansi under the MIT license.
astral-regex under the MIT license.
write-file-atomic under the ISC license.
stylelint-config-standard-scss under the MIT license.
stylelint-config-recommended-scss under the MIT license.
postcss-scss under the MIT license.
stylelint-config-recommended under the MIT license.
stylelint-scss under the MIT license.
postcss-media-query-parser under the MIT license.
stylelint-config-standard under the MIT license.
@amzn/innovation-sandbox-infrastructure under the Apache-2.0 license.
@aws-solutions-constructs/aws-eventbridge-lambda under the Apache-2.0 license.
aws-cdk-lib under the Apache-2.0 license.
@aws-cdk/cloud-assembly-api under the Apache-2.0 license.
jsonschema under the MIT license.
@aws-cdk/cloud-assembly-schema under the Apache-2.0 license.
@balena/dockerignore under the Apache-2.0 license.
case under the MIT license.
fs-extra under the MIT license.
jsonfile under the MIT license.
universalify under the MIT license.
yaml under the ISC license.
constructs under the Apache-2.0 license.
@aws-cdk/asset-awscli-v1 under the Apache-2.0 license.
@aws-cdk/asset-node-proxy-agent-v6 under the Apache-2.0 license.
@aws-solutions-constructs/core under the Apache-2.0 license.
deep-diff under the MIT license.
deepmerge under the MIT license.
npmlog under the ISC license.
@aws-solutions-constructs/aws-eventbridge-sqs under the Apache-2.0 license.
@aws-solutions-constructs/aws-sqs-lambda under the Apache-2.0 license.
aws-cdk under the Apache-2.0 license.
@amzn/innovation-sandbox-initialize-cleanup under the Apache-2.0 license.
@amzn/innovation-sandbox-account-drift-monitoring under the Apache-2.0 license.
@amzn/innovation-sandbox-account-lifecycle-management under the Apache-2.0 license.
@amzn/innovation-sandbox-lease-monitoring under the Apache-2.0 license.
@amzn/innovation-sandbox-accounts under the Apache-2.0 license.
@amzn/innovation-sandbox-authorizer under the Apache-2.0 license.
@amzn/innovation-sandbox-blueprints-handler under the Apache-2.0 license.
@amzn/innovation-sandbox-configurations under the Apache-2.0 license.
@amzn/innovation-sandbox-lease-templates under the Apache-2.0 license.
@amzn/innovation-sandbox-leases under the Apache-2.0 license.
@amzn/innovation-sandbox-sso-handler under the Apache-2.0 license.
@amzn/innovation-sandbox-blueprint-deployment-orchestrator under the Apache-2.0 license.
@amzn/innovation-sandbox-cost-allocation-tag-activator under the Apache-2.0 license.
@amzn/innovation-sandbox-deployment-uuid under the Apache-2.0 license.
@amzn/innovation-sandbox-idc-configurer under the Apache-2.0 license.
@amzn/innovation-sandbox-shared-json-param-parser under the Apache-2.0 license.
@amzn/innovation-sandbox-secret-rotator under the Apache-2.0 license.
@amzn/innovation-sandbox-cost-reporting under the Apache-2.0 license.
@amzn/innovation-sandbox-metrics-heartbeat under the Apache-2.0 license.
@amzn/innovation-sandbox-group-cost-reporting under the Apache-2.0 license.
@amzn/innovation-sandbox-log-archiving under the Apache-2.0 license.
@amzn/innovation-sandbox-metrics-log-subscriber under the Apache-2.0 license.
@amzn/innovation-sandbox-email-notification under the Apache-2.0 license.
@amzn/innovation-sandbox-layer-commons under the Apache-2.0 license.
@amzn/innovation-sandbox-layer-dependencies under the Apache-2.0 license.
@aws-lambda-powertools/parser under the MIT-0 license.
@middy/core under the MIT license.
@aws-lambda-powertools/commons under the MIT-0 license.
@standard-schema/spec under the MIT license.
zod under the MIT license.
@aws-lambda-powertools/logger under the MIT-0 license.
@aws-lambda-powertools/parameters under the MIT-0 license.
@aws-sdk/client-appconfigdata under the Apache-2.0 license.
@aws-sdk/client-dynamodb under the Apache-2.0 license.
@aws-sdk/dynamodb-codec under the Apache-2.0 license.
@aws-sdk/middleware-endpoint-discovery under the Apache-2.0 license.
@aws-sdk/endpoint-cache under the Apache-2.0 license.
mnemonist under the MIT license.
obliterator under the MIT license.
@smithy/util-waiter under the Apache-2.0 license.
@aws-sdk/client-secrets-manager under the Apache-2.0 license.
@aws-sdk/client-ssm under the Apache-2.0 license.
@aws-sdk/util-dynamodb under the Apache-2.0 license.
@aws-lambda-powertools/tracer under the MIT-0 license.
aws-xray-sdk-core under the Apache-2.0 license.
@types/cls-hooked under the MIT license.
atomic-batcher under the MIT license.
cls-hooked under the BSD-2-Clause license.
async-hook-jl under the MIT license.
stack-chain under the MIT license.
emitter-listener under the BSD-2-Clause license.
shimmer under the BSD-2-Clause license.
@aws-sdk/client-appconfig under the Apache-2.0 license.
@aws-sdk/client-cloudwatch-logs under the Apache-2.0 license.
@smithy/eventstream-serde-browser under the Apache-2.0 license.
@smithy/eventstream-serde-universal under the Apache-2.0 license.
@smithy/eventstream-codec under the Apache-2.0 license.
@smithy/eventstream-serde-config-resolver under the Apache-2.0 license.
@smithy/eventstream-serde-node under the Apache-2.0 license.
@aws-sdk/client-cost-explorer under the Apache-2.0 license.
@aws-sdk/client-ec2 under the Apache-2.0 license.
@aws-sdk/middleware-sdk-ec2 under the Apache-2.0 license.
@aws-sdk/util-format-url under the Apache-2.0 license.
@aws-sdk/client-eventbridge under the Apache-2.0 license.
@aws-sdk/signature-v4-multi-region under the Apache-2.0 license.
@aws-sdk/middleware-sdk-s3 under the Apache-2.0 license.
@aws-sdk/util-arn-parser under the Apache-2.0 license.
@aws-sdk/client-identitystore under the Apache-2.0 license.
@aws-sdk/client-organizations under the Apache-2.0 license.
@aws-sdk/client-s3 under the Apache-2.0 license.
@aws-crypto/sha1-browser under the Apache-2.0 license.
@aws-sdk/middleware-bucket-endpoint under the Apache-2.0 license.
@aws-sdk/middleware-expect-continue under the Apache-2.0 license.
@aws-sdk/middleware-flexible-checksums under the Apache-2.0 license.
@aws-crypto/crc32c under the Apache-2.0 license.
@aws-sdk/crc64-nvme under the Apache-2.0 license.
@aws-sdk/middleware-location-constraint under the Apache-2.0 license.
@aws-sdk/middleware-ssec under the Apache-2.0 license.
@smithy/hash-blob-browser under the Apache-2.0 license.
@smithy/chunked-blob-reader under the Apache-2.0 license.
@smithy/chunked-blob-reader-native under the Apache-2.0 license.
@smithy/hash-stream-node under the Apache-2.0 license.
@smithy/md5-js under the Apache-2.0 license.
@aws-sdk/client-ses under the Apache-2.0 license.
@aws-sdk/client-sfn under the Apache-2.0 license.
@aws-sdk/client-sso-admin under the Apache-2.0 license.
@aws-sdk/client-sts under the Apache-2.0 license.
@aws-sdk/credential-providers under the Apache-2.0 license.
@aws-sdk/lib-dynamodb under the Apache-2.0 license.
@middy/appconfig under the MIT license.
@middy/http-error-handler under the MIT license.
@middy/util under the MIT license.
@middy/http-event-normalizer under the MIT license.
@middy/http-header-normalizer under the MIT license.
@middy/http-json-body-parser under the MIT license.
@middy/http-router under the MIT license.
@middy/http-security-headers under the MIT license.
@middy/sqs-partial-batch-failure under the MIT license.
@node-saml/passport-saml under the MIT license.
@types/express under the MIT license.
@types/body-parser under the MIT license.
@types/connect under the MIT license.
@types/qs under the MIT license.