-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.63 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
{
"name": "stashapp-soroban",
"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 process,url,events,https,http,util,stream,crypto,vm,buffer --hack --yarn"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@tradle/react-native-http": "^2.0.0",
"axios": "^1.4.0",
"buffer": "^4.9.1",
"events": "^1.0.0",
"expo": "~48.0.18",
"expo-crypto": "~12.2.1",
"expo-dev-client": "~2.2.1",
"expo-image": "~1.0.1",
"expo-linear-gradient": "~12.1.2",
"expo-linking": "~4.0.1",
"expo-local-authentication": "~13.3.0",
"expo-random": "~13.1.1",
"expo-router": "^1.0.0",
"expo-secure-store": "~12.1.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-stellar-sdk": "^1.0.1",
"expo-updates": "~0.16.4",
"expo-web-browser": "~12.1.1",
"https-browserify": "~0.0.0",
"process": "^0.11.0",
"react": "18.2.0",
"react-native": "0.71.8",
"react-native-crypto": "^2.1.0",
"react-native-randombytes": "^3.0.0",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"readable-stream": "1.0.33",
"soroban-client": "^0.8.1",
"stellar-sdk": "^10.4.1",
"stream-browserify": "^1.0.0",
"url": "~0.10.1",
"util": "~0.10.3",
"vm-browserify": "0.0.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"rn-nodeify": "^10.3.0"
},
"private": true,
"react-native": {
"crypto": "react-native-crypto",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"_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",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"_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"
}
}