mattermost-mobile/package.json
Harrison Healey 4ecd3758e7 Render posts for the current channel (#153)
* Added selectChannel action

* Fixed selected team not being cleared on logout

* Fixed posts and postsByChannel not being initialized correctly

* Added basic post rendering

* Renamed selectors files to be plural

* Removed empty file

* Fixed unit tests after merge

* Removing unnecessary code
2016-12-23 10:55:33 -03:00

49 lines
1.6 KiB
JSON

{
"name": "Mattermost",
"version": "0.0.1",
"private": true,
"dependencies": {
"intl": "1.2.5",
"isomorphic-fetch": "2.2.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",
"reselect": "2.5.4"
},
"devDependencies": {
"babel-eslint": "7.0.0",
"babel-plugin-module-resolver": "2.4.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react-native": "1.9.0",
"babel-register": "6.16.3",
"deep-freeze": "0.0.1",
"eslint": "3.7.1",
"eslint-plugin-mocha": "4.7.0",
"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",
"ws": "1.1.1"
},
"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": "NODE_ENV=test mocha --compilers js:babel-register --require babel-polyfill",
"postinstall": "make post-install"
}
}