-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 3.64 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
99
100
101
102
{
"name": "karthuria",
"version": "3.5.0",
"private": true,
"scripts": {
"android": "react-native run-android --active-arch-only --appIdSuffix dev",
"android-reconnect": "adb reverse tcp:8081 tcp:8081",
"android-release": "react-native run-android --active-arch-only --mode=release",
"apk-install-debug": "cd android/app/build/outputs/apk/debug && adb install app-debug.apk",
"apk-install-release": "cd android/app/build/outputs/apk/release && adb install app-release.apk",
"build-release-aab": "react-native build-android --mode=release",
"build-release-apk": "react-native build-android --tasks=assembleRelease",
"clean": "react-native clean --include android,metro",
"clean-android": "yarn clean && yarn android",
"ios": "react-native run-ios --list-devices",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prepare": "husky",
"start": "react-native start",
"start-reset-cache": "react-native start --reset-cache"
},
"dependencies": {
"@baronha/ting": "1.1.0",
"@candlefinance/faster-image": "^1.6.2",
"@gorhom/bottom-sheet": "^4.6.4",
"@pnthach95/react-native-root-view-background": "^1.4.2",
"@react-native-camera-roll/camera-roll": "^7.8.3",
"@react-native-community/netinfo": "^11.3.2",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"@shopify/flash-list": "^1.7.1",
"apisauce": "2.1.6",
"colord": "^2.9.3",
"compare-versions": "^6.1.1",
"dayjs": "^1.11.13",
"i18next": "^23.14.0",
"immer": "^10.1.1",
"intl-pluralrules": "^2.0.1",
"nativewind": "^2.0.11",
"react": "18.3.1",
"react-i18next": "^15.0.1",
"react-native": "0.75.2",
"react-native-android-widget": "^0.14.1",
"react-native-blob-util": "^0.19.11",
"react-native-bootsplash": "^6.1.2",
"react-native-device-info": "^11.1.0",
"react-native-error-boundary": "^1.2.4",
"react-native-gesture-handler": "^2.18.1",
"react-native-image-viewing": "^0.2.2",
"react-native-localize": "^3.2.1",
"react-native-mmkv-storage": "^0.10.3",
"react-native-offline": "^6.0.2",
"react-native-paper": "^5.12.5",
"react-native-permissions": "^4.1.5",
"react-native-reanimated": "^3.15.0",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "^4.10.9",
"react-native-screens": "^3.34.0",
"react-native-style-utilities": "^1.0.1",
"react-native-svg": "^15.6.0",
"react-native-vector-icons": "^10.1.0",
"use-immer": "^0.10.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.6",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/react": "^18.2.39",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^18.3.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.4.1",
"react-test-renderer": "18.3.1",
"reactotron-apisauce": "^3.0.5",
"reactotron-react-native": "^5.1.8",
"tailwindcss": "3.3.2",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}