This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
forked from rashedmyt/turtlecoin-mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.98 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
111
112
{
"name": "PleWallet",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "react-native start",
"deploy-android": "cd android; ./gradlew installRelease; cd ..",
"test": "jest",
"lint": "eslint .",
"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/jetify"
},
"dependencies": {
"@haskkor/react-native-pincode": "^1.21.1",
"@react-native-community/async-storage": "^1.6.1",
"@react-native-community/netinfo": "^4.1.3",
"@tradle/react-native-http": "^2.0.1",
"assert": "^2.0.0",
"asyncstorage-down": "^4.2.0",
"browserify-zlib": "~0.2.0",
"buffer": "^5.2.1",
"console-browserify": "^1.1.0",
"events": "^3.0.0",
"https-browserify": "~1.0.0",
"path-browserify": "1.0.0",
"plenteum-wallet-backend": "^3.5.0",
"process": "^0.11.10",
"react": "16.8.6",
"react-native": "0.60.4",
"react-native-animatable": "^1.3.2",
"react-native-background-fetch": "^2.6.1",
"react-native-camera": "git+https://git@github.com/react-native-community/react-native-camera.git",
"react-native-crypto": "^2.1.2",
"react-native-elements": "^1.1.0",
"react-native-exit-app": "^1.0.0",
"react-native-fingerprint-scanner": "git+https://github.com/hieuvp/react-native-fingerprint-scanner.git#update/rn-60",
"react-native-gesture-handler": "^1.3.0",
"react-native-keychain": "3.1.3",
"react-native-level-fs": "^3.0.1",
"react-native-month-selector": "^1.4.0",
"react-native-permissions": "^1.2.0",
"react-native-push-notification": "^3.1.3",
"react-native-qrcode-scanner": "^1.2.1",
"react-native-qrcode-svg": "^5.1.2",
"react-native-randombytes": "^3.5.3",
"react-native-sentry": "^0.43.2",
"react-native-sqlite-storage": "^3.3.11",
"react-native-svg": "^9.5.3",
"react-native-tcp": "^3.3.1",
"react-native-text-ticker": "^0.18.0",
"react-native-udp": "^2.6.1",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^3.11.1",
"react-navigation-header-buttons": "^3.0.1",
"readable-stream": "3.4.0",
"rn-nodeify": "^10.0.1",
"stream-browserify": "^2.0.2",
"plenteum-wallet-backend": "^3.5.0",
"url": "~0.11.0",
"vm-browserify": "1.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.8.0",
"eslint": "^6.1.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"crypto": "react-native-crypto",
"net": "react-native-tcp",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"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",
"tls": false
},
"browser": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"crypto": "react-native-crypto",
"net": "react-native-tcp",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"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",
"tls": false
}
}