-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 3.58 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
{
"name": "tidgi-mobile",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "cross-env NODE_ENV=development expo start --go --android",
"build:plugin": "zx scripts/buildPlugins.mjs",
"build:preload": "zx scripts/buildPreload.mjs",
"build:sqlite-migration": "drizzle-kit generate:sqlite",
"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-async-storage/async-storage": "2.1.0",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-picker/picker": "2.10.1",
"@react-navigation/bottom-tabs": "^7.0.14",
"@react-navigation/elements": "^2.2.0",
"@react-navigation/material-bottom-tabs": "^6.2.29",
"@react-navigation/native": "^7.0.9",
"@react-navigation/stack": "^7.0.14",
"@types/lodash": "^4.17.13",
"beautiful-react-hooks": "^5.0.2",
"buffer": "^6.0.3",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.36.4",
"expo": "52.0.11",
"expo-background-fetch": "13.0.3",
"expo-camera": "16.0.7",
"expo-file-system": "18.0.4",
"expo-haptics": "14.0.0",
"expo-linking": "~7.0.3",
"expo-localization": "16.0.0",
"expo-share-intent": "^3.0.0",
"expo-sharing": "13.0.0",
"expo-sqlite": "15.0.3",
"expo-status-bar": "2.0.0",
"expo-task-manager": "12.0.3",
"exponential-backoff": "^3.1.1",
"i18next": "^24.0.2",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"memize": "^2.1.0",
"p-timeout": "^6.1.2",
"react": "18.3.1",
"react-i18next": "^15.1.2",
"react-native": "0.76.3",
"react-native-collapsible": "^1.6.2",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-gesture-handler": "2.20.2",
"react-native-localize": "^3.0.6",
"react-native-paper": "^5.12.5",
"react-native-postmessage-cat": "^0.3.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "4.1.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-webview": "13.12.4",
"readable-stream": "^4.5.2",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"serialize-error": "^11.0.3",
"stream-chain": "^2.2.5",
"stream-json": "^1.8.0",
"styled-components": "^6.1.8",
"type-fest": "^4.12.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-decorators": "^7.24.0",
"@babel/plugin-transform-flow-strip-types": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/react": "18.3.12",
"@types/readable-stream": "^4.0.10",
"@types/stream-chain": "^2.0.4",
"@types/stream-json": "^1.7.7",
"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.28.1",
"eslint-config-tidgi": "^1.2.2",
"eslint-plugin-react-native": "^4.1.0",
"react-native-reanimated": "3.16.1",
"tw5-typed": "^0.5.14",
"typescript": "^5.7.2",
"zx": "^8.2.2"
}
}