Skip to content
This repository has been archived by the owner on Dec 1, 2020. It is now read-only.

Commit

Permalink
Attempt to update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jamland committed Feb 17, 2020
1 parent 0ceb98b commit cc94b1d
Show file tree
Hide file tree
Showing 7 changed files with 11,909 additions and 5,121 deletions.
10 changes: 0 additions & 10 deletions .babelrc

This file was deleted.

14 changes: 13 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
node_modules/**/*
.expo/**/*
.expo/*
npm-debug.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/
web-report/

# macOS
.DS_Store
14 changes: 9 additions & 5 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"expo": {
"name": "instabyte",
"description": "A very interesting project.",
"slug": "instabyte",
"name": "Tab Navigation Template",
"slug": "instabyte-3",
"privacy": "public",
"sdkVersion": "26.0.0",
"platforms": ["ios", "android"],
"sdkVersion": "36.0.0",
"platforms": [
"ios",
"android",
"web"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
Expand Down
6 changes: 6 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
};
};
9,654 changes: 4,577 additions & 5,077 deletions package-lock.json

Large diffs are not rendered by default.

73 changes: 45 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,56 @@
{
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"test": "jest --watchAll",
"postinstall": "rndebugger-open --expo"
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll"
},
"jest": {
"preset": "jest-expo",
"setupTestFrameworkScriptFile": "./src/config/setupJest"
"preset": "jest-expo"
},
"dependencies": {
"@expo/react-native-action-sheet": "^1.0.2",
"@expo/samples": "2.1.1",
"date-fns": "^1.29.0",
"expo": "26.0.0",
"react": "16.3.0-alpha.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-26.0.0.tar.gz",
"react-native-expo-image-cache": "^3.0.3",
"react-native-keyboard-aware-scroll-view": "^0.5.0",
"react-native-material-textfield": "^0.12.0",
"react-navigation": "1.5.10",
"react-redux": "^5.0.7",
"react-test-renderer": "^16.3.2",
"redux": "^4.0.0",
"redux-persist": "^5.9.1",
"redux-thunk": "^2.2.0",
"uuid": "^3.2.1"
"@expo/react-native-action-sheet": "^3.5.0",
"@expo/samples": "^3.0.3",
"@expo/vector-icons": "~10.0.0",
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/bottom-tabs": "^5.0.0",
"@react-navigation/native": "^5.0.0",
"@react-navigation/stack": "^5.0.0",
"@react-navigation/web": "~1.0.0-alpha.9",
"date-fns": "^2.9.0",
"expo": "~36.0.0",
"expo-asset": "~8.0.0",
"expo-blur": "~8.0.0",
"expo-constants": "~8.0.0",
"expo-font": "~8.0.0",
"expo-web-browser": "~8.0.0",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"react-native-debugger-open": "^0.3.24",
"react-native-expo-image-cache": "^4.1.0",
"react-native-gesture-handler": "~1.5.0",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-material-textfield": "^0.16.1",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-web": "~0.11.7",
"react-navigation": "^4.1.1",
"react-redux": "^7.1.3",
"react-test-renderer": "^16.12.0",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"detox": "^7.3.5",
"jest-expo": "^26.0.0",
"nyc": "^11.7.1",
"react-native-debugger-open": "^0.3.17",
"@babel/core": "^7.0.0",
"babel-preset-expo": "~8.0.0",
"jest-expo": "~36.0.1",
"redux-testkit": "^1.0.6"
}
},
"private": true
}

0 comments on commit cc94b1d

Please sign in to comment.