-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.4 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
{
"name": "Closies",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "REACT_DEBUGGER=\"rndebugger-open --open --port 8081\" node node_modules/react-native/local-cli/cli.js start",
"local": "adb reverse tcp:3000 tcp:3000; react-native run-android",
"prod": "adb reverse tcp:3000 tcp:3000; react-native run-android --variant=release",
"flow-install": "flow-typed install",
"flow-update": "flow-typed update",
"flow": "flow",
"eslint": "eslint --format 'node_modules/eslint-friendly-formatter' ./app",
"check": "npm run flow && npm run eslint",
"release": "cd android && bundle exec fastlane alpha && cd ..",
"get-release-apk": "cd android && ./gradlew assembleRelease && cd .. && cp android/app/build/outputs/apk/app-release.apk ~/Desktop",
"test": "jest"
},
"dependencies": {
"immutability-helper": "^2.3.0",
"instabug-reactnative": "^2.0.2",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"normalizr": "^3.2.3",
"prop-types": "^15.5.10",
"react": "16.0.0",
"react-native": "0.46.4",
"react-native-fbsdk": "0.6.0",
"react-native-image-picker": "^0.26.6",
"react-native-maps": "^0.16.0",
"react-native-material-ui": "1.13.0",
"react-native-orientation": "^2.1.0",
"react-native-send-intent": "^1.0.20",
"react-native-splash-screen": "^3.0.0",
"react-native-vector-icons": "^4.2.0",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-batched-actions": "^0.1.6",
"redux-form": "^7.0.3",
"redux-saga": "^0.15.6",
"styled-components": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.3",
"babel-preset-react-native": "^2.0.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-reactnative": "^1.0.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-native": "^3.0.1",
"flow-bin": "0.49.1",
"flow-typed": "^2.1.5",
"jest": "20.0.4",
"prettier": "^1.5.3",
"react-native-debugger-open": "^0.3.12",
"react-test-renderer": "16.0.0-alpha.12",
"redux-logger": "^3.0.6"
},
"jest": {
"preset": "react-native"
}
}