-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.98 KB
/
package.json
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
{
"name": "meshtalk",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"lint": "expo lint",
"lint-fix": "expo lint --fix",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"ts:check": "tsc",
"test": "jest",
"deploy": "gh-pages -t -d dist",
"predeploy": "expo export -p web",
"update-eas": "./update-eas.sh"
},
"dependencies": {
"@expo/metro-runtime": "~4.0.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/elements": "^1.3.30",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"@sentry/react-native": "~6.1.0",
"@shopify/flash-list": "1.7.1",
"@shopify/react-native-skia": "1.5.0",
"@types/react": "~18.3.12",
"apisauce": "^3.0.1",
"expo": "^52.0.4",
"expo-av": "~15.0.1",
"expo-blur": "~14.0.1",
"expo-clipboard": "~7.0.0",
"expo-constants": "~17.0.2",
"expo-file-system": "~18.0.2",
"expo-image": "~2.0.0",
"expo-image-picker": "~16.0.1",
"expo-linking": "~7.0.2",
"expo-localization": "~16.0.0",
"expo-media-library": "~17.0.2",
"expo-router": "~4.0.2",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.5",
"expo-web-browser": "~14.0.0",
"i18n-js": "^4.4.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.1",
"react-native-gesture-handler": "~2.20.2",
"react-native-ma-modal": "^0.6.0",
"react-native-maui": "0.1.2",
"react-native-reanimated": "~3.16.1",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.0.0",
"react-native-svg": "15.8.0",
"react-native-web": "~0.19.13",
"react-native-webview": "13.12.2",
"sass": "^1.82.0",
"typescript": "~5.3.3",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/jest-native": "^5.4.1",
"@testing-library/react-native": "^11.5.2",
"@types/jest": "^29.5.12",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"eslint": "^8.57.0",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-expo": "~52.0.0",
"prettier": "^3.3.2",
"react-test-renderer": "18.2.0",
"ajv": "^8.12.0"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./jest.setup.js"
],
"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|@sentry/react-native)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-fix"
}
},
"private": true
}