-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 3.65 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
{
"private": false,
"name": "log4fit",
"url": "https://log4fit.com",
"version": "1.0.44",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build:all": "eas build --profile production --platform all --local",
"build:android": "eas build --profile production --platform android --local",
"build:android:dev": "eas build --profile development --platform android --local --output ./tmp/latest.apk",
"build:ios": "EXPO_APPLE_TEAM_ID='Q74S4RKQUA' eas build --profile production --platform ios --local --freeze-credentials --non-interactive --output ./tmp/latest.ipa",
"build:ios:dev": "eas build --profile development-simulator --platform ios --local --output ./tmp/latest.tar.gz",
"publish:all": "eas update --channel production --platform all --auto",
"publish:android": "eas update --channel production --platform android --auto",
"publish:ios": "eas update --channel production --platform ios --auto",
"submit:ios": "eas submit --platform ios --path ./tmp/latest.ipa",
"start": "expo start",
"dev": "./reset-watchman.sh && expo start --dev-client",
"check:tsc": "tsc --noEmit",
"check:lint": "eslint --fix ./src",
"check:sarif": "eslint ./src --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif"
},
"dependencies": {
"@babel/core": "7.25.7",
"@babel/preset-env": "7.25.7",
"@expo/vector-icons": "14.0.4",
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@react-native-community/netinfo": "11.3.1",
"@react-navigation/native": "7.0.0-rc.19",
"@react-navigation/native-stack": "7.0.0-rc.27",
"@redux-devtools/extension": "3.2.6",
"@shopify/flash-list": "1.6.4",
"@stylistic/eslint-plugin": "2.8.0",
"@types/i18n-js": "3.8.8",
"@types/lodash": "4.17.10",
"@types/node": "20.16.10",
"@types/react": "18.2.79",
"@types/react-redux": "7.1.30",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-import-newlines": "1.4.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.1.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-unused-imports": "3.0.0",
"expo": "51.0.38",
"expo-application": "5.9.1",
"expo-asset": "10.0.10",
"expo-build-properties": "0.12.5",
"expo-constants": "16.0.2",
"expo-dev-client": "4.0.28",
"expo-device": "6.0.2",
"expo-file-system": "17.0.1",
"expo-image": "1.13.0",
"expo-linking": "6.3.1",
"expo-localization": "15.0.3",
"expo-random": "14.0.1",
"expo-splash-screen": "0.27.6",
"expo-status-bar": "1.12.1",
"expo-updates": "0.25.27",
"i18n-js": "3.8.0",
"lodash": "4.17.21",
"metro-core": "0.80.12",
"metro-resolver": "0.80.12",
"mobx": "6.13.3",
"mobx-react": "7.6.0",
"react": "18.2.0",
"react-native": "0.74.5",
"react-native-get-random-values": "1.11.0",
"react-native-modal": "13.0.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-redux": "8.0.5",
"react-test-renderer": "18.2.0",
"redux": "4.2.1",
"redux-persist": "6.0.0",
"redux-saga": "1.2.3",
"typescript": "5.3.3",
"ulid": "2.3.0",
"vexo-analytics": "1.3.11",
"zod": "3.23.8"
}
}