-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 KB
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
{
"main": "app/index.js",
"scripts": {
"lint": "eslint \"./app/**/*.js\"",
"lint-fix": "eslint \"**/*.js\" --fix",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.6.1",
"@react-navigation/stack": "^5.6.2",
"date-fns": "2.14.0",
"expo": "~38.0.8",
"expo-font": "~8.2.1",
"expo-linking": "^1.0.3",
"expo-speech": "~8.2.1",
"expo-splash-screen": "~0.3.1",
"expo-status-bar": "^1.0.0",
"expo-updates": "~0.2.10",
"native-base": "^2.13.12",
"react": "~16.11.0",
"react-async-hook": "3.6.1",
"react-dom": "~16.11.0",
"react-native": "~0.62.2",
"react-native-gesture-handler": "~1.6.1",
"react-native-reanimated": "~1.9.0",
"react-native-screens": "~2.9.0",
"react-native-unimodules": "~0.10.1",
"react-native-web": "~0.11.7",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-immutable-state-invariant": "2.1.0",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3",
"reselect": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.10.4",
"babel-eslint": "10.1.0",
"babel-jest": "~25.2.6",
"eslint": "6.7.2",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-jsx": "8.1.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-native-a11y": "^2.0.0",
"eslint-plugin-standard": "4.0.1",
"jest": "~25.2.6",
"react-test-renderer": "~16.11.0",
"redux-logger": "3.0.6"
},
"jest": {
"preset": "react-native"
},
"private": true
}