Skip to content

Commit 7b0f9dc

Browse files
committed
update dependencies
1 parent 2a35e2d commit 7b0f9dc

File tree

4 files changed

+1433
-1092
lines changed

4 files changed

+1433
-1092
lines changed

.prettierignore

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
# IDE
2-
.vscode/
3-
41
# React Native
52
android/
63
ios/
7-
8-
# Node
9-
node_modules/
10-
11-
package.json

.prettierrc

-5
This file was deleted.

package.json

+19-17
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"engines": {
1515
"node": ">=10.15.1",
16-
"yarn": ">=1.13.0"
16+
"yarn": "1.x"
1717
},
1818
"scripts": {
1919
"cleanup": "watchman watch-del-all && rm -rf node_modules && yarn cache clean && yarn install && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-* && rm -rf ~/.rncache",
@@ -31,60 +31,62 @@
3131
},
3232
"lint-staged": {
3333
"*.js": [
34-
"yarn lint --fix",
35-
"git add"
34+
"yarn lint --fix"
3635
],
3736
"*.{js,json,md}": [
38-
"yarn format",
39-
"git add"
37+
"prettier --write"
4038
]
4139
},
4240
"devDependencies": {
4341
"babel-eslint": "9.x",
4442
"babel-jest": "^22.1.0",
4543
"babel-preset-react-native": "^4.0.1",
46-
"bip39": "^2.5.0",
44+
"bip39": "^3.0.2",
4745
"eslint": "5.x",
4846
"eslint-config-react-app": "^3.0.8",
4947
"eslint-plugin-flowtype": "2.x",
5048
"eslint-plugin-import": "2.x",
5149
"eslint-plugin-jsx-a11y": "6.x",
5250
"eslint-plugin-react": "7.x",
5351
"eslint-plugin-react-hooks": "1.5.0",
54-
"husky": "^1.3.1",
52+
"husky": "^4.3.0",
5553
"jest": "^22.1.0",
56-
"lint-staged": "^8.1.5",
57-
"prettier": "^1.16.4",
54+
"lint-staged": "^10.3.0",
55+
"prettier": "^2.1.1",
5856
"redux-logger": "^3.0.6"
5957
},
6058
"dependencies": {
61-
"bignumber.js": "^8.1.1",
62-
"bip21": "^2.0.2",
59+
"bignumber.js": "^9.0.0",
60+
"bip21": "^2.0.3",
6361
"bitcore-wallet-client": "^6.7.5",
6462
"bs58check": "^2.1.2",
6563
"cryptocompare": "^1.0.0",
6664
"ethers": "^4.0.27",
6765
"lodash.flattendeep": "^4.4.0",
68-
"node-libs-browser": "^2.2.0",
66+
"node-libs-browser": "^2.2.1",
6967
"prop-types": "^15.7.2",
70-
"rc-form": "^2.4.3",
68+
"rc-form": "^2.4.11",
7169
"react": "^16.2.0",
7270
"react-native": "0.53.3",
7371
"react-native-camera": "^1.12.0",
7472
"react-native-dropdownalert": "^3.9.2",
7573
"react-native-qrcode-scanner": "^1.1.2",
7674
"react-native-qrcode-svg": "^5.1.2",
7775
"react-native-radio-buttons": "^1.0.0",
78-
"react-native-randombytes": "^3.5.2",
76+
"react-native-randombytes": "^3.5.3",
7977
"react-native-svg": "~6.5.2",
8078
"react-navigation": "~2.18.3",
8179
"react-redux": "^5.1.1",
82-
"redux": "^4.0.1",
83-
"redux-persist": "^5.10.0",
84-
"redux-saga": "^1.0.2",
80+
"redux": "^4.0.5",
81+
"redux-persist": "^6.0.0",
82+
"redux-saga": "^1.1.3",
8583
"reselect": "^4.0.0"
8684
},
8785
"jest": {
8886
"preset": "react-native"
87+
},
88+
"prettier": {
89+
"printWidth": 100,
90+
"singleQuote": true
8991
}
9092
}

0 commit comments

Comments
 (0)