-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.8 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
84
85
86
87
88
89
{
"name": "gthc",
"version": "0.0.1",
"private": true,
"scripts": {
"ios": "ENVFILE=.env react-native run-ios",
"android": "ENVFILE=.env react-native run-android",
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint ./",
"test:unit": "jest",
"test": "yarn lint && yarn flow",
"precommit": "lint-staged && yarn test",
"pretty": "prettier --print-width 100 --single-quote --trailing-comma all --write \".//**/*.js\"",
"postinstall": "jetifier -r"
},
"lint-staged": {
"*.js": [
"yarn pretty",
"git add"
]
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.2",
"@react-native-community/masked-view": "^0.1.5",
"@react-navigation/bottom-tabs": "^5.0.0-alpha.22",
"@react-navigation/core": "^5.0.0-alpha.25",
"@react-navigation/native": "^5.0.0-alpha.16",
"@react-navigation/stack": "^5.0.0-alpha.39",
"add": "^2.0.6",
"axios": "^0.18.0",
"history": "^4.10.1",
"jetifier": "^1.6.5",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"native-base": "^2.8.0",
"or": "^0.2.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-app-auth": "^5.0.0-rc3",
"react-native-calendars": "^1.20.0",
"react-native-config": "^0.12.0",
"react-native-dropdown-autocomplete": "^1.0.18",
"react-native-gesture-handler": "^1.5.2",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-onesignal": "^3.6.0",
"react-native-reanimated": "^1.4.0",
"react-native-safe-area-context": "^0.6.1",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-user-avatar": "^1.0.4",
"react-native-vector-icons": "^6.6.0",
"react-native-view-more-text": "^2.1.0",
"react-random-code-generator": "^1.0.2",
"react-redux": "^6.0.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.4",
"redux-devtools": "^3.5.0",
"redux-persist": "^6.0.0",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"yarn": "^1.21.1"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.9.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "0.78.0",
"husky": "^0.14.3",
"jest": "^24.9.0",
"lint-staged": "^7.2.2",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.14.2",
"react-dom": "^16.5.1",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native"
}
}