managarten/manacore/apps/mobile/package.json
Till-JS 725db638ea chore: cleanup turbo config and fix peer dependencies
Changes:
- Remove maerchenzauber/turbo.json (use root config instead)
- Fix @types/react peer dependency in maerchenzauber mobile
- Fix @types/react-dom peer dependency in manacore mobile

This resolves Turbo 2.x "extends" requirement and reduces
peer dependency warnings.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 23:59:55 +01:00

62 lines
2 KiB
JSON

{
"name": "manacore",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start --dev-client",
"ios": "expo run:ios",
"android": "expo run:android",
"build:dev": "eas build --profile development",
"build:preview": "eas build --profile preview",
"build:prod": "eas build --profile production",
"prebuild": "expo prebuild",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"web": "expo start --web --port 19006",
"web:dev": "expo start --web --port 19006"
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.0.5",
"@react-navigation/drawer": "^7.0.0",
"@react-navigation/native": "^7.0.3",
"@supabase/supabase-js": "^2.81.1",
"expo": "^54.0.25",
"expo-constants": "~18.0.10",
"expo-dev-client": "~6.0.18",
"expo-dev-launcher": "^5.0.17",
"expo-linking": "~8.0.9",
"expo-router": "~6.0.15",
"expo-status-bar": "~3.0.8",
"expo-system-ui": "~6.0.8",
"expo-web-browser": "~15.0.9",
"nativewind": "latest",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "4.1.5",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "~4.16.0",
"react-native-web": "~0.21.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~19.1.17",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.0",
"typescript": "~5.9.3"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
},
"private": true
}