-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.17 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
{
"name": "innovatec-mobile-rework",
"version": "1.0.0",
"main": "expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest"
},
"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)"
],
"automock": false,
"resetMocks": false,
"setupFiles": [
"./setupJest.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
},
"dependencies": {
"@expo-google-fonts/karla": "^0.2.3",
"@faker-js/faker": "^8.4.1",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"@shopify/flash-list": "^1.7.0",
"@tanstack/react-query": "^5.48.0",
"@testing-library/react-hooks": "^8.0.1",
"axios": "^1.7.2",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"expo": "51.0.22",
"expo-font": "~12.0.9",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"jest-expo": "^51.0.0",
"jest-native": "^3.0.0",
"nativewind": "^2.0.11",
"react": "18.2.0",
"react-content-loader": "^7.0.2",
"react-native": "0.74.3",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "^15.3.0",
"react-native-toast-message": "^2.2.0",
"tailwindcss": "3.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@testing-library/jest-native": "^5.4.3",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.79",
"jest": "^29.4.0",
"jest-fetch-mock": "^3.0.3",
"typescript": "~5.3.3"
},
"private": true
}