-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 4.02 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
113
114
{
"name": "honeybadger",
"version": "1.7.0",
"private": true,
"scripts": {
"start": "react-native link && react-native start",
"test": "jest",
"lint": "eslint .",
"postinstall": "rn-nodeify --install buffer,process,stream,events,assert,crypto,vm --hack --yarn",
"ios:run": "react-native run-ios --simulator='iPhone 11' --verbose",
"ios:log": "react-native log-ios",
"ios:build": "react-native bundle --entry-file='index.ts' --bundle-output='./ios/honeybadger/main.jsbundle' --dev=false --platform='ios' --assets-dest='./ios'",
"android:run": "react-native run-android",
"android:build": "cd ./android && gradle bundleRelease"
},
"dependencies": {
"@ledgerhq/react-native-hid": "5.30.0",
"@ledgerhq/react-native-ledger-core": "4.16.3",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/progress-bar-android": "1.0.4",
"@react-native-community/progress-view": "1.2.3",
"assert": "^2.0.0",
"bignumber.js": "^9.0.1",
"bs58check": "^2.1.2",
"buffer": "^5.6.0",
"conseiljs": "5.0.5",
"conseiljs-ledgersigner": "5.0.4-beta.0",
"events": "^3.1.0",
"jsonpath-plus": "^5.0.4",
"moment": "2.27.0",
"native-base": "2.13.13",
"process": "^0.11.10",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-bip39": "^2.3.0",
"react-native-camera": "^3.32.0",
"react-native-crypto": "^2.2.0",
"react-native-device-info": "5.6.2",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "^1.6.1",
"react-native-keyboard-aware-scroll-view": "^0.9.3",
"react-native-keychain": "6.2.0",
"react-native-level-fs": "3.0.1",
"react-native-modal": "11.5.6",
"react-native-os": "^1.2.6",
"react-native-pdf": "6.2.0",
"react-native-popup-menu": "^0.15.9",
"react-native-progress-circle": "^2.1.0",
"react-native-qrcode-svg": "6.0.6",
"react-native-randombytes": "3.6.0",
"react-native-reanimated": "1.13.2",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "2.15.0",
"react-native-share": "4.1.0",
"react-native-sodium": "0.3.9",
"react-native-splash-screen": "3.2.0",
"react-native-svg": "12.1.0",
"react-native-touch-id": "4.4.1",
"react-native-walkthrough-tooltip": "1.1.11",
"react-navigation": "4.4.3",
"react-navigation-stack": "2.10.2",
"react-redux": "7.2.2",
"readable-stream": "3.6.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"rn-fetch-blob": "0.12.0",
"rn-nodeify": "^10.2.0",
"stream-browserify": "^3.0.0",
"vm-browserify": "1.1.2"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "^16.9.43",
"@types/react-native": "0.63.5",
"@types/react-native-share": "^3.3.0",
"@types/react-redux": "^7.1.9",
"babel-jest": "^26.1.0",
"eslint": "^7.5.0",
"jest": "^26.1.0",
"metro-react-native-babel-preset": "^0.60.0",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.13.1",
"typescript": "^3.9.7"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"crypto": "react-native-crypto",
"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",
"fs": "react-native-level-fs",
"vm": "vm-browserify"
},
"browser": {
"crypto": "react-native-crypto",
"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",
"fs": "react-native-level-fs",
"vm": "vm-browserify"
}
}