receipt_indexer/code/app/demoTutorialProject/package.json
Ethan Wellenreiter 496386d7ff Initial setup for expo demo/tutorial project
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>
2023-09-14 21:06:03 -04:00

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
}