This repository was archived by the owner on Feb 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.74 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.74 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
{
"name": "exmpl",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "watchman watch-del './' ; watchman watch-project './' && react-native start",
"test": "jest",
"e2e:build:ios-debug": "detox build --configuration ios.sim.debug",
"e2e:build:ios-release": "detox build --configuration ios.sim.release",
"e2e:build:android-debug": "detox build --configuration android.emu.debug",
"e2e:build:android-release": "detox build --configuration android.emu.release",
"e2e:test:ios-debug": "detox test --configuration ios.sim.debug --record-videos all --take-screenshots all --record-logs all",
"e2e:test:ios-release": "detox test --configuration ios.sim.release --record-videos all --take-screenshots all --record-logs all",
"e2e:test:android-debug": "detox test --configuration android.emu.debug",
"e2e:test:android-release": "detox test --configuration android.emu.release",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"reinstall": "cd ../lib/ && yarn install && yarn build && cd ../example/ && yarn add ../lib && yarn rn-setup",
"clean": "rm -rf node_modules ios/Pods ios/Podfile.lock ios/build && yarn install && cd ios && pod deintegrate && pod install && cd ../",
"rn-setup": "node rn-setup.js",
"test:mocha": "mocha-remote --context --context c=$(node ./tests/context.js)",
"test:mocha:ios": "mocha-remote --context --context c=$(node ./tests/context.js) -- concurrently --kill-others-on-fail npm:m npm:runner-ios",
"test:mocha:android": "mocha-remote --context --context c=$(node ./tests/context.js) -- concurrently --kill-others-on-fail npm:m npm:runner-android",
"m": "react-native start --reset-cache",
"runner-ios": "react-native run-ios --simulator='iPhone 14' --no-packager",
"runner-android": "react-native run-android --no-packager"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.19.4",
"@react-native-clipboard/clipboard": "1.12.1",
"@synonymdev/react-native-ldk": "../lib",
"assert": "1.5.0",
"b4a": "^1.6.4",
"bip32": "2.0.6",
"bip39": "3.0.4",
"bitcoinjs-lib": "6.0.2",
"buffer": "4.9.2",
"chai": "^4.3.7",
"events": "1.1.1",
"mocha-remote-client": "^1.6.1",
"process": "0.11.10",
"query-string": "^8.1.0",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-crypto": "2.2.0",
"react-native-fs": "2.20.0",
"react-native-keychain": "8.1.2",
"react-native-randombytes": "3.6.1",
"react-native-tcp-socket": "5.6.2",
"readable-stream": "4.4.2",
"rn-electrum-client": "github:synonymdev/react-native-electrum-client#dfbe9ebba4e4cf0d16e3ccea3dc49e05285d860f",
"stream-browserify": "^3.0.0",
"vm-browserify": "0.0.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.11",
"@tsconfig/react-native": "^3.0.0",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/jest": "28.1.8",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"babel-jest": "^29.3.1",
"bitcoin-json-rpc": "^1.3.2",
"chai-as-promised": "^7.1.1",
"concurrently": "^8.2.0",
"detox": "20.20.2",
"electrum-client": "github:BlueWallet/rn-electrum-client#47acb51149e97fab249c3f8a314f708dbee4fb6e",
"eslint": "8.27.0",
"eslint-config-prettier": "^8.5.0",
"fast-fifo": "^1.3.0",
"jest": "^29.3.1",
"metro-react-native-babel-preset": "0.76.8",
"mocha": "^10.2.0",
"mocha-remote-cli": "^1.6.1",
"newline-decoder": "^1.0.0",
"prettier": "2.7.1",
"react-test-renderer": "18.2.0",
"rn-nodeify": "10.3.0",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16"
},
"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",
"vm": "vm-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",
"vm": "vm-browserify"
}
}