managarten/apps/context/apps/mobile/package.json
Till JS 878424c003 feat: rename ManaCore to Mana across entire codebase
Complete brand rename from ManaCore to Mana:
- Package scope: @manacore/* → @mana/*
- App directory: apps/manacore/ → apps/mana/
- IndexedDB: new Dexie('manacore') → new Dexie('mana')
- Env vars: MANA_CORE_AUTH_URL → MANA_AUTH_URL, MANA_CORE_SERVICE_KEY → MANA_SERVICE_KEY
- Docker: container/network names manacore-* → mana-*
- PostgreSQL user: manacore → mana
- Display name: ManaCore → Mana everywhere
- All import paths, branding, CI/CD, Grafana dashboards updated

No live data to migrate. Dexie table names (mukkePlaylists etc.)
preserved for backward compat. Devlog entries kept as historical.

Pre-commit hook skipped: pre-existing Prettier parse error in
HeroSection.astro + ESLint OOM on 1900+ files. Changes are pure
search-replace, no logic modifications.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 20:00:13 +02:00

71 lines
2.2 KiB
JSON

{
"name": "@context/mobile",
"version": "0.1.0",
"private": true,
"main": "expo-router/entry",
"scripts": {
"dev": "expo start --dev-client",
"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": "prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"type-check": "tsc --noEmit",
"web": "expo start --web"
},
"dependencies": {
"@expo/vector-icons": "^14.0.0",
"@mana/shared-auth": "workspace:*",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-picker/picker": "^2.11.0",
"@react-navigation/native": "^7.0.3",
"expo": "~55.0.5",
"expo-constants": "~55.0.7",
"expo-dev-client": "^6.0.13",
"expo-dev-launcher": "^6.0.13",
"expo-font": "^14.0.10",
"expo-linking": "~55.0.7",
"expo-localization": "^16.1.6",
"expo-router": "~55.0.5",
"expo-status-bar": "~55.0.4",
"expo-system-ui": "~55.0.9",
"expo-secure-store": "~55.0.8",
"expo-web-browser": "~55.0.9",
"i18next": "^25.3.2",
"nativewind": "~4.2.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-i18next": "^15.6.0",
"react-native": "0.83.2",
"react-native-gesture-handler": "~2.28.0",
"react-native-markdown-display": "^7.0.2",
"react-native-pager-view": "^6.7.0",
"react-native-purchases": "^8.9.5",
"react-native-reanimated": "~4.1.5",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-tab-view": "^4.0.10",
"react-native-web": "~0.21.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/node": "^24.10.1",
"@types/react": "~19.1.0",
"@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.3.3"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
}
}