Following https://www.youtube.com/watch?v=0-S5a0eXPoc (kind of). Setting it up was different. I had to use "npx create-expo-app --template" to make the project initially. Maybe follow this too for help: https://docs.expo.dev/get-started/create-a-project/. Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
22 lines
458 B
JSON
22 lines
458 B
JSON
{
|
|
"name": "demotutorialproject",
|
|
"version": "1.0.0",
|
|
"main": "node_modules/expo/AppEntry.js",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo start --android",
|
|
"ios": "expo start --ios",
|
|
"web": "expo start --web"
|
|
},
|
|
"dependencies": {
|
|
"expo": "^49.0.10",
|
|
"expo-status-bar": "~1.6.0",
|
|
"react": "18.2.0",
|
|
"react-native": "0.72.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.0"
|
|
},
|
|
"private": true
|
|
}
|