-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
92 lines (92 loc) · 3.13 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
{
"name": "boltcardpos",
"version": "1.6.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest",
"postinstall": "rn-nodeify --install events,process,stream,buffer --hack; npx react-native setup-ios-permissions; npx patch-package; npx pod-install; rm -rf node_modules/react-native-qrcode-scanner/node_modules/react-native-permissions;"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-clipboard/clipboard": "^1.11.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.1",
"bitcoinjs-lib": "^6.1.0",
"bolt11": "^1.4.0",
"bs58check": "^3.0.1",
"buffer": "^4.9.2",
"coinselect": "^3.1.13",
"create-hash": "^1.2.0",
"dateformat": "^5.0.3",
"events": "^1.1.1",
"frisbee": "^3.1.4",
"lottie-react-native": "^6.1.2",
"moment": "^2.29.4",
"process": "^0.11.10",
"react": "18.2.0",
"react-native": "^0.71.7",
"react-native-camera": "^4.2.1",
"react-native-device-info": "^10.6.0",
"react-native-dropdown-picker": "^5.4.6",
"react-native-elements": "^3.4.3",
"react-native-file-viewer": "^2.1.5",
"react-native-gesture-handler": "^2.9.0",
"react-native-html-to-pdf": "^0.12.0",
"react-native-nfc-manager": "^3.14.2",
"react-native-permissions": "^3.8.0",
"react-native-qrcode-scanner": "^1.5.5",
"react-native-qrcode-svg": "^6.2.0",
"react-native-reanimated": "^3.1.0",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.20.0",
"react-native-svg": "^13.8.0",
"react-native-toast-message": "^2.1.6",
"react-native-url-polyfill": "^1.3.0",
"react-native-vector-icons": "^9.2.0",
"readable-stream": "^1.0.33",
"stream-browserify": "^1.0.0"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"eslint": "^8.19.0",
"jest": "^29.2.1",
"pod-install": "^0.1.38",
"prettier": "^2.4.1",
"react-test-renderer": "18.2.0",
"rn-nodeify": "github:tradle/rn-nodeify"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"crypto": "react-native-crypto",
"_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",
"path": "path-browserify"
},
"browser": {
"crypto": "react-native-crypto",
"_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",
"path": "path-browserify"
},
"reactNativePermissionsIOS": [
"Camera"
]
}