forked from fga-eps-mds/2024-1-GEROcuidado-Front
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.54 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
{
"name": "gerocuidado",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"start:tunnel": "expo start --tunnel",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "TZ=UTC jest --passWithNoTests --no-cache --runInBand --detectOpenHandles --coverage --colors",
"test:all": "CI=true npm run test -- --coverage",
"lint": "eslint . --fix",
"lint:report": "eslint . --format json --output-file reports/lint-report.json",
"test:cov": "jest --runInBand --coverage --colors"
},
"dependencies": {
"@expo/metro-config": "^0.18.11",
"@expo/vector-icons": "^14.0.2",
"@nozbe/watermelondb": "^0.27.1",
"@react-native-async-storage/async-storage": "1.23.1",
"@shopify/flash-list": "1.6.4",
"@testing-library/jest-native": "^5.4.3",
"axios": "^1.5.1",
"date-fns": "^2.30.0",
"expo": "^51.0.39",
"expo-build-properties": "~0.12.5",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.29",
"expo-device": "~6.0.2",
"expo-doctor": "^1.12.4",
"expo-image": "~1.13.0",
"expo-image-picker": "~15.0.7",
"expo-jwt": "^1.6.5",
"expo-linking": "~6.3.1",
"expo-notifications": "~0.28.19",
"expo-router": "~3.5.24",
"expo-splash-screen": "~0.27.7",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.27",
"jest": "^29.2.1",
"jest-expo": "~51.0.4",
"jest-mock-extended": "^3.0.5",
"jest-sonar": "^0.2.16",
"jest-sonar-reporter": "^2.0.0",
"native-notify": "^3.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-calendar-strip": "^2.2.6",
"react-native-calendars": "^1.1302.0",
"react-native-draggable-gridview": "^1.0.3",
"react-native-dropdown-select-list": "^2.0.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-mask-input": "^1.2.3",
"react-native-paper": "^5.11.2",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-swiper": "^1.6.0",
"react-native-toast-message": "^2.1.7",
"react-native-vector-icons": "^10.0.0",
"react-native-web": "~0.19.10",
"ts-jest": "^29.1.1"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@testing-library/react-native": "^12.3.1",
"@types/jest": "^29.5.6",
"@types/react": "~18.2.79",
"@types/react-native-vector-icons": "^6.4.16",
"better-sqlite3": "^11.2.1",
"eslint": "^8.52.0",
"eslint-config-universe": "^12.0.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^3.0.3",
"typescript": "~5.3.3"
},
"private": true,
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./jest-setup.js"
],
"coverageDirectory": "./coverage",
"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)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js",
"!**/__tests__/**"
],
"reporters": [
"default",
[
"jest-sonar",
{
"outputDirectory": "reports",
"outputName": "sonar-report.xml",
"sonarQubeVersion": "LATEST"
}
]
]
}
}