-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.97 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.97 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
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
{
"name": "korbo-joy",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"build-android-apk": "eas build -p android --profile preview",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint .",
"lint-fix": "eslint --ext .js,.jsx,.ts,.tsx ./ --fix",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@ptomasroos/react-native-multi-slider": "^2.2.2",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/netinfo": "9.3.10",
"@react-native-material/core": "^1.3.7",
"@react-navigation/bottom-tabs": "^6.5.3",
"@react-navigation/drawer": "^6.5.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.8",
"@react-navigation/stack": "^6.3.0",
"@reduxjs/toolkit": "^1.9.5",
"@rneui/base": "^4.0.0-rc.7",
"@rneui/themed": "^4.0.0-rc.7",
"expo": "49",
"expo-font": "~11.4.0",
"expo-image-picker": "~14.3.2",
"expo-linear-gradient": "~12.3.0",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.19",
"jwt-decode": "^3.1.2",
"react": "18.2.0",
"react-hook-form": "^7.43.9",
"react-native": "0.72.10",
"react-native-chart-kit": "^6.12.0",
"react-native-collapsible": "^1.6.0",
"react-native-flash-message": "^0.4.2",
"react-native-gesture-handler": "~2.12.0",
"react-native-image-picker": "^5.1.0",
"react-native-loading-spinner-overlay": "^3.0.1",
"react-native-maps": "1.7.1",
"react-native-material-ripple": "^0.9.1",
"react-native-pager-view": "6.2.0",
"react-native-paper": "^5.1.3",
"react-native-raw-bottom-sheet": "^2.2.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-swiper": "^1.6.0",
"react-native-tab-view": "^3.3.4",
"react-native-toast-message": "^2.1.6",
"react-native-uuid": "^2.0.1",
"react-native-vector-icons": "^9.2.0",
"react-native-virtualized-view": "^1.0.0",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/runtime": "^7.12.5",
"@expo/webpack-config": "^19.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"husky": "^8.0.3",
"jest": "^29.2.1",
"lint-staged": "^13.2.2",
"metro-react-native-babel-preset": "^0.72.1",
"react-dom": "18.2.0",
"react-native-dotenv": "^3.4.8",
"react-native-web": "~0.19.6",
"react-test-renderer": "18.1.0"
},
"private": true,
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.js": "yarn lint-fix"
}
}