-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2 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
{
"name": "expo-boilerplate",
"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": "^10.0.0",
"axios": "^0.19.0",
"expo": "^34.0.3",
"expo-asset": "^6.0.0",
"expo-facebook": "^6.0.0",
"expo-font": "^6.0.1",
"expo-google-app-auth": "^7.0.0",
"expo-localization": "~6.0.0",
"expo-permissions": "~6.0.0",
"formik": "^1.5.7",
"i18n-js": "^3.3.0",
"immer": "^3.2.0",
"prop-types": "^15.6.2",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-gesture-handler": "^1.3.0",
"react-native-in-app-notification": "git+https://git@github.com/AlexSensei/react-native-in-app-notification.git",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-reanimated": "^1.1.0",
"react-navigation": "^3.11.1",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"reselect": "^4.0.0",
"sentry-expo": "^1.13.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-expo": "^5.0.0",
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.3.0",
"husky": "^1.1.2",
"jest-expo": "^35.0.0",
"lint-staged": "^7.3.0",
"prettier": "1.14.3",
"react-native-dotenv": "^0.2.0"
},
"prettier": {
"singleQuote": true
}
}