-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.99 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
{
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"watch": "jest --watchAll",
"test": "jest"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/src/.*.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.15.0",
"@react-native-calendars": "file:custom/react-native-calendars",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/drawer": "^6.4.4",
"@react-navigation/native": "^6.0.12",
"@react-navigation/stack": "^6.0.7",
"@reduxjs/toolkit": "^1.6.1",
"@types/redux-actions": "^2.6.2",
"axios": "^0.21.1",
"dayjs": "^1.10.7",
"expo": "^43.0.0",
"expo-ads-admob": "~11.0.3",
"expo-calendar": "~10.0.3",
"expo-firebase-analytics": "~5.0.3",
"expo-font": "~10.0.3",
"expo-linear-gradient": "~10.0.3",
"expo-localization": "~11.0.0",
"expo-notifications": "~0.13.3",
"expo-screen-orientation": "~4.0.3",
"expo-status-bar": "~1.1.0",
"expo-updates": "~0.10.15",
"firebase": "^9.9.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-appearance": "~0.3.3",
"react-native-dotenv": "^3.2.0",
"react-native-dropdown-picker": "^5.2.3",
"react-native-gesture-handler": "~1.10.2",
"react-native-iphone-x-helper": "^1.3.1",
"react-native-keyboard-aware-scroll-view": "^0.9.4",
"react-native-loading-spinner-overlay": "^3.0.0",
"react-native-paper": "^4.9.2",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.8.0",
"react-native-status-bar-height": "^2.6.0",
"react-native-table-component": "^1.2.1",
"react-native-vector-icons": "^8.1.0",
"react-native-web": "0.17.1",
"react-redux": "^7.2.4",
"redux": "^4.1.1",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.0.0",
"@types/jest": "^27.4.0",
"@types/react": "~17.0.21",
"@types/react-dom": "~17.0.9",
"@types/react-native": "~0.64.12",
"@types/react-native-table-component": "^1.2.1",
"@types/react-native-vector-icons": "^6.4.8",
"add": "^2.0.6",
"babel-jest": "^27.5.1",
"expo-optimize": "^0.1.106",
"jest": "^27.5.1",
"jest-plugin-context": "^2.9.0",
"ts-jest": "^27.1.3",
"typescript": "~4.3.5",
"yarn": "^1.22.17"
},
"private": true
}