-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.11 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
{
"name": "employee-directory",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "NODE_OPTIONS=--no-deprecation jest --watchAll=false",
"test:watch": "NODE_OPTIONS=--no-deprecation jest --watchAll",
"test:coverage": "NODE_OPTIONS=--no-deprecation jest --coverage",
"type-check": "tsc --noEmit"
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^@app/(.*)$": "<rootDir>/app/$1"
},
"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|@tanstack/.*)"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"app/**/*.{ts,tsx}",
"!**/*.d.ts"
]
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@tanstack/query-async-storage-persister": "^5.90.22",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-persist-client": "^5.90.22",
"axios": "^1.13.5",
"expo": "~54.0.33",
"expo-constants": "~18.0.13",
"expo-font": "~14.0.11",
"expo-haptics": "~15.0.8",
"expo-linking": "~8.0.11",
"expo-router": "~6.0.23",
"expo-status-bar": "~3.0.9",
"expo-system-ui": "~6.0.9",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0"
},
"devDependencies": {
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.1.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-expo": "^54.0.10",
"jest": "^29.7.0",
"jest-expo": "^54.0.17",
"typescript": "~5.9.2"
},
"private": true
}