-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4.15 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "pear_reactnativeexpo",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"resolutions": {
"react-error-overlay": "^6.0.9"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"prettier-check": "prettier --check ./app",
"prettier-fix": "prettier --write ./app",
"lint": "eslint app --fix --color",
"prepare": "husky install",
"clear-cache": "jest --clearCache",
"test": "jest --no-cache --verbose true --detectOpenHandles",
"test-watch": "jest --watch",
"updateSnapshots": "jest -u --coverage=false",
"predeploy": "npm i -g expo-cli && expo build:web",
"deploy-hosting": "npm run predeploy && firebase deploy --only hosting"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@expo/vector-icons": "^13.0.0",
"@expo/webpack-config": "^0.17.4",
"@mui/material": "^5.11.9",
"@mui/x-date-pickers": "^5.0.18",
"@native-base/icons": "0.0.11",
"@react-native-async-storage/async-storage": "^1.17.3",
"@react-native-community/datetimepicker": "^6.7.5",
"@react-native-community/eslint-config": "^3.1.0",
"@react-native-community/hooks": "^2.8.1",
"@react-native-community/netinfo": "~8.2.0",
"@react-navigation/bottom-tabs": "^6.3.1",
"@react-navigation/material-top-tabs": "^6.2.2",
"@react-navigation/native": "^6.1.1",
"@react-navigation/native-stack": "^6.6.2",
"@testing-library/jest-native": "^5.3.2",
"@testing-library/react-native": "^11.5.0",
"apisauce": "^2.1.5",
"expo": "~45.0.0",
"expo-font": "~10.1.0",
"expo-image-picker": "~13.1.1",
"expo-permissions": "~13.2.0",
"expo-secure-store": "~11.2.0",
"expo-status-bar": "~1.3.0",
"jest": "^29.2.0",
"jest-environment-node": "^29.2.0",
"jest-expo": "^47.0.1",
"joi": "^17.8.3",
"joi-browser": "^13.4.0",
"jwt-decode": "^3.1.2",
"lottie-ios": "^3.2.3",
"lottie-react-native": "~5.0.1",
"mime": "^3.0.0",
"moment": "^2.29.3",
"native-base": "^3.4.5",
"nice-try": "^3.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-autocomplete-dropdown": "^2.1.0",
"react-native-calendar-picker": "^7.1.4",
"react-native-dropdown-picker": "^5.4.3",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "~2.2.1",
"react-native-modal": "^13.0.1",
"react-native-pager-view": "5.4.15",
"react-native-reanimated": "~2.8.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-svg": "12.3.0",
"react-native-tab-view": "^3.3.2",
"react-native-testing-library": "^1.4.1-es5.0",
"react-native-web": "0.17.7",
"react-native-web-lottie": "^1.4.4",
"react-router-dom": "^6.6.1",
"react-scripts": "^5.0.0",
"react-test-renderer": "^17.0.2",
"shebang-command": "^2.0.0",
"yup": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/jest": "^29.2.4",
"cypress": "^12.7.0",
"cypress-image-diff-js": "^1.23.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-absolute-imports": "^0.0.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^12.5.0",
"prettier": "2.7.1",
"react-error-overlay": "^6.0.9",
"react-test-renderer": "^17.0.2"
},
"overrides": {
"react-error-overlay": "^6.0.9"
},
"lint-staged": {
"app/**/*.js": [
"prettier --write",
"eslint --fix --color --config .eslintrc.js --resolve-plugins-relative-to ."
]
},
"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)"
],
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"./app"
]
}
}