-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
{
"dependencies": {
"@expo-google-fonts/montserrat": "^0.2.0",
"@expo/config": "^10.0.0",
"@expo/vector-icons": "^14.0.3",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/bottom-tabs": "^6.5.16",
"@react-navigation/native": "^6.1.14",
"@react-navigation/stack": "^6.3.25",
"@reduxjs/toolkit": "^2.2.1",
"@testing-library/react-native": "^12.4.3",
"axios": "^1.7.7",
"expo": "~52.0.23",
"expo-constants": "~17.0.3",
"expo-device": "~7.0.1",
"expo-font": "~13.0.2",
"expo-linking": "~7.0.3",
"expo-localization": "~16.0.0",
"expo-notifications": "~0.29.11",
"expo-screen-orientation": "~8.0.2",
"expo-splash-screen": "~0.29.18",
"expo-updates": "~0.26.10",
"i18n-js": "^4.4.3",
"jest-expo": "~52.0.2",
"lodash.throttle": "^4.1.1",
"metro-react-native-babel-preset": "^0.66.2",
"moment": "^2.29.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.5",
"react-native-gesture-handler": "~2.20.2",
"react-native-modal": "^13.0.1",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "15.8.0",
"react-native-web": "~0.19.6",
"react-redux": "^9.1.0",
"redux": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@types/i18n-js": "^3.8.4",
"@types/jest": "^29.5.12",
"@types/lodash.throttle": "^4.1.6",
"@types/react-redux": "^7.1.25",
"@types/redux-mock-store": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"react-test-renderer": "^18.2.0",
"redux-mock-store": "^1.5.4",
"typescript": "~5.3.3"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --coverage=false",
"testDebug": "jest -o --watch --coverage=false",
"testFinal": "jest",
"updateSnapshots": "jest -u --coverage=false"
},
"private": true
}