Initial Expo MVP

This commit is contained in:
Ismail Ali
2026-04-28 21:37:11 +02:00
commit da31bd3c9a
20 changed files with 7946 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "handwerker-wasserwaage",
"version": "0.1.0",
"private": true,
"main": "expo/AppEntry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-navigation/native": "latest",
"@react-navigation/native-stack": "latest",
"expo": "latest",
"expo-sensors": "latest",
"expo-status-bar": "^55.0.5",
"react": "latest",
"react-native": "latest",
"react-native-safe-area-context": "latest",
"react-native-screens": "latest"
},
"devDependencies": {
"@types/react": "latest",
"typescript": "latest"
}
}