-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.45 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
{
"name": "do-you-world",
"version": "0.4.8",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"dev": "TARGET=dev expo start --dev-client",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "TZ=UTC jest --coverage --verbose",
"test:watch": "TZ=UTC jest --watchAll --coverage --verbose",
"test:badges": "jest-coverage-badges",
"build:android:preview": "eas build --platform android --profile preview",
"build:android:dev": "eas build --platform android --profile development",
"build:android:prod": "eas build --platform android --profile production",
"build:ios:preview": "eas build --platform ios --profile preview",
"build:ios:dev": "eas build --platform ios --profile development",
"build:ios:prod": "eas build --platform ios --profile production",
"publish:android": "eas submit -p android",
"publish:ios": "eas submit -p ios"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./jestSetup.js"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
},
"dependencies": {
"@expo-google-fonts/lato": "0.2.2",
"@expo/vector-icons": "^14.0.0",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native-community/slider": "4.4.2",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/material-top-tabs": "6.2.2",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"@reduxjs/toolkit": "1.9.7",
"date-fns": "2.28.0",
"date-fns-tz": "1.3.1",
"expo": "^50.0.0",
"expo-asset": "~9.0.2",
"expo-background-fetch": "~11.8.1",
"expo-cli": "^6.3.10",
"expo-clipboard": "~5.0.1",
"expo-constants": "~15.4.6",
"expo-dev-client": "~3.3.12",
"expo-font": "~11.10.3",
"expo-linking": "~6.2.2",
"expo-localization": "~14.8.4",
"expo-notifications": "~0.27.8",
"expo-splash-screen": "~0.26.5",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "~2.9.4",
"expo-task-manager": "~11.7.3",
"expo-web-browser": "~12.8.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.6",
"react-native-pager-view": "6.2.3",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-tab-view": "3.1.1",
"react-native-track-player": "4.1.1",
"react-native-web": "~0.19.6",
"react-native-webview": "13.6.4",
"react-redux": "^8.0.0",
"redux-persist": "6.0.0",
"styled-components": "5.3.5",
"expo-build-properties": "~0.11.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@expo/config": "~6.0.19",
"@testing-library/react-native": "9.1.0",
"@types/jest": "28.1.6",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@types/react-native": "0.68.2",
"@types/react-redux": "7.1.23",
"@types/react-test-renderer": "18.0.0",
"@types/redux-persist": "4.3.1",
"@types/styled-components-react-native": "5.1.3",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"jest": "^26.6.3",
"jest-coverage-badges": "1.1.2",
"jest-expo": "^45.0.0",
"jest-fetch-mock": "3.0.3",
"prettier": "2.6.2",
"react-test-renderer": "18.1.0",
"tslint-config-prettier": "1.18.0",
"typescript": "~4.3.5"
},
"private": true
}