-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies, make the demo app work with a dev build, add lin…
…ter (#31) * build * get rid of logs * fix lint * newline * reset yarn.lock * expo doctor
- Loading branch information
Showing
10 changed files
with
5,448 additions
and
2,946 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.exports = { | ||
root: true, | ||
extends: ["universe/native"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,6 @@ web-build/ | |
|
||
# macOS | ||
.DS_Store | ||
|
||
android/ | ||
ios/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module.exports = function(api) { | ||
module.exports = function (api) { | ||
api.cache(true); | ||
return { | ||
presets: ['babel-preset-expo'], | ||
presets: ["babel-preset-expo"], | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"cli": { | ||
"version": ">= 7.1.1" | ||
}, | ||
"build": { | ||
"development": { | ||
"developmentClient": true, | ||
"distribution": "internal" | ||
}, | ||
"preview": { | ||
"distribution": "internal" | ||
}, | ||
"production": { | ||
"android": { | ||
"buildType": "apk" | ||
} | ||
} | ||
}, | ||
"submit": { | ||
"production": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { registerRootComponent } from "expo"; | ||
|
||
import App from "./App"; | ||
|
||
// registerRootComponent calls AppRegistry.registerComponent('main', () => App); | ||
// It also ensures that whether you load the app in Expo Go or in a native build, | ||
// the environment is set up appropriately | ||
registerRootComponent(App); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,45 @@ | ||
{ | ||
"name": "deep-link-demo-app", | ||
"version": "1.0.0", | ||
"main": "node_modules/expo/AppEntry.js", | ||
"engines": { | ||
"node": ">=15.0.0 <17.0.0" | ||
"node": ">= 18.0.0" | ||
}, | ||
"scripts": { | ||
"start": "expo start --clear", | ||
"android": "expo start --android", | ||
"ios": "expo start --ios", | ||
"web": "expo start --web", | ||
"eject": "expo eject" | ||
"native-prestart:android": "expo prebuild -p android", | ||
"native-prestart:android:clean": "expo prebuild --clean -p android", | ||
"native-prestart:ios": "expo prebuild -p ios", | ||
"native-prestart:ios:clean": "expo prebuild --clean -p ios", | ||
"watch": "expo start --dev-client --clear", | ||
"watch:tunnel": " expo start --dev-client --clear --tunnel", | ||
"android": "expo run:android", | ||
"ios": "expo run:ios", | ||
"build-android": "eas build --profile production -p android --local", | ||
"lint": "eslint ." | ||
}, | ||
"dependencies": { | ||
"@solana/web3.js": "~1.35.0", | ||
"buffer": "^6.0.3", | ||
"expo": "~44.0.0", | ||
"expo-linking": "~3.0.0", | ||
"expo-status-bar": "~1.2.0", | ||
"expo-updates": "~0.11.6", | ||
"react": "17.0.1", | ||
"react-dom": "17.0.1", | ||
"react-native": "0.64.3", | ||
"react-native-get-random-values": "^1.7.2", | ||
"expo": "~48.0.21", | ||
"expo-linking": "~4.0.1", | ||
"expo-splash-screen": "~0.18.2", | ||
"expo-status-bar": "~1.4.4", | ||
"expo-updates": "~0.16.4", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-native": "0.71.14", | ||
"react-native-get-random-values": "~1.9.0", | ||
"react-native-url-polyfill": "^1.3.0", | ||
"react-native-web": "0.17.1", | ||
"react-native-web": "~0.18.11", | ||
"tweetnacl": "^1.0.3" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.12.9", | ||
"@babel/core": "^7.20.0", | ||
"@types/bs58": "^4.0.1", | ||
"@types/react": "~17.0.21", | ||
"@types/react-native": "~0.64.12", | ||
"typescript": "~4.3.5" | ||
"@types/react": "~18.0.27", | ||
"eslint": "^8.56.0", | ||
"eslint-config-universe": "^12.0.0", | ||
"prettier": "^3.2.4", | ||
"typescript": "^4.9.4" | ||
}, | ||
"private": true | ||
} |
Oops, something went wrong.