-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.36 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "REACT_DEBUGGER=\"rndebugger-open --open --port 19001\" expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint \"**/*.js\" --max-warnings 1",
"postinstall": "rndebugger-open"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/drawer": "^5.11.4",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "^5.12.8",
"@reduxjs/toolkit": "^1.5.0",
"add": "^2.0.6",
"axios": "^0.21.0",
"babel-plugin-inline-dotenv": "^1.6.0",
"expo": "~39.0.5",
"expo-asset": "~8.2.0",
"expo-font": "~8.3.0",
"expo-local-authentication": "~9.3.0",
"expo-secure-store": "~9.2.0",
"expo-status-bar": "~1.0.2",
"fuse.js": "^6.4.3",
"lodash-es": "^4.17.15",
"node-html-parser": "^2.0.0",
"prop-types": "^15.7.2",
"qs": "^6.9.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz",
"react-native-elements": "^3.0.0-alpha.1",
"react-native-gesture-handler": "~1.9.0",
"react-native-reanimated": "~1.13.2",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.0",
"react-native-touchable-scale": "^2.1.2",
"react-native-vector-icons": "^7.1.0",
"react-native-web": "~0.13.12",
"react-native-webview": "10.7.0",
"react-redux": "^7.2.2",
"redux-saga": "^1.1.3",
"styled-components": "^5.2.1",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "~7.12.9",
"eslint": "7.15.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": ">=4.3.4",
"lint-staged": ">=10.5.3",
"prettier": "^2.2.1",
"react-native-debugger-open": "^0.3.25"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,json}": "prettier --write",
"**/*.js": "eslint --cache --fix --max-warnings 1"
}
}