-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 3.78 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
98
{
"name": "tidgi-mobile",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "cross-env NODE_ENV=development expo start --go --android",
"simulate-production": "cross-env NODE_ENV=production expo start --go --android --no-dev --minify",
"build:plugin": "zx scripts/buildPlugins.mjs",
"build:preload": "zx scripts/buildPreload.mjs",
"build:sqlite-migration": "drizzle-kit generate",
"build:android-apk": "eas build --profile preview --platform android --non-interactive",
"build:ios-ipa": "eas build --profile preview --platform ios",
"build:expo-sdk": "eas build --profile development --platform android --non-interactive",
"ios": "cross-env NODE_ENV=development expo start --go --ios",
"start": "cross-env NODE_ENV=development expo start",
"start:tunnel": "cross-env NODE_ENV=development expo start --tunnel --android",
"start:devClient": "cross-env NODE_ENV=development npx expo start --dev-client --android",
"web": "cross-env NODE_ENV=development expo start --web",
"init-submodules": "git submodule update --init --recursive"
},
"dependencies": {
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-picker/picker": "2.9.0",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/elements": "^2.2.5",
"@react-navigation/material-bottom-tabs": "^6.2.29",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.1",
"@types/lodash": "^4.17.15",
"beautiful-react-hooks": "^5.0.2",
"buffer": "^6.0.3",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.39.1",
"expo": "~52.0.32",
"expo-background-fetch": "13.0.5",
"expo-camera": "~16.0.16",
"expo-file-system": "~18.0.10",
"expo-haptics": "14.0.1",
"expo-linking": "7.0.5",
"expo-localization": "16.0.1",
"expo-share-intent": "^3.2.1",
"expo-sharing": "13.0.1",
"expo-sqlite": "~15.1.2",
"expo-status-bar": "2.0.1",
"expo-task-manager": "12.0.5",
"exponential-backoff": "^3.1.2",
"i18next": "^24.2.2",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"memize": "^2.1.0",
"p-timeout": "^6.1.4",
"react": "18.3.1",
"react-i18next": "^15.4.0",
"react-native": "0.76.7",
"react-native-collapsible": "^1.6.2",
"react-native-gesture-handler": "~2.20.2",
"react-native-localize": "^3.4.1",
"react-native-paper": "^5.13.1",
"react-native-postmessage-cat": "^0.3.1",
"react-native-reanimated": "~3.16.1",
"react-native-reorderable-list": "^0.11.0",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-webview": "13.12.5",
"readable-stream": "^4.7.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"serialize-error": "^12.0.0",
"stream-chain": "^2.2.5",
"stream-json": "^1.9.1",
"styled-components": "^6.1.15",
"type-fest": "^4.34.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/helper-function-name": "^7.24.7",
"@babel/helper-split-export-declaration": "^7.24.7",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-flow-strip-types": "^7.26.5",
"@babel/preset-typescript": "^7.26.0",
"@react-native-community/cli-platform-android": "^15.1.3",
"@types/react": "~18.3.18",
"@types/readable-stream": "^4.0.18",
"@types/stream-chain": "^2.1.0",
"@types/stream-json": "^1.7.8",
"babel-plugin-import": "^1.13.8",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.30.4",
"eslint-config-tidgi": "^1.2.3",
"eslint-plugin-react-native": "^5.0.0",
"tw5-typed": "^0.5.14",
"typescript": "^5.7.3",
"zx": "^8.3.2"
}
}