-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 3.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "firebolt",
"version": "1.0.16",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest",
"postinstall": "rn-nodeify --install buffer,stream,assert,events,crypto,vm,process --hack"
},
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"@breeztech/react-native-breez-sdk": "^0.6.2",
"@breeztech/react-native-breez-sdk-liquid": "^0.3.4",
"@gluestack-style/react": "^1.0.45",
"@gluestack-ui/config": "^1.1.2",
"@gluestack-ui/themed": "^1.1.60",
"@ledgerhq/react-native-hid": "^6.32.4",
"@mempool/mempool.js": "^2.2.4",
"@nostr-dev-kit/ndk": "^2.10.5",
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-native-picker/picker": "2.9.0",
"@react-navigation/native": "^7.0.0",
"@react-navigation/native-stack": "^7.0.0",
"@trezor/connect": "^9.4.2",
"assert": "^2.0.0",
"bech32": "^2.0.0",
"bip-353-lib": "^1.0.2-alpha",
"bip21": "^3.0.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.6",
"bolt11": "^1.4.1",
"buffer": "^6.0.3",
"ecpair": "^2.1.0",
"events": "^3.0.0",
"libportal-react-native": "github:BlueWallet/libportal-react-native#f577c0ef8c905098604e323982bb92f5dd33c878",
"light-bolt11-decoder": "^3.2.0",
"mpc-crypto-lib": "^1.0.8",
"payjoin-react-native": "^1.0.1-alpha",
"peach-api-ts": "^0.4.0",
"react": "18.3.1",
"react-native": "0.76.1",
"react-native-crypto": "^2.2.0",
"react-native-qrcode-svg": "^6.3.11",
"react-native-randombytes": "^3.6.1",
"react-native-safe-area-context": "4.14.0",
"react-native-screens": "^4.0.0",
"react-native-storage": "^1.0.1",
"react-native-svg": "15.8.0",
"readable-stream": "^4.5.2",
"silent-payments": "github:BlueWallet/SilentPayments",
"snarkjs": "^0.7.5",
"stream-browserify": "^3.0.0",
"styled-components": "^6.1.13",
"vm-browserify": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/runtime": "^7.25.7",
"@react-native/babel-preset": "0.76.1",
"@react-native/eslint-config": "0.76.1",
"@react-native/metro-config": "0.76.1",
"@react-native/typescript-config": "0.76.1",
"@types/react": "^18.3.12",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"core-js": "^3.39.0",
"eslint": "^9.14.0",
"jest": "^29.6.3",
"prettier": "3.3.3",
"react-test-renderer": "18.3.1",
"rn-nodeify": "^10.3.0",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18"
},
"react-native": {
"crypto": "react-native-crypto",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"vm": "vm-browserify"
},
"browser": {
"crypto": "react-native-crypto",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"vm": "vm-browserify"
}
}