리액트 네이티브 초기 셋업

developer.do·2023년 1월 6일
0

package.json 에 복사하기

{
  "name": "rn-movie-test",
  "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": {
    "@emotion/native": "^11.10.0",
    "@emotion/react": "^11.10.5",
    "@react-native-async-storage/async-storage": "^1.17.11",
    "@react-navigation/bottom-tabs": "^6.5.1",
    "@react-navigation/native": "^6.1.1",
    "@react-navigation/native-stack": "^6.9.6",
    "expo": "~47.0.8",
    "expo-linear-gradient": "~12.0.1",
    "expo-status-bar": "~1.4.2",
    "firebase": "^9.15.0",
    "react": "18.1.0",
    "react-native": "0.70.5",
    "react-native-ratings": "^8.1.0",
    "react-native-safe-area-context": "4.4.1",
    "react-native-screens": "~3.18.0",
    "react-native-swiper": "^1.6.0-rc.3",
    "react-native-swiper-flatlist": "^3.0.18",
    "react-native-web-swiper": "^2.2.4",
    "react-query": "^3.39.2",
    "expo-updates": "~0.15.6"
  },
  "devDependencies": {
    "@babel/core": "^7.12.9"
  },
  "private": true
}

0개의 댓글