-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.69 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.69 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
{
"name": "tripsit",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"lint": "expo lint",
"update-deps": "npx expo install --check"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@expo/vector-icons": "^14.0.3",
"@fontsource/roboto": "^5.0.14",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.2",
"expo": "^52.0.37",
"expo-constants": "~17.0.7",
"expo-font": "~13.0.4",
"expo-linking": "~7.0.5",
"expo-router": "~4.0.17",
"expo-splash-screen": "~0.29.22",
"expo-status-bar": "~2.0.1",
"expo-system-ui": "~4.0.8",
"expo-updates": "~0.27.1",
"expo-web-browser": "~14.0.2",
"moment": "^2.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.7",
"react-native-animatable": "^1.4.0",
"react-native-chart-kit": "^6.12.0",
"react-native-gesture-handler": "~2.20.2",
"react-native-paper": "^5.12.5",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "15.8.0",
"react-native-vector-icons": "^10.1.0",
"react-native-web": "~0.19.10",
"react-native-webview": "13.12.5",
"victory-native": "^36.8.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.7",
"@types/react": "~18.3.12",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-expo": "~8.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-sonarjs": "^0.23.0",
"jest": "^29.2.1",
"jest-expo": "~52.0.5",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"expo": {
"newArchEnabled": true,
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"react-native-chart-kit"
],
"listUnknownPackages": false
}
}
},
"private": true
}