-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.39 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.39 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
{
"name": "bitcold",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"ts:check": "tsc",
"format": "prettier --write ./src",
"lint-fix": "eslint . --fix",
"test": "jest",
"postinstall": "rn-nodeify --install stream,assert,events,crypto,vm,process --hack"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@hookform/resolvers": "^3.3.4",
"@react-native-clipboard/clipboard": "^1.14.1",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"assert": "^1.5.0",
"axios": "^1.6.8",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.2",
"bs58check": "^3.0.1",
"buffer": "^6.0.3",
"ecpair": "^2.1.0",
"events": "^1.1.1",
"i18next": "^23.10.1",
"int64-buffer": "^1.0.1",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-hook-form": "^7.51.2",
"react-i18next": "^14.1.0",
"react-native": "0.73.6",
"react-native-biometrics": "^3.0.1",
"react-native-crypto": "^2.1.0",
"react-native-mmkv": "^2.12.2",
"react-native-nfc-manager": "^3.14.14",
"react-native-qrcode-svg": "^6.3.0",
"react-native-randombytes": "^3.6.1",
"react-native-safe-area-context": "^4.9.0",
"react-native-screens": "^3.30.1",
"react-native-svg": "^15.1.0",
"react-native-toast-message": "^2.2.0",
"react-native-vector-icons": "^10.0.3",
"react-native-vision-camera": "^4.0.1",
"readable-stream": "^4.4.0",
"stream-browserify": "^1.0.0",
"styled-components": "^6.1.8",
"swr": "^2.2.5",
"url-search-params-polyfill": "^8.2.5",
"vm-browserify": "^0.0.4",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.73.21",
"@react-native/eslint-config": "0.73.2",
"@react-native/metro-config": "0.73.5",
"@react-native/typescript-config": "0.73.1",
"@types/big.js": "^6.2.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.6",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react-native-dotenv": "^3.4.11",
"react-test-renderer": "18.2.0",
"reactotron-react-native": "^5.1.6",
"rn-nodeify": "^10.3.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"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"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"git add"
]
}
}