mattermost-mobile/package.json
Thomas Hopkins 829972694b Add functionality for fetching + selecting teams & channels (#17)
* WIP-working-routes

* Fix imports

* WIP

* Remove unused proptypes & imports from SelectTeam

* Appease eslint

* Disable non-applicable eslint rules in routes & styles

* Change endpoint for fetching teams

* Handle failure to fetch teams

* Fix proptypes in ErrorText

* Add action for selecting team

* Allow user to select a channel

* Save exact versions of npm packages

* Add lodash

* Fetch teams for user to select from

* Don't require onProceed prop on SelectServer

* Abstract out the api logic from actions

* Handle fetch implementation discrepancy when parsing headers

* Remove example components

* Appease eslint

* Fix disabling of fetch-mock

* Remove response headers parsing hack

* Set mock fetch flag in config.json
2016-10-17 15:47:47 -04:00

37 lines
1.2 KiB
JSON

{
"name": "Mattermost",
"version": "0.0.1",
"private": true,
"dependencies": {
"isomorphic-fetch": "2.2.1",
"lodash": "4.16.4",
"react": "15.3.2",
"react-native": "0.34.1",
"react-native-keyboard-spacer": "0.3.0",
"react-native-router-flux": "3.36.0",
"react-redux": "4.4.5",
"redux": "3.6.0",
"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",
"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 .",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "mocha --compilers js:babel-register --require babel-polyfill",
"postinstall": "remotedev-debugger --hostname localhost --port 5678 --injectserver"
}
}