This repository has been archived by the owner on Sep 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
83 lines (83 loc) · 2.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ghubber",
"version": "0.14.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"start:ios": "concurrently -r 'npm run start' 'npm run ios'",
"start:android": "concurrently -r 'npm run start' 'npm run android'",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"flow": "flow check",
"test": "jest",
"lint": "eslint --cache .",
"lint:staged": "staged-files '**/*.js' -- $(npm bin)/eslint",
"postversion": "react-native-version",
"contributors": "curl https://api.github.com/repos/ovr/ghubber/contributors > res/contributors.json"
},
"pre-commit": {
"run": "lint:staged"
},
"dependencies": {
"babel-plugin-module-resolver": "^3.1.0",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-transform-remove-console": "^6.9.0",
"base-64": "^0.1.0",
"commonmark": "^0.28.1",
"commonmark-react-renderer": "^4.3.4",
"github-flow-js": "^0.20.0",
"i18n-js": "^3.0.3",
"lodash": "^4.17.5",
"moment": "^2.21.0",
"query-string": "6.1.0",
"react": "16.6.0-alpha.8af6728",
"react-native": "0.57.4",
"react-native-device-info": "0.22.2",
"react-native-htmlview": "^0.13.0",
"react-native-sentry": "^0.39.0",
"react-native-side-menu": "^1.1.3",
"react-native-status-bar-height": "^2.0.0",
"react-native-swiper": "^1.5.13",
"react-native-vector-icons": "^4.5.0",
"react-navigation": "^1.5.8",
"react-navigation-redux-helpers": "^1.0.3",
"react-redux": "^5.0.7",
"realm": "2.18.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@sentry/cli": "^1.35.1",
"babel-eslint": "^9.0.0",
"babel-jest": "22.4.1",
"concurrently": "^4.0.1",
"eslint": "^5.4.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"flow-bin": "^0.79.1",
"jest": "23.5.0",
"metro-react-native-babel-preset": "^0.48.2",
"pre-commit": "^1.2.2",
"react-native-version": "^2.4.1",
"react-test-renderer": "16.2.0",
"staged-files": "^0.1.2"
},
"jest": {
"preset": "react-native"
},
"contributes": {
"languages": [
{
"id": "flow",
"aliases": [
"Flow"
],
"extensions": [
".js"
]
}
]
}
}