mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
8b1458af4f
* Add with-react-native-web example Showcase the required work to use [react-native-web](https://github.com/necolas/react-native-web) with Next.js. * Repair lint warnings
18 lines
336 B
JSON
18 lines
336 B
JSON
{
|
|
"name": "with-react-native-web",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"next": "latest",
|
|
"react": "^16.0.0",
|
|
"react-dom": "^16.0.0",
|
|
"react-native-web": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-plugin-react-native-web": "^0.4.0"
|
|
}
|
|
}
|