rsnext/examples/with-expo/package.json
Evan Bacon 33800de9f8
add Expo example (#12805)
* Created Expo example project

* Update examples/with-expo/README.md

* Updated usage guide

* Update README.md

* Lint fix

Co-authored-by: Luis Alvarez <luis@vercel.com>
2020-05-14 18:33:45 -05:00

24 lines
579 B
JSON

{
"name": "with-expo",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "next",
"eject-next": "next-expo customize",
"eject": "expo eject"
},
"dependencies": {
"expo": "~37.0.3",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
"react-native-web": "~0.11.7",
"next": "latest"
},
"devDependencies": {
"@expo/next-adapter": "2.1.5"
}
}