-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.3 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
{
"name": "uni-connect",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"prepare": "husky",
"lint": "eslint . --ext .ts,.tsx,.yml",
"test": "jest"
},
"dependencies": {
"@expo-google-fonts/jetbrains-mono": "0.2.3",
"@expo/metro-runtime": "~3.2.1",
"@expo/vector-icons": "^14.0.0",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-community/slider": "^4.5.2",
"@react-navigation/bottom-tabs": "6.5.20",
"@react-navigation/native": "6.1.17",
"@react-navigation/stack": "6.3.29",
"@testing-library/react-native": "^12.4.0",
"axios": "^1.7.2",
"d3": "^7.9.0",
"d3-force": "^3.0.0",
"d3-shape": "^3.2.0",
"expo": "~51.0.8",
"expo-application": "~5.9.1",
"expo-auth-session": "~5.5.2",
"expo-camera": "~15.0.9",
"expo-crypto": "~13.0.2",
"expo-dev-client": "~4.0.14",
"expo-image": "~1.12.9",
"expo-image-picker": "~15.0.5",
"expo-linking": "~6.3.1",
"expo-screen-orientation": "^7.0.5",
"expo-splash-screen": "~0.27.4",
"expo-status-bar": "~1.12.1",
"expo-web-browser": "~13.0.3",
"firebase": "^10.11.0",
"graphql": "^15.8.0",
"jest": "^29.3.1",
"jest-expo": "~51.0.2",
"react": "18.2.0",
"react-native": "0.74.1",
"react-native-autocomplete-input": "^5.4.0",
"react-native-deck-swiper": "^2.0.17",
"react-native-gesture-handler": "~2.16.1",
"react-native-keyboard-aware-scroll-view": "0.9.5",
"react-native-maps": "^1.14.0",
"react-native-qrcode-svg": "~6.3.0",
"react-native-reanimated": "^3.11.0",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "^15.2.0",
"react-native-toast-message": "^2.2.0",
"react-native-ui-datepicker": "^2.0.2",
"react-native-web": "~0.19.6",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/d3-force": "^3.0.9",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.45",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-yml": "^1.12.2",
"firestore-jest-mock": "^0.25.0",
"husky": "^9.0.11",
"jest-fetch-mock": "^3.0.3",
"typescript": "~5.3.3"
},
"jest": {
"preset": "jest-expo",
"testEnvironment": "node",
"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": [
"<rootDir>/**/*.{ts,tsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js",
"!**/.expo/**",
"!**/.eslintrc.js",
"!**.config.js",
"!**/__test__/**"
]
},
"private": true
}