forked from OpenManifest/openmanifest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.83 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"start:production": "EXPO_ENV=production expo start",
"android": "EXPO_ENV=development expo start --android",
"android:production": "EXPO_ENV=production expo start --android",
"ios": "EXPO_ENV=development expo start --ios",
"ios:production": "EXPO_ENV=production expo start --ios",
"web": "EXPO_ENV=development expo start --web",
"web:production": "EXPO_ENV=production expo start --web",
"eject": "expo eject",
"test": "jest --watchAll",
"ts:graphql": "curl http://127.0.0.1:5000/graphql -o schema.graphql; yarn graphql-codegen",
"build:web": "EXPO_ENV=production expo build:web",
"build:ios": "EXPO_ENV=production expo build:ios",
"build:android": "EXPO_ENV=production expo build:android",
"expo:publish": "EXPO_ENV=production expo publish"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*)"
],
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect",
"<rootDir>/jest.setup.ts"
]
},
"dependencies": {
"@apollo/client": "^3.3.14",
"@expo/vector-icons": "^12.0.0",
"@gorhom/bottom-sheet": "3.6.5",
"@react-native-async-storage/async-storage": "^1.15.4",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/datetimepicker": "3.0.4",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/slider": "3.0.3",
"@react-navigation/bottom-tabs": "5.11.2",
"@react-navigation/material-bottom-tabs": "^5.3.15",
"@react-navigation/native": "~5.8.10",
"@react-navigation/stack": "~5.12.8",
"@reduxjs/toolkit": "^1.5.1",
"@rpldy/native-uploady": "^0.11.4",
"date-fns": "^2.21.1",
"expo": "~40.0.0",
"expo-asset": "~8.2.1",
"expo-constants": "~9.3.0",
"expo-document-picker": "~8.4.1",
"expo-font": "~8.4.0",
"expo-image-picker": "~9.2.0",
"expo-linking": "~2.0.0",
"expo-splash-screen": "~0.8.0",
"expo-status-bar": "~1.0.3",
"expo-web-browser": "~8.6.0",
"graphql": "^15.5.0",
"lodash": "^4.17.21",
"react": "16.13.1",
"react-day-picker": "^7.4.10",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-color-picker": "^0.6.0",
"react-native-gesture-handler": "1.10.3",
"react-native-mmkv-storage": "^0.5.3",
"react-native-pager-view": "^5.1.5",
"react-native-paper": "4.8.1",
"react-native-paper-dates": "web-ridge/react-native-paper-dates",
"react-native-paper-tabs": "^0.4.2",
"react-native-reanimated": "2.0.0-rc.0",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.0",
"react-native-web": "~0.13.12",
"react-redux": "^7.2.3",
"redux": "^4.0.5",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@expo/webpack-config": "^0.12.68",
"@graphql-codegen/cli": "^1.21.3",
"@graphql-codegen/typescript": "^1.21.1",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.168",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-test-renderer": "16.9.5",
"enzyme": "^3.11.0",
"graphql-to-typescript": "^0.1.2",
"jest-expo": "~40.0.0",
"react-test-renderer": "16.11.0",
"redux-mock-store": "^1.5.4",
"typescript": "~4.0.0"
},
"private": true
}