forked from rsksmart/rwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.63 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
112
113
114
115
116
117
{
"name": "rwallet",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "jetifier -r",
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"buildandroid": "cd android && ./gradlew assembleRelease",
"ios": "react-native run-ios --simulator=\"iPhone 11\"",
"ip8": "react-native run-ios --simulator=\"iPhone 8\"",
"ip10": "react-native run-ios --simulator=\"iPhone X\"",
"test": "jest"
},
"dependencies": {
"@ant-design/react-native": "^3.1.10",
"@react-native-community/async-storage": "^1.5.0",
"@react-native-community/blur": "^3.6.0",
"@react-native-community/slider": "^1.1.4",
"@rsksmart/rsk3": "^0.3.2",
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.1.6",
"ethereumjs-util": "^6.2.0",
"hdkey": "^1.1.1",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"native-base": "^2.13.0",
"node-libs-browser": "^2.2.1",
"parse": "^2.13.0",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-native": "0.59.10",
"react-native-animatable": "^1.3.3",
"react-native-auto-height-image": "^1.1.3",
"react-native-barcode-mask": "^1.1.0",
"react-native-camera": "2.11.2",
"react-native-crypto": "^2.2.0",
"react-native-dash": "0.0.11",
"react-native-dotenv": "^0.2.0",
"react-native-fingerprint-scanner": "^2.6.2",
"react-native-firebase": "5.2.5",
"react-native-gesture-handler": "~1.3.0",
"react-native-i18n": "^2.0.15",
"react-native-indicators": "^0.17.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-picker-select": "^6.3.3",
"react-native-pose": "^0.9.1",
"react-native-qrcode-svg": "^5.3.1",
"react-native-randombytes": "^3.5.3",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-shapes": "^0.1.0",
"react-native-storage": "^1.0.1",
"react-native-svg": "^9.13.3",
"react-native-swipe-gestures": "^1.0.5",
"react-native-swipe-list-view": "^2.0.3",
"react-native-tcp": "^3.3.2",
"react-native-udp": "^2.6.1",
"react-native-uuid-generator": "^6.1.1",
"react-native-vector-icons": "^6.6.0",
"react-native-version-number": "^0.3.6",
"react-native-webview": "^9.2.2",
"react-navigation": "^3.11.0",
"react-redux": "^7.1.0",
"react-router-redux": "^4.0.8",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"rn-placeholder": "^3.0.0",
"rn-secure-storage": "1.1.1"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/runtime": "7.6.2",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-eslint": "^10.0.3",
"babel-jest": "24.9.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"jest": "24.9.0",
"jetifier": "^1.6.4",
"lint-staged": "^10.0.0-0",
"metro-react-native-babel-preset": "0.56.0",
"react-test-renderer": "16.8.3",
"typescript": "^3.6.4"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(react-native|react-native-vector-icons|react-native-i18n)/)"
]
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}