mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-20 03:20:26 +00:00
c9c941aac9
React is now a peer dependency, which means we need to add it to our package.json for npm v3 to work properly.
14 lines
230 B
JSON
14 lines
230 B
JSON
{
|
|
"name": "ReactExample",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "react-native start"
|
|
},
|
|
"dependencies": {
|
|
"react": "^0.14.5",
|
|
"react-native": "^0.22.0",
|
|
"realm": "file:../.."
|
|
}
|
|
}
|