Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Relates to #140. Update React Native to 0.56 #209

Merged
merged 8 commits into from
Feb 11, 2019
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
language: node_js
node_js:
- 7
- 8

cache:
directories:
Expand Down
11 changes: 11 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-transform-runtime'
],
presets: [
'@babel/preset-env',
'@babel/preset-react',
'react-native'
]
};
25 changes: 18 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "0.0.1",
"private": true,
"license": "GPL-3.0",
"engines": {
"node": ">=8.3",
"yarn": "^1.3.2"
},
"scripts": {
"build-rust-ios": "cd rust/signer && make ios",
"build-rust-android": "cd rust/signer && make android",
Expand All @@ -14,12 +18,13 @@
"commit": ""
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"bignumber.js": "^4.0.0",
"debounce": "^1.0.0",
"hoist-non-react-statics": "^2.5.0",
"prop-types": "^15.6.1",
"react": "16.3.1",
"react-native": "0.55.3",
"react": "^16.7.0",
"react-native": "0.56",
"react-native-camera": "^1.9.0",
"react-native-keyboard-aware-scroll-view": "^0.5.0",
"react-native-markdown-renderer": "^3.2.8",
Expand All @@ -32,14 +37,20 @@
"unstated": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "18.1.0",
"@babel/cli": "^7.0.0-beta.56",
"@babel/core": "^7.0.0-beta.56",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0-beta.56",
"@babel/preset-react": "^7.0.0-beta.56",
"babel-eslint": "^10.0.1",
"babel-jest": "24.0.0",
"babel-preset-react-native": "5.0.2",
"jest": "24.0.0",
"jest-react-native": "^18.0.0",
"pre-git": "^3.14.0",
"prettier": "1.12.1",
"reactotron-react-native": "^1.14.0"
"reactotron-react-native": "^2.1.5"
},
"rnpm": {
"assets": [
Expand Down