-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"name": "anthos",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest"
},
"dependencies": {
"@expo/metro-config": "0.10.0",
"@react-navigation/native": "^6.0.12",
"@react-navigation/stack": "^6.2.3",
"axios": "^0.27.2",
"expo": "^50.0.0",
"expo-cli": "^6.3.10",
"expo-image-picker": "~14.7.1",
"expo-splash-screen": "~0.26.4",
"expo-status-bar": "~1.11.1",
"jest-expo": "^50.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.2",
"react-native-gesture-handler": "~2.14.0",
"react-native-image-picker": "^4.10.0",
"react-native-modal": "^13.0.1",
"react-native-safe-area-context": "4.8.2",
"react-native-swipe-list-view": "^3.2.9",
"react-native-web": "~0.19.6",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.19.1",
"@testing-library/react-native": "^11.0.0",
"babel-jest": "^29.0.3",
"jest": "^29.3.1",
"react-test-renderer": "18"
},
"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)"
]
},
"private": true
}