-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 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
103
{
"name": "hyperpass",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"postinstall": "yarn rn-nodeify --install buffer,stream,assert,events,crypto,vm,process --hack"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.2",
"@expo/vector-icons": "^13.0.0",
"@hyperswarm/dht-relay": "^0.4.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/native": "^6.1.7",
"@react-navigation/stack": "^6.3.17",
"@scure/bip39": "^1.2.0",
"@synonymdev/slashtags-sdk": "^1.0.0-alpha.42",
"@types/react": "~18.0.27",
"assert": "^1.5.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.3",
"buffer": "^4.9.2",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"ecpair": "^2.1.0",
"events": "^1.1.1",
"expo": "~48.0.18",
"expo-clipboard": "^4.3.0",
"expo-font": "~11.1.1",
"expo-image-picker": "~14.1.1",
"expo-linear-gradient": "^12.3.0",
"expo-sharing": "^11.5.0",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"fast-text-encoding": "^1.0.6",
"font-awesome": "^4.7.0",
"hyperswarm": "git+ssh://[email protected]:itsdeka/hyperswarm.git",
"isomorphic-ws": "^5.0.0",
"process": "^0.11.10",
"react": "18.2.0",
"react-native": "0.71.8",
"react-native-biometrics": "^3.0.1",
"react-native-bip39": "^2.3.0",
"react-native-crypto": "^2.2.0",
"react-native-elements": "^3.4.3",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.12.0",
"react-native-get-random-values": "~1.8.0",
"react-native-image-crop-picker": "^0.40.0",
"react-native-image-picker": "^5.6.0",
"react-native-keychain": "^8.1.1",
"react-native-qrcode-svg": "^6.2.0",
"react-native-randombytes": "^3.6.1",
"react-native-reanimated": "^3.4.0",
"react-native-safe-area-context": "^4.7.1",
"react-native-screens": "^3.22.1",
"react-native-svg": "13.4.0",
"react-native-vector-icons": "^10.0.0",
"readable-stream": "^1.0.33",
"stream-browserify": "^1.0.0",
"text-encoding-polyfill": "^0.6.7",
"tiny-secp256k1": "^2.2.2",
"typescript": "^4.9.4",
"utf8": "^3.0.0",
"vm-browserify": "^0.0.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"aegir": "^36.1.3",
"b4a": "^1.3.1",
"corestore": "^6.0.1-alpha.9",
"hypercore-crypto": "^3.1.1",
"isomorphic-ws": "^4.0.1",
"random-access-memory": "^4.0.0",
"random-access-rn-file": "^1.0.1",
"rn-nodeify": "^10.3.0"
},
"private": true,
"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"
}
}