mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:13:25 +00:00
87 lines
3.2 KiB
JSON
87 lines
3.2 KiB
JSON
{
|
|
"name": "@movie-web/mobile",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"clean": "git clean -xdf .expo .turbo node_modules",
|
|
"dev": "expo start",
|
|
"dev:android": "expo start -c --android",
|
|
"dev:ios": "expo start -c --ios",
|
|
"android": "expo run:android",
|
|
"ios": "expo run:ios",
|
|
"apk": "expo prebuild --platform=android && cd android && ./gradlew assembleRelease",
|
|
"ipa": "expo prebuild --platform=ios && cd ios && xcodebuild -workspace movieweb.xcworkspace -scheme movieweb -sdk iphoneos -configuration Release -derivedDataPath build -destination generic/platform=iOS CODE_SIGN_IDENTITY=\"\" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO",
|
|
"ipa:sim": "expo prebuild --platform=ios && cd ios && xcodebuild -workspace movieweb.xcworkspace -scheme movieweb -sdk iphonesimulator -configuration Release -derivedDataPath build -destination \"generic/platform=iOS Simulator\" CODE_SIGN_IDENTITY=\"\" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@expo/metro-config": "^0.17.3",
|
|
"@movie-web/provider-utils": "*",
|
|
"@movie-web/tmdb": "*",
|
|
"@react-native-anywhere/polyfill-base64": "0.0.1-alpha.0",
|
|
"@react-navigation/native": "^6.1.9",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.0",
|
|
"expo": "~50.0.5",
|
|
"expo-av": "~13.10.5",
|
|
"expo-brightness": "~11.8.0",
|
|
"expo-build-properties": "~0.11.1",
|
|
"expo-constants": "~15.4.5",
|
|
"expo-linking": "~6.2.2",
|
|
"expo-navigation-bar": "^2.8.1",
|
|
"expo-router": "~3.4.6",
|
|
"expo-screen-orientation": "~6.4.1",
|
|
"expo-splash-screen": "~0.26.4",
|
|
"expo-status-bar": "~1.11.1",
|
|
"expo-web-browser": "^12.8.2",
|
|
"immer": "^10.0.3",
|
|
"nativewind": "~4.0.23",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"react-native": "0.73.2",
|
|
"react-native-context-menu-view": "^1.14.1",
|
|
"react-native-css-interop": "~0.0.22",
|
|
"react-native-gesture-handler": "~2.14.1",
|
|
"react-native-modal": "^13.0.1",
|
|
"react-native-quick-base64": "^2.0.8",
|
|
"react-native-quick-crypto": "^0.6.1",
|
|
"react-native-reanimated": "~3.6.2",
|
|
"react-native-safe-area-context": "~4.8.2",
|
|
"react-native-screens": "~3.29.0",
|
|
"react-native-web": "^0.19.10",
|
|
"subsrt-ts": "^2.1.2",
|
|
"tailwind-merge": "^2.2.1",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.9",
|
|
"@babel/preset-env": "^7.23.9",
|
|
"@babel/runtime": "^7.23.9",
|
|
"@movie-web/eslint-config": "workspace:^0.2.0",
|
|
"@movie-web/prettier-config": "workspace:^0.1.0",
|
|
"@movie-web/tailwind-config": "workspace:^0.1.0",
|
|
"@movie-web/tsconfig": "workspace:^0.1.0",
|
|
"@types/babel__core": "^7.20.5",
|
|
"@types/react": "^18.2.48",
|
|
"babel-plugin-module-resolver": "^5.0.0",
|
|
"eslint": "^8.56.0",
|
|
"prettier": "^3.1.1",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@movie-web/eslint-config/base",
|
|
"@movie-web/eslint-config/react"
|
|
],
|
|
"ignorePatterns": [
|
|
"expo-plugins/**"
|
|
]
|
|
},
|
|
"prettier": "@movie-web/prettier-config"
|
|
}
|