forked from wkibbler/PlusBit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.73 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
104
105
106
107
108
109
110
{
"name": "PlusBit",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"postinstall": "rn-nodeify --install stream,buffer,events,assert,process,crypto,vm,fs,path,http,https,url,net,zlib,tls --hack"
},
"dependencies": {
"@react-native-community/slider": "^2.0.8",
"@tradle/react-native-http": "^2.0.0",
"assert": "^1.1.1",
"asyncstorage-down": "^4.2.0",
"axios": "^0.19.2",
"bigi": "^1.4.2",
"browserify-zlib": "^0.1.4",
"buffer": "^5.5.0",
"coinselect": "git+https://github.com/wkibbler/coinselect.git",
"currency-formatter": "git+https://github.com/PlusBitPos/currency-formatter.git",
"events": "^1.0.0",
"https-browserify": "0.0.1",
"install": "^0.13.0",
"js-sha3": "^0.8.0",
"moment": "^2.24.0",
"npm": "^6.14.4",
"path-browserify": "0.0.0",
"plusbit-js": "git+https://github.com/PlusBitPos/plusbit-js.git",
"process": "^0.11.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-bcrypt": "^2.4.0",
"react-native-camera": "git+https://[email protected]/react-native-community/react-native-camera.git",
"react-native-crypto": "^2.2.0",
"react-native-device-info": "^5.5.3",
"react-native-fingerprint-scanner": "^4.0.0",
"react-native-level-fs": "^3.0.1",
"react-native-linear-gradient": "^2.5.6",
"react-native-loading-spinner-overlay": "^1.1.0",
"react-native-modal": "^11.5.4",
"react-native-permissions": "^2.0.10",
"react-native-picker-select": "^6.5.1",
"react-native-qr-generator": "^1.0.4",
"react-native-qrcode-scanner": "^1.4.0",
"react-native-randombytes": "^3.5.3",
"react-native-secure-key-store": "^2.0.5",
"react-native-sha256": "^1.3.6",
"react-native-swipe-gestures": "^1.0.4",
"react-native-tcp": "^3.3.1",
"react-qr-code": "^0.1.3",
"readable-stream": "^1.0.33",
"stream-browserify": "^1.0.0",
"timers-browserify": "^1.0.1",
"toggle-switch-react-native": "^2.1.0",
"turtlecoin-wallet-backend": "^5.0.4",
"uninstall": "0.0.0",
"url": "^0.10.3",
"vm-browserify": "0.0.4"
},
"devDependencies": {
"@babel/core": "7.8.6",
"@babel/runtime": "7.8.4",
"@react-native-community/eslint-config": "0.0.5",
"babel-jest": "24.9.0",
"eslint": "6.8.0",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.56.4",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"_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",
"crypto": "react-native-crypto",
"vm": "vm-browserify",
"fs": "react-native-level-fs",
"path": "path-browserify",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"net": "react-native-tcp",
"zlib": "browserify-zlib",
"tls": false
},
"browser": {
"_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",
"crypto": "react-native-crypto",
"vm": "vm-browserify",
"fs": "react-native-level-fs",
"path": "path-browserify",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"net": "react-native-tcp",
"zlib": "browserify-zlib",
"tls": false
}
}