This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
111 lines (111 loc) · 4.08 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
{
"name": "Firo",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=14.17.0",
"npm": ">=6.14.13"
},
"scripts": {
"android": "react-native run-android",
"android:build": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/ && cd android && ./gradlew clean assembleDebug",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"postinstall": "rn-nodeify --install buffer,events,process,stream,util,inherits,fs,path,assert --hack"
},
"dependencies": {
"@react-native-clipboard/clipboard": "^1.8.2",
"@react-native-community/async-storage": "1.12.1",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"assert": "^1.5.0",
"bc-ur": "^0.1.6",
"bignumber.js": "9.0.1",
"bip21": "^2.0.3",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"bitcoinjs-lib": "git+https://github.com/hakob91/bitcoinjs-lib.git#4b0c4322cb9f308cb84b2f655d16a9e9abc7b4e1",
"buffer": "^6.0.3",
"buffer-reverse": "1.0.1",
"crypto-js": "3.1.9-1",
"dayjs": "^1.10.7",
"electrum-client": "git+https://github.com/BlueWallet/rn-electrum-client.git#f9a827e724a5a2e578fdfdb483f83793af55b030",
"events": "^3.3.0",
"path-browserify": "0.0.0",
"process": "^0.11.10",
"react": "17.0.2",
"react-localization": "^1.0.17",
"react-native": "0.67.4",
"react-native-biometrics": "^2.1.4",
"react-native-camera": "^3.44.0",
"react-native-default-preference": "1.4.3",
"react-native-device-info": "^8.1.3",
"react-native-elements": "^3.4.1",
"react-native-fs": "^2.18.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-image-picker": "4.10.2",
"react-native-lelantus": "./react-native-lelantus",
"react-native-level-fs": "^3.0.1",
"react-native-linear-gradient": "^2.5.6",
"react-native-localize": "^2.1.1",
"react-native-logs": "^3.0.4",
"react-native-progress": "^5.0.0",
"react-native-qrcode-svg": "^6.1.1",
"react-native-randombytes": "^3.6.1",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.2.0",
"react-native-screenshot-prevent": "^1.0.6",
"react-native-secure-key-store": "git+https://github.com/BlueWallet/react-native-secure-key-store.git#4828fd1a67d12e4c0e21eee0bee673fde75e6f9a",
"react-native-share": "^7.1.2",
"react-native-svg": "^12.1.1",
"react-native-tcp-socket": "5.6.0",
"react-native-vector-icons": "^8.1.0",
"readable-stream": "1.0.33",
"realm": "10.13.0",
"rn-nodeify": "^10.3.0",
"stream-browserify": "^3.0.0",
"util": "^0.10.4"
},
"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",
"path": "path-browserify",
"fs": "react-native-level-fs"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.4",
"@types/react-native": "^0.64.4",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"react-test-renderer": "17.0.2",
"typescript": "^4.2.4"
},
"jest": {
"preset": "react-native"
},
"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",
"path": "path-browserify",
"fs": "react-native-level-fs"
}
}