-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.35 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"redux-devtools": "redux-devtools --hostname=localhost --port=8082 --injectserver=reactnative",
"start": "expo start",
"remotedev": "remotedev --hostname=localhost --port=8082 --wsEngine=ws",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/react-native-action-sheet": "^3.4.0",
"@expo/samples": "~3.0.3",
"@expo/vector-icons": "^10.0.3",
"@react-native-community/datetimepicker": "^2.1.0",
"@react-navigation/web": "^1.0.0-alpha.9",
"axios": "^0.19.0",
"expo": "^35.0.0",
"expo-asset": "^7.0.0",
"expo-constants": "^7.0.0",
"expo-document-picker": "~7.0.0",
"expo-file-system": "^7.0.0",
"expo-font": "^7.0.0",
"expo-image-picker": "~7.0.0",
"expo-intent-launcher": "^7.0.0",
"expo-permissions": "~7.0.0",
"expo-web-browser": "^7.0.0",
"formik": "^2.0.3",
"hoist-non-react-statics": "^3.3.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"lodash": "^4.17.15",
"lottie-react-native": "~2.6.1",
"memoize-one": "^5.1.1",
"moment": "^2.24.0",
"normalizr": "^3.4.1",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-appearance": "~0.1.0",
"react-native-calendar-strip": "^1.3.9",
"react-native-datepicker": "^1.7.2",
"react-native-gesture-handler": "~1.3.0",
"react-native-iphone-x-helper": "^1.2.1",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-mime-types": "^2.2.1",
"react-native-modal": "^11.5.3",
"react-native-modal-datetime-picker": "^7.6.0",
"react-native-picker-select": "^6.3.3",
"react-native-push-notification-popup": "^1.4.0",
"react-native-radio-button": "^2.0.1",
"react-native-responsive-fontsize": "^0.3.0",
"react-native-screens": "^2.0.0-alpha.11",
"react-native-svg": "^9.13.6",
"react-native-svg-animated-linear-gradient": "^0.3.3",
"react-native-swipeable": "^0.6.0",
"react-native-web": "^0.11.7",
"react-native-webview": "^7.6.0",
"react-navigation": "^3.12.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-devtools-cli": "^0.0.1-1",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-promise-middleware": "^6.1.1",
"redux-thunk": "^2.3.0",
"remote-redux-devtools": "^0.5.16",
"remotedev-rn-debugger": "^0.8.4",
"reselect": "^4.0.0",
"toggle-switch-react-native": "^2.1.0",
"type-to-reducer": "^1.2.0",
"yup": "^0.27.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-preset-expo": "^7.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"jest-expo": "^35.0.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"private": true
}