-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.62 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": "@metro-ui/launcher",
"version": "0.0.0",
"private": true,
"main": "index.ts",
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"test": "dotenv -c -- jest --passWithNoTests",
"test:watch": "dotenv -c -- jest --watchAll",
"start": "dotenv -c -- expo start",
"build": "dotenv -c -- expo prebuild",
"android": "dotenv -c -- expo run:android",
"ios": "dotenv -c -- expo run:ios",
"web": "dotenv -c -- expo start --web",
"lint": "biome lint .",
"typecheck": "tsc --noEmit",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write ."
},
"jest": {
"collectCoverage": true,
"coverageProvider": "v8",
"coverageReporters": [
"json"
],
"collectCoverageFrom": [
"./src/**/*.*",
"!**/node_modules/**"
],
"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)"
],
"moduleNameMapper": {
"^~/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "./tsconfig.test.json"
}
]
}
},
"dependencies": {
"@bacons/text-decoder": "0.0.0",
"@expo/vector-icons": "15.0.3",
"@metro-ui/live-tiles": "workspace:*",
"@react-navigation/bottom-tabs": "7.10.1",
"@react-navigation/elements": "2.9.5",
"@react-navigation/native": "7.1.28",
"@shopify/flash-list": "2.2.0",
"@tanstack/react-query": "5.90.20",
"clsx": "2.1.1",
"expo-application": "7.0.8",
"expo-blur": "15.0.8",
"expo-constants": "18.0.13",
"expo-dev-client": "6.0.21",
"expo-font": "14.0.11",
"expo-haptics": "15.0.8",
"expo-image": "3.0.11",
"expo-linking": "8.0.12",
"expo-localization": "17.0.8",
"expo-router": "6.0.23",
"expo-splash-screen": "31.0.13",
"expo-status-bar": "3.0.9",
"expo-symbols": "1.0.8",
"expo-system-ui": "6.0.9",
"expo": "54.0.34",
"i18next": "25.8.0",
"lodash": "4.17.23",
"nativewind": "4.2.1",
"react-dom": "19.0.0",
"react-i18next": "16.5.4",
"react-native-gesture-handler": "2.30.0",
"react-native-keyboard-controller": "1.18.2",
"react-native-reanimated": "3.17.4",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "4.20.0",
"react-native": "0.79.5",
"react": "19.0.0",
"tailwind-merge": "3.4.0",
"tailwindcss": "3.4.17"
},
"devDependencies": {
"@babel/core": "7.28.6",
"@jest/globals": "30.2.0",
"@testing-library/react-native": "13.1.1",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.23",
"@types/node": "24.10.9",
"@types/react": "19.2.10",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"babel-preset-expo": "54.0.10",
"dotenv-cli": "11.0.0",
"expo-module-scripts": "5.0.8",
"jest-expo": "54.0.17",
"jest": "29.7.0",
"react-native-svg-transformer": "1.5.3",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3"
}
}