-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
{
"name": "expo-eth-wallet",
"displayName": "ETH and ERC20 wallet built with Expo",
"version": "0.0.1",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"postinstall": "node_modules/.bin/rn-nodeify --install stream,http,https,os,vm,crypto --yarn --hack"
},
"dependencies": {
"@tradle/react-native-http": "^2.0.0",
"crypto-browserify": "^3.12.0",
"ethers": "^4.0.27",
"expo": "^32.0.0",
"https-browserify": "~0.0.0",
"node-libs-browser": "^2.2.0",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-crypto": "^2.1.2",
"react-native-os": "^1.0.1",
"react-native-randombytes": "^3.5.3",
"readable-stream": "1.0.33",
"stream-browserify": "^1.0.0",
"stream-http": "^3.0.0",
"web3": "^1.0.0-beta.55"
},
"devDependencies": {
"@types/expo": "^32.0.0",
"@types/react-native": "^0.57.0",
"babel-preset-expo": "^5.0.0",
"rn-nodeify": "^10.0.1",
"typescript": "^3.3.0"
},
"react-native": {
"crypto": "react-native-crypto",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"_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",
"os": "react-native-os",
"_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"
}
}