-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.28 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 4.28 KB
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
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@rewindbitcoin/app",
"version": "2.0.0",
"main": "index.js",
"prettier": "@bitcoinerlab/configs/prettierConfig.json",
"eslintConfig": {
"extends": "./.eslintrc.js"
},
"jest": {
"preset": "@bitcoinerlab/configs"
},
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"postinstall": "patch-package",
"i18n": "i18n_rewbtc src",
"ensureTester": "./node_modules/@bitcoinerlab/configs/scripts/ensureTester.sh",
"lint": "./node_modules/@bitcoinerlab/configs/scripts/lint.sh",
"build:src": "tsc --project tsconfig.json",
"build:test": "tsc --project tsconfig.test.json",
"test": "npm run lint && npm run build:src && npm run build:test && npm run ensureTester && jest"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@bitcoinerlab/btcmessage": "^4.0.1",
"@bitcoinerlab/coinselect": "^2.0.1",
"@bitcoinerlab/descriptors": "^3.0.6",
"@bitcoinerlab/discovery": "^2.0.1",
"@bitcoinerlab/explorer": "^1.0.0",
"@bitcoinerlab/secp256k1": "^1.2.0",
"@expo-google-fonts/roboto-mono": "^0.2.3",
"@expo-google-fonts/ubuntu": "^0.2.3",
"@expo/metro-runtime": "~5.0.4",
"@noble/ciphers": "^1.3.0",
"@react-native-community/slider": "4.5.6",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"@react-navigation/stack": "^6.3.20",
"bip39": "^3.1.0",
"bip68": "^1.0.4",
"bitcoinjs-lib": "^7.0.1",
"buffer": "^6.0.3",
"events": "^3.3.0",
"expo": "^53.0.22",
"expo-application": "~6.1.5",
"expo-camera": "~16.1.11",
"expo-clipboard": "~7.1.5",
"expo-constants": "~17.1.7",
"expo-device": "~7.1.4",
"expo-document-picker": "~13.1.6",
"expo-file-system": "~18.1.11",
"expo-font": "~13.3.2",
"expo-linear-gradient": "~14.1.5",
"expo-local-authentication": "~16.0.5",
"expo-localization": "~16.1.6",
"expo-notifications": "~0.31.4",
"expo-secure-store": "~14.2.4",
"expo-sharing": "~13.1.5",
"expo-splash-screen": "~0.30.10",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.11",
"fflate": "^0.8.2",
"i18next": "^25.6.1",
"idb-keyval": "^6.2.1",
"intl-pluralrules": "^2.0.1",
"lodash.isequal": "^4.5.0",
"lodash.memoize": "^4.1.2",
"moize": "^6.1.6",
"nativewind": "4.1.23",
"polished": "^4.2.2",
"pushdata-bitcoin": "^1.0.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "^16.2.4",
"react-native": "0.79.5",
"react-native-extra-dimensions-android": "^1.2.5",
"react-native-fast-encoder": "^0.3.1",
"react-native-gesture-handler": "~2.24.0",
"react-native-get-random-values": "~1.11.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-libsodium": "github:landabaso/react-native-libsodium#rewind-android-fix",
"react-native-mmkv": "^3.3.0",
"react-native-modal": "^14.0.0-rc.1",
"react-native-qrcode-svg": "^6.3.2",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"react-native-tcp-socket": "^6.2.0",
"react-native-toast-notifications": "^3.4.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-web": "^0.20.0",
"react-native-web-refresh-control": "^1.1.2",
"shallow-equal": "^3.1.0",
"stream": "^0.0.2",
"tailwindcss": "^3.4.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@bitcoinerlab/configs": "^2.0.0",
"@bitcoinerlab/miniscript": "^2.0.0",
"@bitcoinerlab/miniscript-policies": "^1.1.0",
"@expo/metro-runtime": "~5.0.4",
"@rewindbitcoin/env": "^33.0.0",
"@rewindbitcoin/i18n": "^2.0.0",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.memoize": "^4.1.8",
"@types/react": "~19.0.10",
"@types/react-native-extra-dimensions-android": "^1.2.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"expo-network-security-config": "^1.0.1",
"patch-package": "^8.0.0",
"react-native-dotenv": "^3.4.11",
"react-native-svg-transformer": "^1.5.1",
"regtest-client": "^0.2.1"
},
"overrides": {
"react": "19.0.0"
},
"private": true
}