Files
react-navigation/examples/NavigationPlayground/package.json
Daniel Schmidt b19beda0a7 Add NavigationPlayground Expo Demo (#1523)
* use react-navigation as dependency
* add expo based playground app
* name expo playground demo in the docs
* add ci task to deploy playground demo
2017-05-15 16:55:10 -07:00

30 lines
628 B
JSON

{
"name": "NavigationPlayground",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "jest"
},
"dependencies": {
"react": "16.0.0-alpha.6",
"react-native": "^0.44.0",
"react-native-vector-icons": "^4.1.1",
"react-navigation": "file:../.."
},
"devDependencies": {
"babel-jest": "^20.0.1",
"jest": "^20.0.1",
"react-test-renderer": "^15.5.4"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/../../jest-setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/",
"__exponent"
]
}
}