* Removed react-native-router-flux and replaced it with custom navigation * Split Logout component to have a container * Replaced RootContainer with RootLayout * Removed lodash from package.json * Removed unnecessary state from Logout component * Added placeholder for RHS search * Renamed routes to scenes and moved some logic to there * Added Root route to handle any initialization on app load * Added unit tests for navigation reducer * Fixed eslint errors * Removed commented out code from Router * Renamed Channel route to ChannelView to avoid confusion * Used a separate index.js for component containers * Simplified mapStateToProps for RootLayoutContainer * Removed file accidentally added in merge conflict
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"name": "Mattermost",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"dependencies": {
|
|
"babel-preset-es2015": "6.18.0",
|
|
"intl": "1.2.5",
|
|
"isomorphic-fetch": "2.2.1",
|
|
"keymirror": "0.1.1",
|
|
"react": "15.3.2",
|
|
"react-addons-pure-render-mixin": "15.3.2",
|
|
"react-intl": "2.1.5",
|
|
"react-native": "0.34.1",
|
|
"react-native-button": "1.7.1",
|
|
"react-native-drawer": "2.3.0",
|
|
"react-native-keyboard-spacer": "0.3.0",
|
|
"react-native-vector-icons": "2.1.0",
|
|
"react-redux": "4.4.5",
|
|
"redux": "3.6.0",
|
|
"redux-batched-actions": "0.1.3",
|
|
"redux-thunk": "2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "7.0.0",
|
|
"babel-plugin-resolver": "1.1.0",
|
|
"babel-preset-react-native": "1.9.0",
|
|
"babel-register": "6.16.3",
|
|
"deep-freeze": "0.0.1",
|
|
"eslint": "3.7.1",
|
|
"eslint-plugin-react": "6.3.0",
|
|
"fetch-mock": "5.5.0",
|
|
"mocha": "3.1.0",
|
|
"react-native-mock": "0.2.7",
|
|
"react-test-renderer": "15.3.2",
|
|
"redux-logger": "2.7.0",
|
|
"remote-redux-devtools": "0.5.0",
|
|
"remote-redux-devtools-on-debugger": "0.6.2"
|
|
},
|
|
"scripts": {
|
|
"check": "node_modules/.bin/eslint --ext \".js\" --ignore-pattern node_modules --quiet .",
|
|
"run-ios": "node node_modules/react-native/local-cli/cli.js run-ios",
|
|
"run-android": "node node_modules/react-native/local-cli/cli.js run-android",
|
|
"start": "node node_modules/react-native/local-cli/cli.js start",
|
|
"test": "mocha --compilers js:babel-register --require babel-polyfill",
|
|
"postinstall": "make post-install"
|
|
}
|
|
}
|