-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpnpm-lock.yaml
25839 lines (20760 loc) · 891 KB
/
pnpm-lock.yaml
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
overrides:
semver: ^7.5.2
ip@<=2.0.0: '>=2.0.1'
undici@<=5.28.2: '>=5.28.3'
tar@<6.2.1: '>=6.2.1'
braces@<3.0.3: '>=3.0.3'
ws@<8.17.1: '>=8.17.1'
app-builder-lib@<24.13.2: '>=24.13.2'
follow-redirects@<=1.15.5: '>=1.15.6'
undici@>=6.0.0 <6.11.1: '>=6.11.1'
ejs@<3.1.10: '>=3.1.10'
fast-loops@<1.1.4: '>=1.1.4'
fast-xml-parser@<4.4.1: '>=4.4.1'
micromatch@<4.0.8: '>=4.0.8'
send@<0.19.0: '>=0.19.0'
serve-static@<1.16.0: '>=1.16.0'
path-to-regexp@>=2.0.0 <3.3.0: '>=3.3.0'
rollup@>=4.0.0 <4.22.4: '>=4.22.4'
elliptic@<6.6.0: '>=6.6.0'
'@sentry/browser@<7.119.1': '>=7.119.1'
cross-spawn@<7.0.5: '>=7.0.5'
happy-dom@<15.10.2: '>=15.10.2'
phin@<3.7.1: '>=3.7.1'
patchedDependencies:
'@metamask/scure-bip39@2.1.1':
hash: 4mkpybhyrxbheknii5rno7c5b4
path: patches/@metamask__scure-bip39@2.1.1.patch
react-native-aes-crypto@2.1.1:
hash: sm7rpv6bikakdvmsl6ekayqewu
path: patches/react-native-aes-crypto@2.1.1.patch
react-native-background-actions@4.0.1:
hash: yqgwosurvocvelskspkclvkkhe
path: patches/react-native-background-actions@4.0.1.patch
importers:
.:
devDependencies:
'@alephium/eslint-config':
specifier: workspace:*
version: link:packages/eslint-config
'@alephium/typescript-config':
specifier: workspace:*
version: link:packages/typescript-config
'@changesets/cli':
specifier: ^2.26.2
version: 2.27.1
'@manypkg/cli':
specifier: latest
version: 0.23.0
prettier:
specifier: ^3.0.3
version: 3.1.1
turbo:
specifier: 1.13.4
version: 1.13.4
apps/desktop-wallet:
dependencies:
'@tanstack/react-query':
specifier: 5.45.0
version: 5.45.0(react@18.2.0)
'@tanstack/react-query-devtools':
specifier: ^5.50.1
version: 5.50.1(@tanstack/react-query@5.45.0(react@18.2.0))(react@18.2.0)
axios:
specifier: ^1.7.4
version: 1.7.4
electron-context-menu:
specifier: ^3.1.2
version: 3.6.1
electron-is-dev:
specifier: ^2.0.0
version: 2.0.0
electron-updater:
specifier: ^6.3.9
version: 6.3.9
devDependencies:
'@actions/tool-cache':
specifier: ^2.0.1
version: 2.0.1
'@alephium/encryptor':
specifier: workspace:*
version: link:../../packages/encryptor
'@alephium/eslint-config':
specifier: workspace:*
version: link:../../packages/eslint-config
'@alephium/keyring':
specifier: workspace:*
version: link:../../packages/keyring
'@alephium/ledger-app':
specifier: ^0.6.0
version: 0.6.0
'@alephium/shared':
specifier: workspace:*
version: link:../../packages/shared
'@alephium/shared-crypto':
specifier: workspace:*
version: link:../../packages/shared-crypto
'@alephium/shared-react':
specifier: workspace:*
version: link:../../packages/shared-react
'@alephium/token-list':
specifier: ^0.0.19
version: 0.0.19
'@alephium/typescript-config':
specifier: workspace:*
version: link:../../packages/typescript-config
'@alephium/walletconnect-provider':
specifier: 1.5.1
version: 1.5.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@alephium/web3':
specifier: 1.5.1
version: 1.5.1
'@alephium/web3-wallet':
specifier: 1.5.1
version: 1.5.1
'@electron/notarize':
specifier: ^1.2.3
version: 1.2.4
'@json-rpc-tools/utils':
specifier: ^1.7.6
version: 1.7.6
'@ledgerhq/devices':
specifier: ^8.4.4
version: 8.4.4
'@ledgerhq/hw-transport-webhid':
specifier: ^6.29.4
version: 6.29.4
'@ledgerhq/hw-transport-webusb':
specifier: ^6.29.4
version: 6.29.4
'@reduxjs/toolkit':
specifier: ^1.9.1
version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.18)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react@18.2.0)
'@tanstack/eslint-plugin-query':
specifier: ^5.50.1
version: 5.50.1(eslint@8.56.0)(typescript@5.5.3)
'@testing-library/jest-dom':
specifier: ^5.14.1
version: 5.17.0
'@testing-library/react':
specifier: ^14.0.0
version: 14.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@types/events':
specifier: ^3.0.0
version: 3.0.3
'@types/lodash':
specifier: ^4.14.182
version: 4.14.202
'@types/node':
specifier: ^20.14.0
version: 20.17.8
'@types/react':
specifier: ~18.2.79
version: 18.2.79
'@types/react-color':
specifier: ^3.0.6
version: 3.0.11
'@types/react-dom':
specifier: ^18.2.4
version: 18.2.18
'@types/semver-compare':
specifier: ^1.0.1
version: 1.0.3
'@types/yaireo__tagify':
specifier: ^4.18.0
version: 4.18.0
'@types/zxcvbn':
specifier: ^4.4.1
version: 4.4.4
'@typescript-eslint/eslint-plugin':
specifier: ^6.10.0
version: 6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^6.10.0
version: 6.15.0(eslint@8.56.0)(typescript@5.5.3)
'@vitejs/plugin-react':
specifier: ^4.0.0
version: 4.2.1(vite@5.4.8(@types/node@20.17.8)(terser@5.26.0))
'@vitest/coverage-v8':
specifier: ^2.1.2
version: 2.1.2(vitest@2.1.2(@types/node@20.17.8)(happy-dom@15.11.7)(jsdom@21.1.2)(msw@2.7.0(@types/node@20.17.8)(typescript@5.5.3))(terser@5.26.0))
'@vitest/web-worker':
specifier: ^2.1.2
version: 2.1.2(vitest@2.1.2(@types/node@20.17.8)(happy-dom@15.11.7)(jsdom@21.1.2)(msw@2.7.0(@types/node@20.17.8)(typescript@5.5.3))(terser@5.26.0))
'@walletconnect/core':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@walletconnect/keyvaluestorage':
specifier: 1.1.1
version: 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@walletconnect/react-native-compat':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))(@react-native-community/netinfo@11.3.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))(expo-application@5.9.1)(react-native-get-random-values@1.11.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))
'@walletconnect/sign-client':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@walletconnect/types':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@walletconnect/utils':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@yaireo/tagify':
specifier: ^4.18.3
version: 4.18.3(prop-types@15.8.1)
'@yornaath/batshit':
specifier: ^0.10.1
version: 0.10.1
ajv:
specifier: ^8.12.0
version: 8.12.0
better-sqlite3:
specifier: ^8.3.0
version: 8.7.0
bip39:
specifier: ^3.0.4
version: 3.1.0
classnames:
specifier: ^2.3.1
version: 2.5.1
colord:
specifier: ^2.9.3
version: 2.9.3
compare-versions:
specifier: ^5.0.1
version: 5.0.3
concurrently:
specifier: ^7.4.0
version: 7.6.0
cross-env:
specifier: ^7.0.3
version: 7.0.3
dayjs:
specifier: ^1.10.7
version: 1.11.10
electron:
specifier: 33.2.0
version: 33.2.0
electron-builder:
specifier: ^24.13.3
version: 24.13.3(electron-builder-squirrel-windows@24.13.3(dmg-builder@24.13.3))
electron-devtools-installer:
specifier: ^4.0.0
version: 4.0.0
eslint:
specifier: ^8.48.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.0.0
version: 9.1.0(eslint@8.56.0)
eslint-plugin-prettier:
specifier: ^5.0.1
version: 5.1.2(@types/eslint@8.56.0)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.2.4)
eslint-plugin-react:
specifier: ^7.33.2
version: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: ^10.0.0
version: 10.0.0(eslint@8.56.0)
eslint-plugin-unused-imports:
specifier: ^3.0.0
version: 3.0.0(@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
events:
specifier: ^3.3.0
version: 3.3.0
framer-motion:
specifier: ^11.2.12
version: 11.2.12(@emotion/is-prop-valid@1.2.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
i18next:
specifier: ^23.4.6
version: 23.7.16
jsdom:
specifier: ^21.1.1
version: 21.1.2
lodash:
specifier: ^4.17.21
version: 4.17.21
lucide-react:
specifier: ^0.287.0
version: 0.287.0(react@18.2.0)
msw:
specifier: ^2.7.0
version: 2.7.0(@types/node@20.17.8)(typescript@5.5.3)
nanoid:
specifier: ^3.3.8
version: 3.3.8
posthog-js:
specifier: ^1.52.0
version: 1.97.1
qrloop:
specifier: ^1.4.1
version: 1.4.1
react:
specifier: ^18.2.0
version: 18.2.0
react-apexcharts:
specifier: ^1.4.0
version: 1.4.1(apexcharts@3.45.2)(react@18.2.0)
react-color:
specifier: ^2.19.3
version: 2.19.3(react@18.2.0)
react-confetti:
specifier: ^6.0.1
version: 6.1.0(react@18.2.0)
react-detect-click-outside:
specifier: ^1.1.2
version: 1.1.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-dom:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
react-hook-form:
specifier: ^7.42.1
version: 7.49.2(react@18.2.0)
react-i18next:
specifier: ^13.2.1
version: 13.5.0(i18next@23.7.16)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-idle-timer:
specifier: ^5.7.2
version: 5.7.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-is:
specifier: ^18.2.0
version: 18.2.0
react-player:
specifier: ^2.16.0
version: 2.16.0(react@18.2.0)
react-qr-code:
specifier: ^2.0.7
version: 2.0.12(react-native-svg@15.9.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react@18.2.0)
react-redux:
specifier: ^8.0.5
version: 8.1.3(@types/react-dom@18.2.18)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)(redux@4.2.1)
react-router-dom:
specifier: ^6.3.0
version: 6.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-scrollbars-custom:
specifier: ^4.1.1
version: 4.1.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-tooltip:
specifier: ^5.25.1
version: 5.25.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
redux:
specifier: ^4.2.0
version: 4.2.1
semver-compare:
specifier: ^1.0.0
version: 1.0.0
styled-components:
specifier: ^6.1.8
version: 6.1.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
stylis:
specifier: ^4.0.0
version: 4.3.1
ts-json-schema-generator:
specifier: ^1.5.0
version: 1.5.0
type-fest:
specifier: ^3.5.1
version: 3.13.1
typescript:
specifier: ^5.3.3
version: 5.5.3
vite:
specifier: ^5.4.8
version: 5.4.8(@types/node@20.17.8)(terser@5.26.0)
vite-plugin-electron:
specifier: ^0.29.0
version: 0.29.0
vite-plugin-svgr:
specifier: ^3.2.0
version: 3.3.0(rollup@4.22.4)(typescript@5.5.3)(vite@5.4.8(@types/node@20.17.8)(terser@5.26.0))
vite-tsconfig-paths:
specifier: ^4.2.0
version: 4.2.3(typescript@5.5.3)(vite@5.4.8(@types/node@20.17.8)(terser@5.26.0))
vitest:
specifier: ^2.1.2
version: 2.1.2(@types/node@20.17.8)(happy-dom@15.11.7)(jsdom@21.1.2)(msw@2.7.0(@types/node@20.17.8)(typescript@5.5.3))(terser@5.26.0)
wait-on:
specifier: ^7.0.1
version: 7.2.0
zxcvbn:
specifier: ^4.4.2
version: 4.4.2
apps/explorer:
dependencies:
'@alephium/shared':
specifier: workspace:*
version: link:../../packages/shared
'@alephium/shared-crypto':
specifier: workspace:*
version: link:../../packages/shared-crypto
'@alephium/shared-react':
specifier: workspace:*
version: link:../../packages/shared-react
'@alephium/token-list':
specifier: ^0.0.19
version: 0.0.19
'@alephium/web3':
specifier: 1.5.1
version: 1.5.1
'@tanstack/query-sync-storage-persister':
specifier: 5.45.0
version: 5.45.0
'@tanstack/react-query':
specifier: 5.45.0
version: 5.45.0(react@18.2.0)
'@tanstack/react-query-persist-client':
specifier: ^5.45.0
version: 5.45.1(@tanstack/react-query@5.45.0(react@18.2.0))(react@18.2.0)
'@yornaath/batshit':
specifier: ^0.10.1
version: 0.10.1
apexcharts:
specifier: ^3.35.0
version: 3.45.1
axios:
specifier: ^1.7.4
version: 1.7.4
colord:
specifier: ^2.9.3
version: 2.9.3
dayjs:
specifier: ^1.10.7
version: 1.11.10
framer-motion:
specifier: ^11.2.12
version: 11.2.12(@emotion/is-prop-valid@1.2.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
i18next:
specifier: ^23.4.6
version: 23.7.16
i18next-browser-languagedetector:
specifier: ^8.0.0
version: 8.0.0
lodash:
specifier: ^4.17.21
version: 4.17.21
qrcode.react:
specifier: ^3.1.0
version: 3.1.0(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
react-apexcharts:
specifier: ^1.4.0
version: 1.4.1(apexcharts@3.45.1)(react@18.2.0)
react-dom:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
react-i18next:
specifier: ^13.2.1
version: 13.5.0(i18next@23.7.16)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-icons:
specifier: ^4.10.1
version: 4.12.0(react@18.2.0)
react-intersection-observer:
specifier: ^9.10.3
version: 9.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-is:
specifier: ^18.2.0
version: 18.2.0
react-middle-ellipsis:
specifier: ^1.2.1
version: 1.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-page-visibility:
specifier: ^7.0.0
version: 7.0.0(react@18.2.0)
react-router-dom:
specifier: ^6.3.0
version: 6.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-tooltip:
specifier: ^5.25.1
version: 5.25.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
styled-components:
specifier: ^6.1.8
version: 6.1.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
styled-normalize:
specifier: ^8.0.7
version: 8.1.0(styled-components@6.1.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))
stylis:
specifier: ^4.0.0
version: 4.3.1
devDependencies:
'@alephium/eslint-config':
specifier: workspace:*
version: link:../../packages/eslint-config
'@alephium/typescript-config':
specifier: workspace:*
version: link:../../packages/typescript-config
'@testing-library/jest-dom':
specifier: ^5.14.1
version: 5.17.0
'@types/lodash':
specifier: ^4.14.182
version: 4.14.202
'@types/node':
specifier: ^20.14.0
version: 20.17.8
'@types/react':
specifier: ~18.2.79
version: 18.2.79
'@types/react-dom':
specifier: ^18.2.4
version: 18.2.18
'@types/react-page-visibility':
specifier: ^6.4.1
version: 6.4.4
'@types/react-router-dom':
specifier: ^5.3.0
version: 5.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^6.10.0
version: 6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^6.10.0
version: 6.15.0(eslint@8.56.0)(typescript@5.5.3)
'@vitejs/plugin-react':
specifier: ^4.0.0
version: 4.2.1(vite@5.4.8(@types/node@20.17.8)(terser@5.26.0))
esbuild:
specifier: ^0.17.11
version: 0.17.19
eslint:
specifier: ^8.48.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.0.0
version: 9.1.0(eslint@8.56.0)
eslint-plugin-prettier:
specifier: ^5.0.1
version: 5.1.2(@types/eslint@8.56.0)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.2.4)
eslint-plugin-react:
specifier: ^7.33.2
version: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: ^10.0.0
version: 10.0.0(eslint@8.56.0)
eslint-plugin-unused-imports:
specifier: ^3.0.0
version: 3.0.0(@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)
happy-dom:
specifier: '>=15.10.2'
version: 15.11.7
rollup-plugin-node-polyfills:
specifier: ^0.2.1
version: 0.2.1
serve:
specifier: ^14.1.2
version: 14.2.1
typescript:
specifier: ^5.3.3
version: 5.5.3
vite:
specifier: ^5.4.8
version: 5.4.8(@types/node@20.17.8)(terser@5.26.0)
vite-plugin-svgr:
specifier: ^3.2.0
version: 3.3.0(rollup@4.22.4)(typescript@5.5.3)(vite@5.4.8(@types/node@20.17.8)(terser@5.26.0))
vite-tsconfig-paths:
specifier: ^4.2.0
version: 4.2.3(typescript@5.5.3)(vite@5.4.8(@types/node@20.17.8)(terser@5.26.0))
vitest:
specifier: ^2.1.2
version: 2.1.2(@types/node@20.17.8)(happy-dom@15.11.7)(jsdom@21.1.2)(msw@2.7.0(@types/node@20.17.8)(typescript@5.5.3))(terser@5.26.0)
apps/mobile-wallet:
dependencies:
'@alephium/keyring':
specifier: workspace:*
version: link:../../packages/keyring
'@alephium/shared':
specifier: workspace:*
version: link:../../packages/shared
'@alephium/shared-crypto':
specifier: workspace:*
version: link:../../packages/shared-crypto
'@alephium/shared-react':
specifier: workspace:*
version: link:../../packages/shared-react
'@alephium/token-list':
specifier: ^0.0.19
version: 0.0.19
'@alephium/walletconnect-provider':
specifier: 1.5.1
version: 1.5.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@alephium/web3':
specifier: 1.5.1
version: 1.5.1
'@expo/vector-icons':
specifier: ^14.0.4
version: 14.0.4
'@fugashu/alphland-api-client':
specifier: ^1.0.4
version: 1.0.4
'@json-rpc-tools/utils':
specifier: ^1.7.6
version: 1.7.6
'@react-native-async-storage/async-storage':
specifier: 1.23.1
version: 1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))
'@react-native-community/netinfo':
specifier: ^11.3.1
version: 11.3.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))
'@react-navigation/bottom-tabs':
specifier: ^6.5.4
version: 6.5.11(@react-navigation/native@6.1.9(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@react-navigation/elements':
specifier: ^1.3.14
version: 1.3.21(@react-navigation/native@6.1.9(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@react-navigation/material-top-tabs':
specifier: ^6.6.2
version: 6.6.5(@react-navigation/native@6.1.9(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-pager-view@6.3.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@react-navigation/native':
specifier: ^6.1.3
version: 6.1.9(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@react-navigation/native-stack':
specifier: ^6.11.0
version: 6.11.0(@react-navigation/native@6.1.9(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@react-navigation/routers':
specifier: ^6.1.9
version: 6.1.9
'@react-navigation/stack':
specifier: ^6.3.12
version: 6.3.20(@react-navigation/native@6.1.9(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.21.2(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@reduxjs/toolkit':
specifier: ^1.9.1
version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.18)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react@18.2.0)
'@reown/walletkit':
specifier: ^1.1.1
version: 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@sentry/react-native':
specifier: ^6.0.0
version: 6.0.0(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@shopify/flash-list':
specifier: 1.6.4
version: 1.6.4(@babel/runtime@7.26.0)(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@shopify/react-native-skia':
specifier: 1.3.10
version: 1.3.10(react-native-reanimated@3.10.1(@babel/core@7.25.7)(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
'@tanstack/react-query':
specifier: 5.45.0
version: 5.45.0(react@18.2.0)
'@walletconnect/core':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@walletconnect/jsonrpc-types':
specifier: ^1.0.4
version: 1.0.4
'@walletconnect/keyvaluestorage':
specifier: 1.1.1
version: 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@walletconnect/react-native-compat':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))(@react-native-community/netinfo@11.3.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))(expo-application@5.9.1)(react-native-get-random-values@1.11.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))
'@walletconnect/sign-client':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
'@walletconnect/utils':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
axios:
specifier: ^1.7.4
version: 1.7.4
big-integer:
specifier: ^1.6.51
version: 1.6.52
colord:
specifier: ^2.9.3
version: 2.9.3
dayjs:
specifier: ^1.10.7
version: 1.11.10
expo:
specifier: 51.0.39
version: 51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))
expo-application:
specifier: ~5.9.1
version: 5.9.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-barcode-scanner:
specifier: ~13.0.1
version: 13.0.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-blur:
specifier: ~13.0.3
version: 13.0.3(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-build-properties:
specifier: ~0.12.5
version: 0.12.5(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-camera:
specifier: ~15.0.16
version: 15.0.16(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-checkbox:
specifier: ~3.0.0
version: 3.0.0
expo-clipboard:
specifier: ~6.0.3
version: 6.0.3(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-dev-client:
specifier: ^4.0.29
version: 4.0.29(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-device:
specifier: ~6.0.2
version: 6.0.2(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-file-system:
specifier: ~17.0.1
version: 17.0.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-font:
specifier: ~12.0.10
version: 12.0.10(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-haptics:
specifier: ~13.0.1
version: 13.0.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-image:
specifier: ~1.13.0
version: 1.13.0(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-linear-gradient:
specifier: ~13.0.2
version: 13.0.2(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-linking:
specifier: ^6.3.1
version: 6.3.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-local-authentication:
specifier: ~14.0.1
version: 14.0.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-localization:
specifier: ~15.0.3
version: 15.0.3(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-navigation-bar:
specifier: ~3.0.7
version: 3.0.7(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-screen-capture:
specifier: ~6.0.1
version: 6.0.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-secure-store:
specifier: ~13.0.2
version: 13.0.2(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-sensors:
specifier: ~13.0.9
version: 13.0.9(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-splash-screen:
specifier: ~0.27.7
version: 0.27.7(expo-modules-autolinking@1.11.3)(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
expo-status-bar:
specifier: ~1.12.1
version: 1.12.1
expo-web-browser:
specifier: ~13.0.3
version: 13.0.3(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))
fast-text-encoding:
specifier: ^1.0.6
version: 1.0.6
intl-pluralrules:
specifier: ^2.0.1
version: 2.0.1
lodash:
specifier: ^4.17.21
version: 4.17.21
lottie-react-native:
specifier: ^6.7.0
version: 6.7.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
lucide-react-native:
specifier: ^0.456.0
version: 0.456.0(react-native-svg@15.9.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
moti:
specifier: ^0.29.0
version: 0.29.0(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.25.7)(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react@18.2.0)
nanoid:
specifier: ^3.3.8
version: 3.3.8
posthog-react-native:
specifier: ^2.7.1
version: 2.9.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))(@react-navigation/native@6.1.9(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(expo-application@5.9.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))))(expo-device@6.0.2(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))))(expo-file-system@17.0.1(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))))(expo-localization@15.0.3(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))))
qrloop:
specifier: ^1.4.1
version: 1.4.1
react:
specifier: ^18.2.0
version: 18.2.0
react-dom:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
react-hook-form:
specifier: ^7.42.1
version: 7.49.2(react@18.2.0)
react-i18next:
specifier: ^13.2.1
version: 13.5.0(i18next@23.7.16)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native:
specifier: 0.74.5
version: 0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)
react-native-aes-crypto:
specifier: ^2.1.0
version: 2.1.1(patch_hash=sm7rpv6bikakdvmsl6ekayqewu)
react-native-background-actions:
specifier: ^4.0.1
version: 4.0.1(patch_hash=yqgwosurvocvelskspkclvkkhe)(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))
react-native-background-timer:
specifier: ^2.4.1
version: 2.4.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))
react-native-gesture-handler:
specifier: ^2.20.2
version: 2.21.2(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-get-random-values:
specifier: ~1.11.0
version: 1.11.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))
react-native-image-colors:
specifier: ^2.4.0
version: 2.4.0(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-localize:
specifier: ^3.2.0
version: 3.2.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-modalize:
specifier: ^2.1.1
version: 2.1.1(react-native-gesture-handler@2.21.2(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-pager-view:
specifier: 6.3.0
version: 6.3.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-progress:
specifier: ^5.0.0
version: 5.0.1(react-native-svg@15.9.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))
react-native-reanimated:
specifier: ^3.10.1
version: 3.10.1(@babel/core@7.25.7)(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-reanimated-carousel:
specifier: ^3.0.4
version: 3.5.1(react-native-gesture-handler@2.21.2(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.25.7)(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-safe-area-context:
specifier: 4.10.5
version: 4.10.5(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-screens:
specifier: ~3.31.1
version: 3.31.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-svg:
specifier: ^15.9.0
version: 15.9.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-tab-view:
specifier: ^3.5.1
version: 3.5.2(react-native-pager-view@6.3.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-toast-message:
specifier: ^2.1.8
version: 2.2.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-native-web:
specifier: ~0.19.6
version: 0.19.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-native-webview:
specifier: ^13.12.0
version: 13.12.5(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)
react-qr-code:
specifier: ^2.0.7
version: 2.0.12(react-native-svg@15.9.0(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0))(react@18.2.0)
react-redux:
specifier: ^8.0.5
version: 8.1.3(@types/react-dom@18.2.18)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)(redux@4.2.1)
redux-devtools-expo-dev-plugin:
specifier: ^0.2.1
version: 0.2.1(@redux-devtools/core@4.0.0(react-redux@8.1.3(@types/react-dom@18.2.18)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react@18.2.0)(redux@4.2.1))(expo@51.0.39(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7)))(immutable@4.3.7)(redux@4.2.1)
styled-components:
specifier: ^6.1.8
version: 6.1.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
stylis:
specifier: ^4.0.0
version: 4.3.1
text-encoding:
specifier: ^0.7.0
version: 0.7.0
victory-native:
specifier: ^36.6.10
version: 36.7.0(react@18.2.0)
web3-validator:
specifier: ^2.0.6
version: 2.0.6
devDependencies:
'@alephium/eslint-config':
specifier: workspace:*
version: link:../../packages/eslint-config
'@alephium/typescript-config':
specifier: workspace:*
version: link:../../packages/typescript-config
'@babel/core':
specifier: ^7.25.7
version: 7.25.7
'@types/lodash':
specifier: ^4.14.182
version: 4.14.202
'@types/react':
specifier: ~18.2.79
version: 18.2.79
'@types/react-native-background-timer':
specifier: ^2.0.2
version: 2.0.2
'@typescript-eslint/eslint-plugin':
specifier: ^6.10.0
version: 6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.3.3))(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^6.10.0
version: 6.15.0(eslint@8.56.0)(typescript@5.3.3)
'@walletconnect/types':
specifier: 2.17.2
version: 2.17.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.25.7)(@babel/preset-env@7.23.8(@babel/core@7.25.7))(@types/react@18.2.79)(react@18.2.0)))
babel-plugin-module-resolver:
specifier: ^5.0.2
version: 5.0.2
eslint:
specifier: ^8.48.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.0.0
version: 9.1.0(eslint@8.56.0)
eslint-plugin-prettier:
specifier: ^5.0.1
version: 5.1.2(@types/eslint@8.56.0)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.2.4)
eslint-plugin-react:
specifier: ^7.33.2
version: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: ^10.0.0
version: 10.0.0(eslint@8.56.0)
eslint-plugin-unused-imports:
specifier: ^3.0.0
version: 3.0.0(@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.3.3))(eslint@8.56.0)(typescript@5.3.3))(eslint@8.56.0)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@20.17.8)(ts-node@10.9.2(@types/node@20.17.8)(typescript@5.3.3))
jest-expo:
specifier: ~51.0.4
version: 51.0.4(@babel/core@7.25.7)(jest@29.7.0(@types/node@20.17.8)(ts-node@10.9.2(@types/node@20.17.8)(typescript@5.3.3)))(react@18.2.0)
ts-node:
specifier: ^10.9.1
version: 10.9.2(@types/node@20.17.8)(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
packages/encryptor:
dependencies:
'@metamask/browser-passworder':
specifier: ^4.3.0
version: 4.3.0
buffer:
specifier: ^6.0.3
version: 6.0.3
devDependencies:
'@alephium/eslint-config':
specifier: workspace:*
version: link:../eslint-config
'@alephium/typescript-config':
specifier: workspace:*
version: link:../typescript-config
'@types/jest':
specifier: ^29.4.0
version: 29.5.11
'@types/node':
specifier: ^20.14.0
version: 20.17.8
'@typescript-eslint/eslint-plugin':
specifier: ^6.10.0
version: 6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^6.10.0
version: 6.15.0(eslint@8.56.0)(typescript@5.5.3)
babel-eslint:
specifier: ^10.1.0
version: 10.1.0(eslint@8.56.0)
eslint:
specifier: ^8.48.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.0.0
version: 9.1.0(eslint@8.56.0)
eslint-plugin-prettier:
specifier: ^5.0.1
version: 5.1.2(@types/eslint@8.56.0)(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.2.4)
eslint-plugin-react:
specifier: ^7.33.2
version: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: ^10.0.0
version: 10.0.0(eslint@8.56.0)
eslint-plugin-unused-imports:
specifier: ^3.0.0
version: 3.0.0(@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)