-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
60 lines (60 loc) · 2.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "GitterMobile",
"version": "0.6.0-beta-2",
"description": "Gitter client for mobile devices.",
"author": "Terry Sahaidak <[email protected]> (http://sahaidak.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/terrysahaidak/GitterMobile.git"
},
"bugs": {
"url": "https://github.com/terrysahaidak/GitterMobile/issues"
},
"homepage": "https://github.com/terrysahaidak/GitterMobile#readme",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android:check": "adb devices && adb reverse tcp:8081 tcp:8081",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"lint": "node node_modules/eslint/bin/eslint -c .eslintrc ./",
"release": "cd android && ./gradlew assembleRelease",
"android-release": "node node_modules/react-native/local-cli/cli.js run-android --variant=release"
},
"dependencies": {
"lodash": "^4.2.1",
"moment": "^2.11.2",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.6",
"react-native": "^0.44.3",
"react-native-device-info": "^0.10.2",
"react-native-dialogs": "0.0.19",
"react-native-drawer-layout": "^1.3.0",
"react-native-fetch-blob": "^0.10.6",
"react-native-invertible-scroll-view": "^1.0.0",
"react-native-navigation": "^1.1.125",
"react-native-parsed-text": "0.0.16",
"react-native-scrollable-tab-view": "^0.6.7",
"react-native-share": "^1.0.16",
"react-native-transformable-image": "github:terrysahaidak/react-native-transformable-image",
"react-native-vector-icons": "^4.0.1",
"react-redux": "^5.0.3",
"redux": "^3.2.1",
"redux-logger": "^3.0.1",
"redux-thunk": "^1.0.3",
"remote-redux-devtools": "^0.1.1"
},
"devDependencies": {
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "19.0.2",
"react-test-renderer": "16.0.0-alpha.6",
"eslint": "~1.10.3",
"eslint-config-airbnb": "~2.1.1",
"eslint-plugin-react": "~3.13.1",
"babel-eslint": "~4.1.6"
},
"jest": {
"preset": "react-native"
}
}