-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.77 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
{
"name": "spotify_match",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"windows": "react-native run-windows",
"test": "jest"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@react-native-community/datetimepicker": "6.5.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/native": "^6.1.3",
"@react-navigation/stack": "^6.3.12",
"@reduxjs/toolkit": "^1.9.3",
"@rneui/base": "^4.0.0-rc.7",
"@rneui/themed": "^4.0.0-rc.7",
"@testing-library/react-native": "^11.5.4",
"axios": "^1.3.3",
"base64-arraybuffer": "^1.0.2",
"buffer": "^6.0.3",
"expo": "^47.0.13",
"expo-auth-session": "~3.8.0",
"expo-font": "~11.0.1",
"expo-image-manipulator": "~11.0.0",
"expo-image-picker": "~14.0.2",
"expo-linear-gradient": "~12.0.1",
"expo-media-library": "~15.0.0",
"expo-random": "~13.0.0",
"expo-splash-screen": "^0.17.5",
"expo-status-bar": "~1.4.2",
"jest": "^26.6.3",
"jest-expo": "^48.0.2",
"jpeg-js": "^0.4.4",
"prettier": "^2.8.4",
"react": "18.1.0",
"react-hook-form": "^7.43.3",
"react-native": "0.70.5",
"react-native-cards-swipe": "^1.2.1",
"react-native-dropdown-picker": "^5.4.4",
"react-native-dropdown-select-list": "^2.0.4",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "~2.8.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-modal-datetime-picker": "^14.0.1",
"react-native-reanimated": "~2.12.0",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "~3.18.0",
"react-native-vector-icons": "^9.2.0",
"react-native-windows": "0.70.11",
"react-redux": "^8.0.5",
"react-test-renderer": "^18.2.0",
"redux": "^4.2.1",
"rn-fetch-blob": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"metro-config": "^0.72.3"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg|@rneui/themed|@@rneui/themed/.*|@rneui/base|@@rneui/base/.*|axios|expo-camera|expo-media-library|base64-arraybuffer|base64-arraybuffer/.*)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
],
"verbose": true
},
"private": true
}