mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-25 01:28:16 +00:00
* [ReduxExample] Delete android and ios dirs * [ReduxExample] Upgrade using create-react-native-app * [ReduxExample] Add postinstall script to clean up files Yarn copies in Yarn copies them when installing locally, causing lots of @proviesModule collisions. * [ReduxExample] Upgrade expo and other dependencies * [ReduxExample] Don't delete .git just in case
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "ReduxExample",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
|
|
"scripts": {
|
|
"postinstall": "rm -rf node_modules/react-navigation/{node_modules,examples}",
|
|
"start": "react-native-scripts start",
|
|
"eject": "react-native-scripts eject",
|
|
"android": "react-native-scripts android",
|
|
"ios": "react-native-scripts ios",
|
|
"test": "node node_modules/jest/bin/jest.js"
|
|
},
|
|
"jest": {
|
|
"preset": "jest-expo",
|
|
"modulePathIgnorePatterns": [
|
|
"/node_modules/.*/react-native/",
|
|
"/node_modules/.*/react/"
|
|
],
|
|
"transformIgnorePatterns": [
|
|
"/node_modules/(?!react-native|react-navigation)/"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"expo": "^20.1.2",
|
|
"prop-types": "^15.5.10",
|
|
"react": "16.0.0-alpha.12",
|
|
"react-native": "~0.47.2",
|
|
"react-redux": "^5.0.6",
|
|
"redux": "^3.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"babel-jest": "^21.0.0",
|
|
"jest": "^21.0.1",
|
|
"jest-expo": "^20.0.0",
|
|
"react-native-scripts": "^1.3.1",
|
|
"react-navigation": "file:../..",
|
|
"react-test-renderer": "16.0.0-alpha.12"
|
|
}
|
|
}
|