-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.91 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
{
"name": "nunchuckducks",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"amplify-modelgen": "node amplify/scripts/amplify-modelgen.js",
"amplify-push": "node amplify/scripts/amplify-push.js",
"test": "jest"
},
"dependencies": {
"@aws-amplify/cli": "10.6.2",
"@aws-amplify/core": "5.0.12",
"@aws-amplify/datastore": "4.0.12",
"@aws-amplify/storage": "5.1.2",
"@aws-sdk/client-s3": "^3.245.0",
"@aws-sdk/eventstream-codec": "^3.208.0",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-flow-strip-types": "^7.21.0",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/netinfo": "9.3.5",
"@react-native-picker/picker": "^2.4.8",
"@react-navigation/material-top-tabs": "^6.5.2",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.8",
"amazon-cognito-identity-js": "^6.1.2",
"aws-amplify": "5.0.12",
"aws-amplify-react-native": "7.0.2",
"babel-preset-expo": "^9.3.2",
"expo": "~47.0.14",
"expo-dev-client": "~2.0.1",
"expo-image-picker": "~14.0.2",
"expo-modules-autolinking": "^1.0.0",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"formik": "^2.2.9",
"graphql": "^15.8.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.8",
"react-native-fast-image": "^8.6.3",
"react-native-fs": "^2.20.0",
"react-native-get-random-values": "^1.8.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-pager-view": "6.0.1",
"react-native-progress": "^5.0.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-svg": "^13.9.0",
"react-native-tab-view": "^3.3.4",
"react-native-toast-message": "^2.1.6",
"react-native-url-polyfill": "^1.3.0",
"react-navigation": "^4.4.4",
"toggle-switch-react-native": "^3.3.0",
"expo-camera": "~13.1.0",
"expo-sharing": "~11.0.1",
"expo-media-library": "~15.0.0"
},
"devDependencies": {
"@config-plugins/detox": "^4.0.0",
"detox": "^20.1.2",
"ini": "^1.3.5",
"inquirer": "^6.5.1",
"jest": "^29.5.0",
"jest-expo": "^48.0.2",
"react-test-renderer": "~18.1.0"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jest.setup.js"
],
"transformIgnorePatterns": [
"./node_modules/(?!expo-file-system)/.*",
"./node_modules/(react-clone-referenced-element|@react-native-community|react-navigation|@react-navigation/.*|@unimodules/.*|native-base|react-native-code-push)",
"./node_modules/(?!@expo)/.*"
]
},
"private": true
}