LICENSE 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  1. Apache License
  2. Version 2.0, January 2004
  3. https://www.apache.org/licenses/
  4. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  5. 1. Definitions.
  6. "License" shall mean the terms and conditions for use, reproduction,
  7. and distribution as defined by Sections 1 through 9 of this document.
  8. "Licensor" shall mean the copyright owner or entity authorized by
  9. the copyright owner that is granting the License.
  10. "Legal Entity" shall mean the union of the acting entity and all
  11. other entities that control, are controlled by, or are under common
  12. control with that entity. For the purposes of this definition,
  13. "control" means (properties) the power, direct or indirect, to cause the
  14. direction or management of such entity, whether by contract or
  15. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  16. outstanding shares, or (iii) beneficial ownership of such entity.
  17. "You" (or "Your") shall mean an individual or Legal Entity
  18. exercising permissions granted by this License.
  19. "Source" form shall mean the preferred form for making modifications,
  20. including but not limited to software source code, documentation
  21. source, and configuration files.
  22. "Object" form shall mean any form resulting from mechanical
  23. transformation or translation of a Source form, including but
  24. not limited to compiled object code, generated documentation,
  25. and conversions to other media types.
  26. "Work" shall mean the work of authorship, whether in Source or
  27. Object form, made available under the License, as indicated by a
  28. copyright notice that is included in or attached to the work
  29. (an example is provided in the Appendix below).
  30. "Derivative Works" shall mean any work, whether in Source or Object
  31. form, that is based on (or derived from) the Work and for which the
  32. editorial revisions, annotations, elaborations, or other modifications
  33. represent, as a whole, an original work of authorship. For the purposes
  34. of this License, Derivative Works shall not include works that remain
  35. separable from, or merely link (or bind by name) to the interfaces of,
  36. the Work and Derivative Works thereof.
  37. "Contribution" shall mean any work of authorship, including
  38. the original version of the Work and any modifications or additions
  39. to that Work or Derivative Works thereof, that is intentionally
  40. submitted to Licensor for inclusion in the Work by the copyright owner
  41. or by an individual or Legal Entity authorized to submit on behalf of
  42. the copyright owner. For the purposes of this definition, "submitted"
  43. means any form of electronic, verbal, or written communication sent
  44. to the Licensor or its representatives, including but not limited to
  45. communication on electronic mailing lists, source code control systems,
  46. and issue tracking systems that are managed by, or on behalf of, the
  47. Licensor for the purpose of discussing and improving the Work, but
  48. excluding communication that is conspicuously marked or otherwise
  49. designated in writing by the copyright owner as "Not a Contribution."
  50. "Contributor" shall mean Licensor and any individual or Legal Entity
  51. on behalf of whom a Contribution has been received by Licensor and
  52. subsequently incorporated within the Work.
  53. 2. Grant of Copyright License. Subject to the terms and conditions of
  54. this License, each Contributor hereby grants to You a perpetual,
  55. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  56. copyright license to reproduce, prepare Derivative Works of,
  57. publicly display, publicly perform, sublicense, and distribute the
  58. Work and such Derivative Works in Source or Object form.
  59. 3. Grant of Patent License. Subject to the terms and conditions of
  60. this License, each Contributor hereby grants to You a perpetual,
  61. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  62. (except as stated in this section) patent license to make, have made,
  63. use, offer to sell, sell, import, and otherwise transfer the Work,
  64. where such license applies only to those patent claims licensable
  65. by such Contributor that are necessarily infringed by their
  66. Contribution(s) alone or by combination of their Contribution(s)
  67. with the Work to which such Contribution(s) was submitted. If You
  68. institute patent litigation against any entity (including a
  69. cross-claim or counterclaim in a lawsuit) alleging that the Work
  70. or a Contribution incorporated within the Work constitutes direct
  71. or contributory patent infringement, then any patent licenses
  72. granted to You under this License for that Work shall terminate
  73. as of the date such litigation is filed.
  74. 4. Redistribution. You may reproduce and distribute copies of the
  75. Work or Derivative Works thereof in any medium, with or without
  76. modifications, and in Source or Object form, provided that You
  77. meet the following conditions:
  78. (a) You must give any other recipients of the Work or
  79. Derivative Works a copy of this License; and
  80. (b) You must cause any modified files to carry prominent notices
  81. stating that You changed the files; and
  82. (c) You must retain, in the Source form of any Derivative Works
  83. that You distribute, all copyright, patent, trademark, and
  84. attribution notices from the Source form of the Work,
  85. excluding those notices that do not pertain to any part of
  86. the Derivative Works; and
  87. (d) If the Work includes a "NOTICE" text file as part of its
  88. distribution, then any Derivative Works that You distribute must
  89. include a readable copy of the attribution notices contained
  90. within such NOTICE file, excluding those notices that do not
  91. pertain to any part of the Derivative Works, in at least one
  92. of the following places: within a NOTICE text file distributed
  93. as part of the Derivative Works; within the Source form or
  94. documentation, if provided along with the Derivative Works; or,
  95. within a display generated by the Derivative Works, if and
  96. wherever such third-party notices normally appear. The contents
  97. of the NOTICE file are for informational purposes only and
  98. do not modify the License. You may add Your own attribution
  99. notices within Derivative Works that You distribute, alongside
  100. or as an addendum to the NOTICE text from the Work, provided
  101. that such additional attribution notices cannot be construed
  102. as modifying the License.
  103. You may add Your own copyright statement to Your modifications and
  104. may provide additional or different license terms and conditions
  105. for use, reproduction, or distribution of Your modifications, or
  106. for any such Derivative Works as a whole, provided Your use,
  107. reproduction, and distribution of the Work otherwise complies with
  108. the conditions stated in this License.
  109. 5. Submission of Contributions. Unless You explicitly state otherwise,
  110. any Contribution intentionally submitted for inclusion in the Work
  111. by You to the Licensor shall be under the terms and conditions of
  112. this License, without any additional terms or conditions.
  113. Notwithstanding the above, nothing herein shall supersede or modify
  114. the terms of any separate license agreement you may have executed
  115. with Licensor regarding such Contributions.
  116. 6. Trademarks. This License does not grant permission to use the trade
  117. names, trademarks, service marks, or product names of the Licensor,
  118. except as required for reasonable and customary use in describing the
  119. origin of the Work and reproducing the content of the NOTICE file.
  120. 7. Disclaimer of Warranty. Unless required by applicable law or
  121. agreed to in writing, Licensor provides the Work (and each
  122. Contributor provides its Contributions) on an "AS IS" BASIS,
  123. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  124. implied, including, without limitation, any warranties or conditions
  125. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  126. PARTICULAR PURPOSE. You are solely responsible for determining the
  127. appropriateness of using or redistributing the Work and assume any
  128. risks associated with Your exercise of permissions under this License.
  129. 8. Limitation of Liability. In no event and under no legal theory,
  130. whether in tort (including negligence), contract, or otherwise,
  131. unless required by applicable law (such as deliberate and grossly
  132. negligent acts) or agreed to in writing, shall any Contributor be
  133. liable to You for damages, including any direct, indirect, special,
  134. incidental, or consequential damages of any character arising as a
  135. result of this License or out of the use or inability to use the
  136. Work (including but not limited to damages for loss of goodwill,
  137. work stoppage, computer failure or malfunction, or any and all
  138. other commercial damages or losses), even if such Contributor
  139. has been advised of the possibility of such damages.
  140. 9. Accepting Warranty or Additional Liability. While redistributing
  141. the Work or Derivative Works thereof, You may choose to offer,
  142. and charge a fee for, acceptance of support, warranty, indemnity,
  143. or other liability obligations and/or rights consistent with this
  144. License. However, in accepting such obligations, You may act only
  145. on Your own behalf and on Your sole responsibility, not on behalf
  146. of any other Contributor, and only if You agree to indemnify,
  147. defend, and hold each Contributor harmless for any liability
  148. incurred by, or claims asserted against, such Contributor by reason
  149. of your accepting any such warranty or additional liability.
  150. END OF TERMS AND CONDITIONS
  151. APPENDIX: How to apply the Apache License to your work.
  152. To apply the Apache License to your work, attach the following
  153. boilerplate notice, with the fields enclosed by brackets "[]"
  154. replaced with your own identifying information. (Don't include
  155. the brackets!) The text should be enclosed in the appropriate
  156. comment syntax for the file format. We also recommend that a
  157. file or class name and description of purpose be included on the
  158. same "printed page" as the copyright notice for easier
  159. identification within third-party archives.
  160. Copyright [yyyy] [name of copyright owner]
  161. Licensed under the Apache License, Version 2.0 (the "License");
  162. you may not use this file except in compliance with the License.
  163. You may obtain a copy of the License at
  164. https://www.apache.org/licenses/LICENSE-2.0
  165. Unless required by applicable law or agreed to in writing, software
  166. distributed under the License is distributed on an "AS IS" BASIS,
  167. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  168. See the License for the specific language governing permissions and
  169. limitations under the License.
  170. =======================================================================
  171. Seata Subcomponents:
  172. The Seata project contains subcomponents with separate copyright
  173. notices and license terms. Your use of the source code for the these
  174. subcomponents is subject to the terms and conditions of the following
  175. licenses.
  176. ========================================================================
  177. Apache-2.0 licenses
  178. ========================================================================
  179. com.github.ben-manes.caffeine:caffeine 2.9.3 Apache-2.0
  180. commons-codec:commons-codec 1.15 Apache-2.0
  181. commons-io:commons-io 2.8.0 Apache-2.0
  182. commons-lang:commons-lang 2.6 Apache-2.0
  183. org.apache.commons:commons-lang3 3.12.0 Apache-2.0
  184. com.google.errorprone:error_prone_annotations 2.21.1 Apache-2.0
  185. org.apache.httpcomponents:httpasyncclient 4.1.5 Apache-2.0
  186. org.apache.httpcomponents:httpclient 4.5.14 Apache-2.0
  187. org.apache.httpcomponents:httpcore 4.4.16 Apache-2.0
  188. org.apache.httpcomponents:httpcore-nio 4.4.16 Apache-2.0
  189. com.fasterxml.jackson.core:jackson-annotations 2.13.5 Apache-2.0
  190. com.fasterxml.jackson.core:jackson-core 2.13.5 Apache-2.0
  191. com.fasterxml.jackson.core:jackson-databind 2.13.5 Apache-2.0
  192. com.fasterxml.jackson.datatype:jackson-datatype-jdk8 2.13.5 Apache-2.0
  193. com.fasterxml.jackson.datatype:jackson-datatype-jsr310 2.13.5 Apache-2.0
  194. com.fasterxml.jackson.module:jackson-module-parameter-names 2.13.5 Apache-2.0
  195. io.jsonwebtoken:jjwt-api 0.10.5 Apache-2.0
  196. io.jsonwebtoken:jjwt-impl 0.10.5 Apache-2.0
  197. io.jsonwebtoken:jjwt-jackson 0.10.5 Apache-2.0
  198. io.netty:netty-all 4.1.101.Final Apache-2.0
  199. io.netty:netty-buffer 4.1.101.Final Apache-2.0
  200. io.netty:netty-codec 4.1.101.Final Apache-2.0
  201. io.netty:netty-codec-dns 4.1.101.Final Apache-2.0
  202. io.netty:netty-codec-haproxy 4.1.101.Final Apache-2.0
  203. io.netty:netty-codec-http 4.1.101.Final Apache-2.0
  204. io.netty:netty-codec-http2 4.1.101.Final Apache-2.0
  205. io.netty:netty-codec-memcache 4.1.101.Final Apache-2.0
  206. io.netty:netty-codec-mqtt 4.1.101.Final Apache-2.0
  207. io.netty:netty-codec-redis 4.1.101.Final Apache-2.0
  208. io.netty:netty-codec-smtp 4.1.101.Final Apache-2.0
  209. io.netty:netty-codec-socks 4.1.101.Final Apache-2.0
  210. io.netty:netty-codec-stomp 4.1.101.Final Apache-2.0
  211. io.netty:netty-codec-xml 4.1.101.Final Apache-2.0
  212. io.netty:netty-common 4.1.101.Final Apache-2.0
  213. io.netty:netty-handler 4.1.101.Final Apache-2.0
  214. io.netty:netty-handler-proxy 4.1.101.Final Apache-2.0
  215. io.netty:netty-handler-ssl-ocsp 4.1.101.Final Apache-2.0
  216. io.netty:netty-resolver 4.1.101.Final Apache-2.0
  217. io.netty:netty-resolver-dns 4.1.101.Final Apache-2.0
  218. io.netty:netty-resolver-dns-classes-macos 4.1.101.Final Apache-2.0
  219. io.netty:netty-resolver-dns-native-macos 4.1.101.Final Apache-2.0
  220. io.netty:netty-resolver-dns-native-macos 4.1.101.Final Apache-2.0
  221. io.netty:netty-transport 4.1.101.Final Apache-2.0
  222. io.netty:netty-transport-classes-epoll 4.1.101.Final Apache-2.0
  223. io.netty:netty-transport-classes-kqueue 4.1.101.Final Apache-2.0
  224. io.netty:netty-transport-native-epoll 4.1.101.Final Apache-2.0
  225. io.netty:netty-transport-native-epoll 4.1.101.Final Apache-2.0
  226. io.netty:netty-transport-native-kqueue 4.1.101.Final Apache-2.0
  227. io.netty:netty-transport-native-kqueue 4.1.101.Final Apache-2.0
  228. io.netty:netty-transport-native-unix-common 4.1.101.Final Apache-2.0
  229. io.netty:netty-transport-rxtx 4.1.101.Final Apache-2.0
  230. io.netty:netty-transport-sctp 4.1.101.Final Apache-2.0
  231. io.netty:netty-transport-udt 4.1.101.Final Apache-2.0
  232. org.yaml:snakeyaml 2.0 Apache-2.0
  233. org.springframework:spring-aop 5.3.39 Apache-2.0
  234. org.springframework:spring-beans 5.3.39 Apache-2.0
  235. org.springframework.boot:spring-boot 2.7.18 Apache-2.0
  236. org.springframework.boot:spring-boot-autoconfigure 2.7.18 Apache-2.0
  237. org.springframework.boot:spring-boot-starter 2.7.18 Apache-2.0
  238. org.springframework.boot:spring-boot-starter-json 2.7.18 Apache-2.0
  239. org.springframework.boot:spring-boot-starter-logging 2.7.18 Apache-2.0
  240. org.springframework.boot:spring-boot-starter-security 2.7.18 Apache-2.0
  241. org.springframework.boot:spring-boot-starter-tomcat 2.7.18 Apache-2.0
  242. org.springframework.boot:spring-boot-starter-web 2.7.18 Apache-2.0
  243. org.springframework:spring-context 5.3.39 Apache-2.0
  244. org.springframework:spring-core 5.3.39 Apache-2.0
  245. org.springframework:spring-expression 5.3.39 Apache-2.0
  246. org.springframework:spring-jcl 5.3.39 Apache-2.0
  247. org.springframework.security:spring-security-config 5.7.11 Apache-2.0
  248. org.springframework.security:spring-security-core 5.7.11 Apache-2.0
  249. org.springframework.security:spring-security-crypto 5.7.11 Apache-2.0
  250. org.springframework.security:spring-security-web 5.7.11 Apache-2.0
  251. org.springframework:spring-web 5.3.39 Apache-2.0
  252. org.springframework:spring-webmvc 5.3.39 Apache-2.0
  253. org.apache.tomcat:tomcat-annotations-api 9.0.83 Apache-2.0
  254. org.apache.tomcat.embed:tomcat-embed-websocket 9.0.106 Apache-2.0
  255. org.apache.tomcat.embed:tomcat-embed-core 9.0.106 Apache-2.0
  256. org.apache.tomcat.embed:tomcat-embed-core 9.0.106 Apache-2.0
  257. org.apache.tomcat.embed:tomcat-embed-el 9.0.106 Apache-2.0
  258. ========================================================================
  259. BSD-2-Clause licenses
  260. ========================================================================
  261. webidl-conversions 3.0.1 BSD-2-Clause see:licenses/webidl-conversions-BSD-2-Clause
  262. ========================================================================
  263. BSD-3-Clause licenses
  264. ========================================================================
  265. org.codehaus.janino:commons-compiler 3.1.10 BSD-3-Clause see:licenses/janino-BSD-3-Clause
  266. org.codehaus.janino:janino 3.1.10 BSD-3-Clause see:licenses/janino-BSD-3-Clause
  267. @uni/action-sheet 1.0.8 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  268. @uni/clipboard 1.0.9 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  269. @uni/env 1.1.1 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  270. @uni/file 1.1.1 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  271. @uni/image 1.1.3 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  272. @uni/navigate 1.0.11 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  273. @uni/page-scroll-to 1.0.0 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  274. @uni/vibrate 1.0.1 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  275. @uni/video 1.0.8 BSD-3-Clause see:licenses/uni-BSD-3-Clause
  276. babel-plugin-emotion/node_modules/source-map 0.5.7 BSD-3-Clause see:licenses/source-map-BSD-3-Clause
  277. driver-dom 2.2.2 BSD-3-Clause see:licenses/driver-dom-BSD-3-Clause
  278. driver-dom/node_modules/style-unit 3.0.5 BSD-3-Clause see:licenses/driver-dom-BSD-3-Clause
  279. driver-miniapp 0.1.5 BSD-3-Clause see:licenses/driver-miniapp-BSD-3-Clause
  280. driver-universal 3.5.0 BSD-3-Clause see:licenses/driver-universal-BSD-3-Clause
  281. driver-weex 2.1.0 BSD-3-Clause see:licenses/driver-weex-BSD-3-Clause
  282. driver-weex/node_modules/style-unit 3.0.5 BSD-3-Clause see:licenses/driver-weex-BSD-3-Clause
  283. dva-core/node_modules/warning 3.0.0 BSD-3-Clause see:licenses/warning-BSD-3-Clause
  284. dva/node_modules/hoist-non-react-statics 2.5.5 BSD-3-Clause see:licenses/hoist-non-react-statics-BSD-3-Clause
  285. flat 5.0.2 BSD-3-Clause see:licenses/flat-BSD-3-Clause
  286. hoist-non-react-statics 2.5.5 BSD-3-Clause see:licenses/hoist-non-react-statics-BSD-3-Clause
  287. hoist-non-react-statics 3.3.2 BSD-3-Clause see:licenses/hoist-non-react-statics-BSD-3-Clause
  288. rax 1.2.3 BSD-3-Clause see:licenses/rax-BSD-3-Clause
  289. rax-children 1.0.0 BSD-3-Clause see:licenses/rax-BSD-3-Clause
  290. rax-clone-element 1.0.0 BSD-3-Clause see:licenses/rax-BSD-3-Clause
  291. rax-create-factory 1.0.0 BSD-3-Clause see:licenses/rax-BSD-3-Clause
  292. rax-is-valid-element 1.0.1 BSD-3-Clause see:licenses/rax-BSD-3-Clause
  293. react-transition-group 2.9.0 BSD-3-Clause see:licenses/react-transition-group-BSD-3-Clause
  294. serialize-javascript 5.0.1 BSD-3-Clause see:licenses/serialize-javascript-BSD-3-Clause
  295. source-map 0.5.7 BSD-3-Clause see:licenses/source-map-BSD-3-Clause
  296. sprintf-js 1.0.3 BSD-3-Clause see:licenses/sprintf-js-BSD-3-Clause
  297. style-unit 2.0.1 BSD-3-Clause see:licenses/rax-BSD-3-Clause
  298. style-unit 3.0.5 BSD-3-Clause see:licenses/rax-BSD-3-Clause
  299. style-unit/node_modules/universal-env 2.0.0 BSD-3-Clause see:licenses/rax-BSD-3-Clause
  300. universal-choose-image 1.3.0 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  301. universal-device 1.0.3 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  302. universal-device 2.3.1 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  303. universal-env 0.6.6 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  304. universal-env 2.0.0 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  305. universal-panresponder 0.6.5 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  306. universal-panresponder/node_modules/universal-env 0.6.6 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  307. universal-transition 1.1.1 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  308. universal-unit-tool 1.0.0 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  309. universal-unit-tool/node_modules/universal-device 2.3.1 BSD-3-Clause see:licenses/universal-BSD-3-Clause
  310. warning 3.0.0 BSD-3-Clause see:licenses/warning-BSD-3-Clause
  311. ========================================================================
  312. CDDL-1.0 licenses
  313. ========================================================================
  314. javax.servlet:javax.servlet-api 4.0.1 CDDL-1.0 see:licenses/CDDL-1.0
  315. ========================================================================
  316. EPL-1.0 licenses
  317. ========================================================================
  318. ch.qos.logback:logback-classic 1.2.12 EPL-1.0 see:licenses/EPL-1.0
  319. ch.qos.logback:logback-core 1.2.12 EPL-1.0 see:licenses/EPL-1.0
  320. ========================================================================
  321. EPL-2.0 licenses
  322. ========================================================================
  323. jakarta.annotation:jakarta.annotation-api 1.3.5 EPL-2.0 see:licenses/EPL-2.0
  324. ========================================================================
  325. MIT licenses
  326. ========================================================================
  327. org.checkerframework:checker-qual 3.37.0 MIT see:licenses/checker-qual-MIT
  328. org.slf4j:jul-to-slf4j 1.7.36 MIT see:licenses/jul-to-slf4j-MIT
  329. org.slf4j:slf4j-api 1.7.36 MIT see:licenses/slf4j-api-MIT
  330. @alicloud/console-components 1.6.2 MIT see:licenses/alicloud-console-components-MIT
  331. @alicloud/console-components-actions 1.1.1 MIT see:licenses/alicloud-console-components-actions-MIT
  332. @alicloud/console-components-app-layout 1.1.4 MIT
  333. @alicloud/console-components-console-menu 1.2.12 MIT
  334. @alicloud/css-var-utils 0.1.0 MIT
  335. @alifd/babel-runtime-jsx-style-transform 1.0.0 MIT
  336. @alifd/field 1.7.0 MIT see:licenses/alifd-field-MIT
  337. @alifd/meet-react 2.9.9 MIT
  338. @alifd/meet-react-component-one 1.3.2 MIT
  339. @alifd/meet-react/node_modules/classnames 2.2.6 MIT see:licenses/classnames-MIT
  340. @alifd/next 1.24.18 MIT see:licenses/alifd-next-MIT
  341. @alifd/next/node_modules/@alifd/field 1.5.8 MIT see:licenses/alifd-field-MIT
  342. @alifd/next/node_modules/@alifd/validate 1.2.3 MIT see:licenses/alifd-validate-MIT
  343. @alifd/validate 1.4.0 MIT see:licenses/alifd-validate-MIT
  344. @babel/code-frame 7.26.2 MIT see:licenses/babel-code-frame-MIT
  345. @babel/compat-data 7.23.5 MIT see:licenses/babel-compat-data-MIT
  346. @babel/core 7.23.9 MIT see:licenses/babel-core-MIT
  347. @babel/generator 7.23.6 MIT see:licenses/babel-generator-MIT
  348. @babel/helper-annotate-as-pure 7.22.5 MIT see:licenses/babel-helper-annotate-as-pure-MIT
  349. @babel/helper-compilation-targets 7.23.6 MIT see:licenses/babel-helper-compilation-targets-MIT
  350. @babel/helper-environment-visitor 7.22.20 MIT see:licenses/babel-helper-environment-visitor-MIT
  351. @babel/helper-function-name 7.23.0 MIT see:licenses/babel-helper-function-name-MIT
  352. @babel/helper-hoist-variables 7.22.5 MIT see:licenses/babel-helper-hoist-variables-MIT
  353. @babel/helper-module-imports 7.22.15 MIT see:licenses/babel-helper-module-imports-MIT
  354. @babel/helper-module-transforms 7.23.3 MIT see:licenses/babel-helper-module-transforms-MIT
  355. @babel/helper-plugin-utils 7.22.5 MIT see:licenses/babel-helper-plugin-utils-MIT
  356. @babel/helper-simple-access 7.22.5 MIT see:licenses/babel-helper-simple-access-MIT
  357. @babel/helper-split-export-declaration 7.22.6 MIT see:licenses/babel-helper-split-export-declaration-MIT
  358. @babel/helper-string-parser 7.25.9 MIT see:licenses/babel-helper-string-parser-MIT
  359. @babel/helper-validator-identifier 7.25.9 MIT see:licenses/babel-helper-validator-identifier-MIT
  360. @babel/helper-validator-option 7.23.5 MIT see:licenses/babel-helper-validator-option-MIT
  361. @babel/helpers 7.27.0 MIT see:licenses/babel-helpers-MIT
  362. @babel/highlight 7.23.4 MIT see:licenses/babel-highlight-MIT
  363. @babel/parser 7.27.0 MIT see:licenses/babel-parser-MIT
  364. @babel/plugin-syntax-jsx 7.23.3 MIT see:licenses/babel-plugin-syntax-jsx-MIT
  365. @babel/runtime 7.27.0 MIT see:licenses/babel-runtime-MIT
  366. @babel/template 7.27.0 MIT see:licenses/babel-template-MIT
  367. @babel/traverse 7.23.9 MIT see:licenses/babel-traverse-MIT
  368. @babel/types 7.27.0 MIT see:licenses/babel-types-MIT
  369. @bpmn-io/cm-theme 0.1.0-alpha.2 MIT see:licenses/bpmn-io-cm-theme-MIT
  370. @bpmn-io/diagram-js-ui 0.2.2 MIT see:licenses/bpmn-io-diagram-js-ui-MIT
  371. @bpmn-io/feel-editor 1.1.0 MIT see:licenses/bpmn-io-feel-editor-MIT
  372. @bpmn-io/feel-lint 1.2.0 MIT see:licenses/bpmn-io-feel-lint-MIT
  373. @bpmn-io/properties-panel 3.16.0 MIT see:licenses/bpmn-io-properties-panel-MIT
  374. @codemirror/autocomplete 6.12.0 MIT see:licenses/codemirror-autocomplete-MIT
  375. @codemirror/commands 6.3.3 MIT see:licenses/codemirror-commands-MIT
  376. @codemirror/language 6.10.0 MIT see:licenses/codemirror-language-MIT
  377. @codemirror/lint 6.4.2 MIT see:licenses/codemirror-lint-MIT
  378. @codemirror/state 6.4.0 MIT see:licenses/codemirror-state-MIT
  379. @codemirror/view 6.23.0 MIT see:licenses/codemirror-view-MIT
  380. @emotion/cache 10.0.29 MIT see:licenses/emotion-cache-MIT
  381. @emotion/core 10.3.1 MIT see:licenses/emotion-core-MIT
  382. @emotion/css 10.0.27 MIT see:licenses/emotion-css-MIT
  383. @emotion/hash 0.8.0 MIT see:licenses/emotion-hash-MIT
  384. @emotion/is-prop-valid 0.8.8 MIT see:licenses/emotion-is-prop-valid-MIT
  385. @emotion/memoize 0.7.4 MIT see:licenses/emotion-memoize-MIT
  386. @emotion/serialize 0.11.16 MIT see:licenses/emotion-serialize-MIT
  387. @emotion/serialize/node_modules/csstype 2.6.21 MIT see:licenses/csstype-MIT
  388. @emotion/sheet 0.9.4 MIT see:licenses/emotion-sheet-MIT
  389. @emotion/stylis 0.8.5 MIT see:licenses/emotion-stylis-MIT
  390. @emotion/unitless 0.7.5 MIT see:licenses/emotion-unitless-MIT
  391. @emotion/utils 0.11.3 MIT see:licenses/emotion-utils-MIT
  392. @emotion/weak-memoize 0.2.5 MIT see:licenses/emotion-weak-memoize-MIT
  393. @jridgewell/gen-mapping 0.3.4 MIT see:licenses/jridgewell-gen-mapping-MIT
  394. @jridgewell/resolve-uri 3.1.2 MIT see:licenses/jridgewell-resolve-uri-MIT
  395. @jridgewell/set-array 1.1.2 MIT see:licenses/jridgewell-set-array-MIT
  396. @jridgewell/sourcemap-codec 1.4.15 MIT see:licenses/jridgewell-sourcemap-codec-MIT
  397. @jridgewell/trace-mapping 0.3.23 MIT see:licenses/jridgewell-trace-mapping-MIT
  398. @lezer/common 1.2.1 MIT see:licenses/lezer-common-MIT
  399. @lezer/highlight 1.2.0 MIT see:licenses/lezer-highlight-MIT
  400. @lezer/lr 1.4.0 MIT see:licenses/lezer-lr-MIT
  401. @lezer/markdown 1.2.0 MIT see:licenses/lezer-markdown-MIT
  402. @types/history 4.7.11 MIT see:licenses/types-history-MIT
  403. @types/hoist-non-react-statics 3.3.5 MIT see:licenses/types-hoist-non-react-statics-MIT
  404. @types/isomorphic-fetch 0.0.34 MIT see:licenses/types-isomorphic-fetch-MIT
  405. @types/parse-json 4.0.2 MIT see:licenses/types-parse-json-MIT
  406. @types/prop-types 15.7.11 MIT see:licenses/types-prop-types-MIT
  407. @types/react 16.14.56 MIT see:licenses/types-react-MIT
  408. @types/react-dom 16.9.24 MIT see:licenses/types-react-dom-MIT
  409. @types/react-router 5.1.20 MIT see:licenses/types-react-router-MIT
  410. @types/react-router-dom 16.9.24 MIT see:licenses/types-react-router-dom-MIT
  411. @types/react-router-redux 5.0.27 MIT see:licenses/types-react-router-redux-MIT
  412. @types/scheduler 0.16.8 MIT see:licenses/types-scheduler-MIT
  413. @types/use-sync-external-store 0.0.3 MIT see:licenses/types-use-sync-external-store-MIT
  414. ansi-colors 4.1.1 MIT see:licenses/ansi-colors-MIT
  415. ansi-regex 3.0.1 MIT see:licenses/ansi-regex-MIT
  416. ansi-regex 5.0.1 MIT see:licenses/ansi-regex-MIT
  417. ansi-styles 3.2.1 MIT see:licenses/ansi-styles-MIT
  418. argparse 1.0.10 MIT see:licenses/argparse-MIT
  419. asn1.js 4.10.1 MIT see:licenses/asn1.js-MIT
  420. asn1.js/node_modules/bn.js 4.12.0 MIT see:licenses/bn.js-MIT
  421. asynckit 0.4.0 MIT see:licenses/asynckit-MIT
  422. axios 1.8.2 MIT see:licenses/axios-MIT
  423. babel-plugin-emotion 10.2.2 MIT see:licenses/babel-plugin-emotion-MIT
  424. babel-plugin-emotion/node_modules/babel-plugin-macros 2.8.0 MIT see:licenses/babel-plugin-emotion-MIT
  425. babel-plugin-emotion/node_modules/convert-source-map 1.9.0 MIT see:licenses/convert-source-map-MIT
  426. babel-plugin-emotion/node_modules/cosmiconfig 6.0.0 MIT see:licenses/cosmiconfig-MIT
  427. babel-plugin-styled-components 2.1.4 MIT see:licenses/babel-plugin-styled-components-MIT
  428. babel-plugin-syntax-jsx 6.18.0 MIT see:licenses/babel-plugin-syntax-jsx-MIT
  429. babel-runtime 6.26.0 MIT see:licenses/babel-runtime-MIT
  430. babel-runtime/node_modules/regenerator-runtime 0.11.1 MIT see:licenses/regenerator-runtime-MIT
  431. balanced-match 1.0.2 MIT see:licenses/balanced-match-MIT
  432. bignumber.js 9.1.2 MIT see:licenses/bignumber.js-MIT
  433. bn.js 5.2.1 MIT see:licenses/bn.js-MIT
  434. brace-expansion 1.1.11 MIT see:licenses/brace-expansion-MIT
  435. braces 3.0.2 MIT see:licenses/braces-3.0.2-MIT
  436. braces 3.0.3 MIT see:licenses/braces-MIT
  437. braces 2.3.1 MIT see:licenses/braces-2.3.1-MIT
  438. brorand 1.1.0 MIT see:licenses/brorand-MIT
  439. browserify-aes 1.2.0 MIT see:licenses/browserify-aes-MIT
  440. browserify-rsa 4.1.0 MIT see:licenses/browserify-rsa-MIT
  441. browserify-sign/node_modules/hash-base 3.0.4 MIT see:licenses/hash-base-MIT
  442. browserify-sign/node_modules/isarray 1.0.0 MIT see:licenses/isarray-MIT
  443. browserify-sign/node_modules/readable-stream 2.3.8 MIT see:licenses/readable-stream-MIT
  444. browserify-sign/node_modules/readable-stream/node_modules/safe-buffer 5.1.2 MIT see:licenses/safe-buffer-MIT
  445. browserify-sign/node_modules/string_decoder 1.1.1 MIT see:licenses/string-decoder-MIT
  446. browserify-sign/node_modules/string_decoder/node_modules/safe-buffer 5.1.2 MIT see:licenses/safe-buffer-MIT
  447. browserslist 4.23.0 MIT see:licenses/browserslist-MIT
  448. buffer-xor 1.0.3 MIT see:licenses/buffer-xor-MIT
  449. callsites 3.1.0 MIT see:licenses/callsites-MIT
  450. camelcase 6.3.0 MIT see:licenses/camelcase-MIT
  451. camelize 1.0.1 MIT see:licenses/camelize-MIT
  452. chalk 2.4.2 MIT see:licenses/chalk-MIT
  453. chalk 4.1.2 MIT see:licenses/chalk-MIT
  454. chokidar 3.5.1 MIT see:licenses/chokidar-MIT
  455. cipher-base 1.0.4 MIT see:licenses/cipher-base-MIT
  456. classnames 2.2.6 MIT see:licenses/classnames-MIT
  457. classnames 2.5.1 MIT see:licenses/classnames-2.5.1-MIT
  458. clsx 2.1.0 MIT see:licenses/clsx-MIT
  459. color-convert 1.9.3 MIT see:licenses/color-convert-MIT
  460. color-convert 2.0.1 MIT see:licenses/color-convert-MIT
  461. color-name 1.1.3 MIT see:licenses/color-name-MIT
  462. color-name 1.1.4 MIT see:licenses/color-name-MIT
  463. combined-stream 1.0.8 MIT see:licenses/combined-stream-MIT
  464. component-event 0.2.1 MIT see:licenses/component-event-MIT
  465. concat-map 0.0.1 MIT see:licenses/concat-map-MIT
  466. convert-source-map 2.0.0 MIT see:licenses/convert-source-map-MIT
  467. core-js 2.6.12 MIT see:licenses/core-js-MIT
  468. cosmiconfig 6.0.0 MIT see:licenses/cosmiconfig-MIT
  469. core-util-is 1.0.3 MIT see:licenses/core-util-is-MIT
  470. create-hash 1.2.0 MIT see:licenses/create-hash-MIT
  471. create-hmac 1.1.7 MIT see:licenses/create-hmac-MIT
  472. crelt 1.0.6 MIT see:licenses/crelt-MIT
  473. css-to-react-native 2.3.2 MIT see:licenses/css-to-react-native-MIT
  474. css-to-react-native/node_modules/postcss-value-parser 3.3.1 MIT see:licenses/postcss-value-parse-MIT
  475. csstype 3.1.3 MIT see:licenses/csstype-MIT
  476. dayjs 1.11.10 MIT see:licenses/dayjs-MIT
  477. debug 4.3.6 MIT see:licenses/debug-MIT
  478. decamelize 4.0.0 MIT see:licenses/decamelize-MIT
  479. decode-uri-component 0.4.1 MIT see:licenses/decode-uri-component-MIT
  480. delayed-stream 1.0.0 MIT see:licenses/delayed-stream-MIT
  481. diagram-js 12.8.1 MIT see:licenses/diagram-js-MIT
  482. diagram-js-grid 0.2.0 MIT see:licenses/diagram-js-grid-MIT
  483. didi 9.0.2 MIT see:licenses/didi-MIT
  484. dom-helpers 3.4.0 MIT see:licenses/dom-helpers-MIT
  485. dom-walk 0.1.2 MIT see:licenses/dom-walk-MIT
  486. dom7 3.0.0 MIT see:licenses/dom7-MIT
  487. domify 1.4.2 MIT see:licenses/domify-MIT
  488. dva 2.4.1 MIT see:licenses/dva-MIT
  489. dva-core 1.4.0 MIT see:licenses/dva-core-MIT
  490. dva-core/node_modules/@babel/runtime 7.0.0-beta.46 MIT see:licenses/babel-runtime-MIT
  491. dva-core/node_modules/redux 3.7.2 MIT see:licenses/redux-MIT
  492. dva-core/node_modules/regenerator-runtime 0.11.1 MIT see:licenses/regenerator-runtime-MIT
  493. dva/node_modules/@babel/runtime 7.0.0-beta.46 MIT see:licenses/babel-runtime-MIT
  494. dva/node_modules/@types/react-router-dom 4.3.5 MIT see:licenses/types-react-router-dom-MIT
  495. dva/node_modules/react-redux 5.0.7 MIT see:licenses/react-redux-MIT
  496. dva/node_modules/react-router 4.3.1 MIT see:licenses/react-router-MIT
  497. dva/node_modules/react-router-dom 4.3.1 MIT see:licenses/react-router-dom-MIT
  498. dva/node_modules/react-router-redux 5.0.0-alpha.9 MIT see:licenses/react-router-redux-MIT
  499. dva/node_modules/redux 3.7.2 MIT see:licenses/redux-MIT
  500. dva/node_modules/regenerator-runtime 0.11.1 MIT see:licenses/regenerator-runtime-MIT
  501. elliptic 6.6.1 MIT see:licenses/elliptic-MIT
  502. elliptic/node_modules/bn.js 4.12.0 MIT see:licenses/bn.js-MIT
  503. encoding 0.1.13 MIT see:licenses/encoding-MIT
  504. encoding/node_modules/iconv-lite 0.6.3 MIT see:licenses/iconv-lite-MIT
  505. error-ex 1.3.2 MIT see:licenses/error-ex-MIT
  506. escalade 3.1.2 MIT see:licenses/escalade-MIT
  507. escape-string-regexp 1.0.5 MIT see:licenses/escape-string-regexp-MIT
  508. escape-string-regexp 4.0.0 MIT see:licenses/escape-string-regexp-MIT
  509. evp_bytestokey 1.0.3 MIT see:licenses/evp_bytestokey-MIT
  510. feelers 1.2.0 MIT see:licenses/feelers-MIT
  511. feelin 2.3.0 MIT see:licenses/feelin-MIT
  512. fill-range 7.0.1 MIT see:licenses/fill-range-MIT
  513. find-root 1.1.0 MIT see:licenses/find-root-MIT
  514. find-up 5.0.0 MIT see:licenses/find-up-MIT
  515. flatten 1.0.3 MIT see:licenses/flatten-MIT
  516. focus-trap 7.5.4 MIT see:licenses/focus-trap-MIT
  517. follow-redirects 1.15.6 MIT see:licenses/follow-redirects-MIT
  518. form-data 4.0.0 MIT see:licenses/form-data-MIT
  519. fsevents 2.3.3 MIT see:licenses/fsevents-MIT
  520. function-bind 1.1.2 MIT see:licenses/function-bind-MIT
  521. gensync 1.0.0-beta.2 MIT see:licenses/gensync-MIT
  522. global 4.4.0 MIT see:licenses/global-MIT
  523. globals 11.12.0 MIT see:licenses/globals-MIT
  524. growl 1.10.5 MIT see:licenses/growl-MIT
  525. hammerjs 2.0.8 MIT see:licenses/hammerjs-MIT
  526. has-flag 3.0.0 MIT see:licenses/has-flag-MIT
  527. hash-base 3.1.0 MIT see:licenses/hash-base-MIT
  528. hash.js 1.1.7 MIT see:licenses/hash.js-MIT
  529. hasown 2.0.1 MIT see:licenses/hasown-MIT
  530. he 1.2.0 MIT see:licenses/he-MIT
  531. history 4.10.1 MIT see:licenses/history-MIT
  532. hmac-drbg 1.0.1 MIT see:licenses/hmac-drbg-MIT
  533. iconv-lite 0.6.3 MIT see:licenses/iconv-lite-MIT
  534. import-fresh 3.3.0 MIT see:licenses/import-fresh-MIT
  535. invariant 2.2.4 MIT see:licenses/invariant-MIT
  536. is-arrayish 0.2.1 MIT see:licenses/is-arrayish-MIT
  537. is-binary-path 2.1.0 MIT see:licenses/is-binary-path-MIT
  538. is-core-module 2.13.1 MIT see:licenses/is-core-module-MIT
  539. is-extglob 2.1.1 MIT see:licenses/is-extglob-MIT
  540. is-fullwidth-code-point 2.0.0 MIT see:licenses/is-fullwidth-code-point-MIT
  541. is-fullwidth-code-point 3.0.0 MIT see:licenses/is-fullwidth-code-point-MIT
  542. is-glob 4.0.3 MIT see:licenses/is-glob-MIT
  543. is-number 7.0.0 MIT see:licenses/is-number-MIT
  544. is-plain-obj 2.1.0 MIT see:licenses/is-plain-obj-MIT
  545. is-plain-object 2.0.4 MIT see:licenses/is-plain-object-MIT
  546. is-what 3.14.1 MIT see:licenses/is-what-MIT
  547. isarray 0.0.1 MIT see:licenses/isarray-MIT
  548. isobject 3.0.1 MIT see:licenses/isobject-MIT
  549. isomorphic-fetch 2.2.1 MIT see:licenses/isomorphic-fetch-MIT
  550. jquery 3.7.1 MIT see:licenses/jquery-MIT
  551. js-tokens 4.0.0 MIT see:licenses/js-tokens-MIT
  552. jsesc 2.5.2 MIT see:licenses/jsesc-MIT
  553. json-parse-even-better-errors 2.3.1 MIT see:licenses/json-parse-even-better-errors-MIT
  554. json5 2.2.3 MIT see:licenses/json5-MIT
  555. lang-feel 2.0.0 MIT see:licenses/lang-feel-MIT
  556. lezer-feel 1.2.4 MIT see:licenses/lezer-feel-MIT
  557. lines-and-columns 1.2.4 MIT see:licenses/lines-and-columns-MIT
  558. loader-utils 3.2.1 MIT see:licenses/loader-utils-MIT
  559. locate-path 6.0.0 MIT see:licenses/locate-path-MIT
  560. lodash 4.17.21 MIT see:licenses/lodash-MIT
  561. lodash-es 4.17.21 MIT see:licenses/lodash-es-MIT
  562. lodash.clonedeep 4.5.0 MIT see:licenses/lodash.clonedeep-MIT
  563. log-symbols 4.0.0 MIT see:licenses/log-symbols-MIT
  564. loose-envify 1.4.0 MIT see:licenses/loose-envify-MIT
  565. luxon 3.4.4 MIT see:licenses/luxon-MIT
  566. md5.js 1.3.5 MIT see:licenses/md5.js-MIT
  567. memoize-one 5.2.1 MIT see:licenses/memoize-one-MIT
  568. merge-anything 2.4.4 MIT see:licenses/merge-anything-MIT
  569. mime-db 1.52.0 MIT see:licenses/mime-db-MIT
  570. mime-types 2.1.35 MIT see:licenses/mime-types-MIT
  571. min-dash 4.2.1 MIT see:licenses/min-dash-MIT
  572. min-document 2.19.0 MIT see:licenses/min-document-MIT
  573. min-dom 4.1.0 MIT see:licenses/min-dom-MIT
  574. minimalistic-crypto-utils 1.0.1 MIT see:licenses/minimalistic-crypto-utils-MIT
  575. mocha 8.4.0 MIT see:licenses/mocha-MIT
  576. moment 2.30.1 MIT see:licenses/moment-MIT
  577. ms 2.1.2 MIT see:licenses/ms-MIT
  578. nanoid 3.1.31 MIT see:licenses/nanoid-MIT
  579. node-fetch 2.6.7 MIT see:licenses/node-fetch-MIT
  580. node-releases 2.0.14 MIT see:licenses/node-releases-MIT
  581. normalize-path 3.0.0 MIT see:licenses/normalize-path-MIT
  582. object-assign 4.1.1 MIT see:licenses/object-assign-MIT
  583. object-refs 0.3.0 MIT see:licenses/object-refs-MIT
  584. omit.js 2.0.2 MIT see:licenses/omit.js-MIT
  585. p-limit 3.1.0 MIT see:licenses/p-limit-MIT
  586. p-locate 5.0.0 MIT see:licenses/p-locate-MIT
  587. parent-module 1.0.1 MIT see:licenses/parent-module-MIT
  588. parse-asn1/node_modules/hash-base 3.0.4 MIT see:licenses/hash-base-MIT
  589. parse-json 5.2.0 MIT see:licenses/parse-json-MIT
  590. path-exists 4.0.0 MIT see:licenses/path-exists-MIT
  591. path-intersection 2.2.1 MIT see:licenses/path-intersection-MIT
  592. path-is-absolute 1.0.1 MIT see:licenses/path-is-absolute-MIT
  593. path-parse 1.0.7 MIT see:licenses/path-parse-MIT
  594. path-to-regexp 1.9.0 MIT see:licenses/path-to-regexp-MIT
  595. path-type 4.0.0 MIT see:licenses/path-type-MIT
  596. pbkdf2 3.1.2 MIT see:licenses/pbkdf2-MIT
  597. picomatch 2.3.1 MIT see:licenses/picomatch-MIT
  598. postcss-value-parser 3.3.1 MIT see:licenses/postcss-value-parser-MIT
  599. preact 10.19.3 MIT see:licenses/preact-MIT
  600. process 0.11.10 MIT see:licenses/process-MIT
  601. process-nextick-args 2.0.1 MIT see:licenses/process-nextick-args-MIT
  602. prop-types 15.8.1 MIT see:licenses/prop-types-MIT
  603. proxy-from-env 1.1.0 MIT see:licenses/proxy-from-env-MIT
  604. randombytes 2.1.0 MIT see:licenses/randombytes-MIT
  605. react 16.14.0 MIT see:licenses/react-MIT
  606. react-dom 16.14.0 MIT see:licenses/react-dom-MIT
  607. react-is 16.13.1 MIT see:licenses/react-is-MIT
  608. react-lifecycles-compat 3.0.4 MIT see:licenses/react-lifecycles-compat-MIT
  609. react-loading-skeleton 2.2.0 MIT see:licenses/react-loading-skeleton-MIT
  610. react-redux 8.1.3 MIT see:licenses/react-redux-MIT
  611. react-redux/node_modules/react-is 18.2.0 MIT see:licenses/react-is-MIT
  612. react-router 5.3.4 MIT see:licenses/react-router-MIT
  613. react-router-dom 4.3.1 MIT see:licenses/react-router-dom-MIT
  614. react-router-dom 5.3.4 MIT see:licenses/react-router-dom-MIT
  615. react-router-redux 4.0.8 MIT see:licenses/react-router-redux-MIT
  616. react-router-redux 5.0.0-alpha.9 MIT see:licenses/react-router-redux-MIT
  617. readable-stream 3.6.2 MIT see:licenses/readable-stream-MIT
  618. readdirp 3.5.0 MIT see:licenses/readdirp-MIT
  619. redux 3.7.2 MIT see:licenses/redux-MIT
  620. redux 5.0.1 MIT see:licenses/redux-MIT
  621. redux-saga 0.16.2 MIT see:licenses/redux-saga-MIT
  622. redux-thunk 3.1.0 MIT see:licenses/redux-thunk-MIT
  623. regenerator-runtime 0.14.1 MIT see:licenses/regenerator-runtime-MIT
  624. require-directory 2.1.1 MIT see:licenses/require-directory-MIT
  625. resize-observer-polyfill 1.5.1 MIT see:licenses/resize-observer-polyfill-MIT
  626. resolve 1.22.8 MIT see:licenses/resolve-MIT
  627. resolve-from 4.0.0 MIT see:licenses/resolve-from-MIT
  628. resolve-pathname 3.0.0 MIT see:licenses/resolve-pathname-MIT
  629. ripemd160 2.0.2 MIT see:licenses/ripemd160-MIT
  630. sha.js 2.4.11 MIT see:licenses/sha.js-MIT
  631. safe-buffer 5.2.1 MIT see:licenses/safe-buffer-MIT
  632. safer-buffer 2.1.2 MIT see:licenses/safer-buffer-MIT
  633. scheduler 0.19.1 MIT see:licenses/scheduler-MIT
  634. shallow-element-equals 1.0.1 MIT see:licenses/shallow-element-equals-MIT
  635. ssr-window 3.0.0 MIT see:licenses/ssr-window-MIT
  636. string-width 2.1.1 MIT see:licenses/string-width-MIT
  637. string-width 4.2.3 MIT see:licenses/string-width-MIT
  638. string_decoder 1.3.0 MIT see:licenses/string_decoder-MIT
  639. strip-ansi 4.0.0 MIT see:licenses/strip-ansi-MIT
  640. strip-ansi 6.0.1 MIT see:licenses/strip-ansi-MIT
  641. strip-json-comments 3.1.1 MIT see:licenses/strip-json-comments-MIT
  642. style-equal 1.0.0 MIT see:licenses/style-equal-MIT
  643. style-mod 4.1.0 MIT see:licenses/style-mod-MIT
  644. styled-components 4.4.1 MIT see:licenses/styled-components-MIT
  645. stylis 3.5.4 MIT see:licenses/stylis-MIT
  646. stylis-rule-sheet 0.0.10 MIT see:licenses/stylis-rule-sheet-MIT
  647. supports-color 5.5.0 MIT see:licenses/supports-color-MIT
  648. supports-color 7.2.0 MIT see:licenses/supports-color-MIT
  649. supports-color 8.1.1 MIT see:licenses/supports-color-MIT
  650. supports-preserve-symlinks-flag 1.0.0 MIT see:licenses/supports-preserve-symlinks-flag-MIT
  651. svelte 3.59.2 MIT see:licenses/svelte-MIT
  652. swiper 6.5.1 MIT see:licenses/swiper-MIT
  653. symbol-observable 1.2.0 MIT see:licenses/symbol-observable-MIT
  654. tabbable 6.2.0 MIT see:licenses/tabbable-MIT
  655. tiny-invariant 1.3.3 MIT see:licenses/tiny-invariant-MIT
  656. tiny-svg 3.0.1 MIT see:licenses/tiny-svg-MIT
  657. tiny-warning 1.0.3 MIT see:licenses/tiny-warning-MIT
  658. to-fast-properties 2.0.0 MIT see:licenses/to-fast-properties-MIT
  659. to-regex-range 5.0.1 MIT see:licenses/to-regex-range-MIT
  660. tr46 0.0.3 MIT see:licenses/tr46-MIT
  661. update-browserslist-db 1.0.13 MIT see:licenses/update-browserslist-db-MIT
  662. use-sync-external-store 1.2.0 MIT see:licenses/use-sync-external-store-MIT
  663. util-deprecate 1.0.2 MIT see:licenses/util-deprecate-MIT
  664. value-equal 1.0.1 MIT see:licenses/value-equal-MIT
  665. w3c-keyname 2.2.8 MIT see:licenses/w3c-keyname-MIT
  666. warning 4.0.3 MIT see:licenses/warning-MIT
  667. whatwg-fetch 3.6.20 MIT see:licenses/whatwg-fetch-MIT
  668. whatwg-url 5.0.0 MIT see:licenses/whatwg-url-MIT
  669. wrap-ansi 7.0.0 MIT see:licenses/wrap-ansi-MIT
  670. yamljs 0.3.0 MIT see:licenses/yamljs-MIT
  671. yargs 16.2.0 MIT see:licenses/yargs-MIT
  672. yargs-unparser 2.0.0 MIT see:licenses/yargs-unparser-MIT
  673. yocto-queue 0.1.0 MIT see:licenses/yocto-queue-MIT
  674. ========================================================================
  675. ISC licenses
  676. ========================================================================
  677. @ungap/promise-all-settled 1.1.2 ISC see:licenses/ungap-ISC
  678. anymatch 3.1.3 ISC see:licenses/anymatch-ISC
  679. browser-stdout 1.3.1 ISC see:licenses/browser-stdout-ISC
  680. browserify-sign 4.2.3 ISC see:licenses/browserify-sign-ISC
  681. cliui 8.0.1 ISC see:licenses/cliui-ISC
  682. css-color-keywords 1.0.0 ISC see:licenses/css-color-keywords-ISC
  683. electron-to-chromium 1.4.681 ISC see:licenses/electron-to-chromium-ISC
  684. fs.realpath 1.0.0 ISC see:licenses/fs.realpath-ISC
  685. get-caller-file 2.0.5 ISC see:licenses/get-caller-file-ISC
  686. glob 7.2.3 ISC see:licenses/glob-ISC
  687. glob-parent 5.1.2 ISC see:licenses/glob-parent-ISC
  688. inflight 1.0.6 ISC see:licenses/inflight-ISC
  689. inherits 2.0.4 ISC see:licenses/inherits-ISC
  690. inherits-browser 0.1.0 ISC see:licenses/inherits-browser-ISC
  691. isexe 2.0.0 ISC see:licenses/isexe-ISC
  692. lru-cache 5.1.1 ISC see:licenses/lru-cache-ISC
  693. minimalistic-assert 1.0.1 ISC see:licenses/minimalistic-assert-ISC
  694. minimatch 3.1.2 ISC see:licenses/minimatch-ISC
  695. once 1.4.0 ISC see:licenses/once-ISC
  696. parse-asn1 5.1.7 ISC see:licenses/parse-asn1-ISC
  697. picocolors 1.0.0 ISC see:licenses/picocolors-ISC
  698. semver 6.3.1 ISC see:licenses/semver-ISC
  699. which 2.0.2 ISC see:licenses/which-ISC
  700. wide-align 1.1.3 ISC see:licenses/wide-align-ISC
  701. wrappy 1.0.2 ISC see:licenses/wrappy-ISC
  702. y18n 5.0.8 ISC see:licenses/y18n-ISC
  703. yallist 3.1.1 ISC see:licenses/yallist-ISC
  704. yaml 1.10.2 ISC see:licenses/yaml-ISC
  705. yargs-parser 20.2.4 ISC see:licenses/yargs-parser-ISC
  706. ========================================================================
  707. SIL licenses
  708. ========================================================================
  709. bpmn-font 0.12.1 SIL see:licenses/bpmn-font-SIL