mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-09 17:23:18 +08:00
* use react-navigation as dependency * add expo based playground app * name expo playground demo in the docs * add ci task to deploy playground demo
30 lines
628 B
JSON
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"
|
|
]
|
|
}
|
|
}
|