-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
89 lines (89 loc) · 2.57 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": "my-new-project",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node ./node_modules/jest/bin/jest.js --watchAll"
},
"jest": {
"preset": "jest-expo"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write --print-width 100 --single-quote",
"eslint --fix",
"git add"
]
},
"dependencies": {
"@expo/samples": "^3.0.3",
"@expo/vector-icons": "^12.0.0",
"@react-native-community/netinfo": "5.9.7",
"axios": "^0.19.2",
"expo": "^40.0.0",
"expo-app-loading": "^1.0.1",
"expo-asset": "~8.2.1",
"expo-facebook": "~9.1.0",
"expo-font": "~8.4.0",
"expo-google-app-auth": "^7.0.0",
"expo-image-picker": "~9.2.0",
"expo-linking": "~2.0.0",
"expo-localization": "~9.1.0",
"expo-notifications": "~0.8.2",
"expo-permissions": "~10.0.0",
"expo-updates": "~0.4.1",
"expo-web-browser": "~8.6.0",
"formik": "^2.2.6",
"i18n-js": "^3.3.0",
"immer": "^3.2.0",
"prop-types": "^15.6.2",
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-gesture-handler": "~1.8.0",
"react-native-in-app-notification": "git+https://[email protected]/AlexSensei/react-native-in-app-notification.git",
"react-native-keyboard-aware-scroll-view": "^0.9.3",
"react-native-reanimated": "~1.13.0",
"react-native-screens": "~2.15.0",
"react-navigation": "^4.2.2",
"react-navigation-drawer": "^1.4.0",
"react-navigation-stack": "^1.10.3",
"react-navigation-tabs": "^1.2.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-saga": "^1.1.1",
"reselect": "^4.0.0",
"sentry-expo": "~2.0.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@testing-library/react-native": "^5.0.3",
"axios-mock-adapter": "^1.17.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.3.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "8.3.0",
"eslint": "^7.7.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^1.1.2",
"jest-expo": "^40.0.0",
"lint-staged": "^7.3.0",
"prettier": "1.14.3",
"react-native-dotenv": "^0.2.0"
},
"prettier": {
"singleQuote": true
}
}