-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.76 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": "ton-chan",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "./node_modules/.bin/react-native run-android",
"build-android": "sudo adb kill-server; sudo adb start-server; adb -d uninstall \"com.tonchan\"; cd android; ./gradlew assembleRelease; cd ..",
"deploy-android": "sudo adb kill-server; sudo adb start-server; adb -d uninstall \"com.tonchan\"; cd android; ./gradlew assembleRelease && ./gradlew installRelease; cd ..",
"postinstall": "./node_modules/.bin/rn-nodeify --install fs,dgram,process,path,console,crypto,buffer,stream,vm,http,https,url,zlib,net,assert,tls --hack --yarn; ./node_modules/.bin/react-native link"
},
"dependencies": {
"@haskkor/react-native-pincode": "^1.12.2",
"@tradle/react-native-http": "^2.0.1",
"assert": "^1.4.1",
"asyncstorage-down": "^4.1.2",
"browserify-zlib": "^0.1.4",
"buffer": "^4.9.1",
"console-browserify": "^1.1.0",
"https-browserify": "0.0.1",
"js-sha512": "^0.8.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"path-browserify": "0.0.0",
"process": "^0.11.10",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-background-fetch": "^2.5.0",
"react-native-camera": "^1.10.1",
"react-native-crypto": "^2.1.2",
"react-native-elements": "^1.0.0",
"react-native-gesture-handler": "^1.0.12",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-level-fs": "^3.0.1",
"react-native-month-selector": "^1.4.0",
"react-native-push-notification": "^3.1.2",
"react-native-qrcode-scanner": "^1.1.2",
"react-native-qrcode-svg": "^5.1.2",
"react-native-randombytes": "^3.5.1",
"react-native-svg": "^9.2.3",
"react-native-tcp": "^3.3.0",
"react-native-text-ticker": "^0.13.0",
"react-native-udp": "^2.3.1",
"react-native-vector-icons": "^6.1.0",
"react-navigation": "^3.0.9",
"react-navigation-header-buttons": "^2.1.2",
"readable-stream": "^1.0.33",
"realm": "^2.21.1",
"request": "^2.88.0",
"rn-nodeify": "^10.0.1",
"stream-browserify": "^1.0.0",
"turtlecoin-crypto": "^0.0.3",
"turtlecoin-wallet-backend": "https://github.com/turtlecoin/turtlecoin-wallet-backend-js",
"url": "^0.10.3",
"vm-browserify": "0.0.4"
},
"devDependencies": {
"babel-jest": "23.6.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.51.1",
"react-test-renderer": "16.6.3"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"console": "console-browserify",
"crypto": "react-native-crypto",
"path": "path-browserify",
"fs": "react-native-level-fs",
"_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",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"vm": "vm-browserify",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"zlib": "browserify-zlib",
"net": "react-native-tcp",
"tls": false
},
"browser": {
"console": "console-browserify",
"crypto": "react-native-crypto",
"path": "path-browserify",
"fs": "react-native-level-fs",
"_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",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"vm": "vm-browserify",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"zlib": "browserify-zlib",
"net": "react-native-tcp",
"tls": false
}
}