-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "safe-and-sound",
"version": "1.0.0",
"description": "Offline-first first aid guide app",
"main": "App.jsx",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"lint": "eslint . --ext .js,.jsx",
"test": "jest"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/bottom-tabs": "6.5.11",
"@react-navigation/native": "6.1.10",
"@react-navigation/native-stack": "6.9.13",
"@types/react": "~18.3.12",
"expo": "^52.0.0",
"expo-asset": "~11.0.5",
"i18next": "^25.7.3",
"lucide-react-native": "^0.562.0",
"react": "18.3.1",
"react-i18next": "^16.5.0",
"react-native": "0.76.9",
"react-native-gesture-handler": "~2.20.2",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "15.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@types/react": "~18.3.12",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"react-test-renderer": "18.2.0"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.[jt]sx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(png|jpg|jpeg|gif|webp|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"setupFiles": [
"<rootDir>/jest.setup.js"
]
}
}