-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.13 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.13 KB
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
{
"name": "icealert",
"version": "1.0.0",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@expo/vector-icons": "^15.0.2",
"@maplibre/maplibre-react-native": "^10.2.1",
"@notifee/react-native": "^9.1.8",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-firebase/app": "^23.3.1",
"@react-native-firebase/database": "^23.3.1",
"@react-native-firebase/messaging": "^23.3.1",
"@react-navigation/bottom-tabs": "^7.4.7",
"@react-navigation/native": "^7.1.17",
"@react-navigation/stack": "^7.4.8",
"expo": "~54.0.6",
"expo-blur": "^15.0.7",
"expo-font": "^14.0.8",
"expo-haptics": "^15.0.7",
"expo-linear-gradient": "^15.0.7",
"expo-location": "^19.0.7",
"expo-notifications": "^0.32.11",
"expo-sqlite": "^16.0.8",
"expo-status-bar": "~3.0.8",
"react": "19.1.0",
"react-native": "0.81.4",
"react-native-gesture-handler": "^2.28.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-reanimated": "^4.1.0",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": "^4.16.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^30.0.0",
"@types/react": "~19.1.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-native": "^5.0.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest-expo": "^54.0.11",
"prettier": "^3.6.2",
"react-native-worklets": "^0.5.1",
"ts-jest": "^29.4.1",
"typescript": "~5.9.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"testMatch": [
"**/__tests__/**/*.(ts|tsx|js)",
"**/*.(test|spec).(ts|tsx|js)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!src/types/**/*",
"!src/**/__tests__/**/*"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
},
"private": true
}