-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.37 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.37 KB
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
{
"name": "tech-triangle",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android --active-arch-only",
"ios": "react-native run-ios",
"lint": "eslint . --fix",
"format": "prettier --write .",
"dev": "react-native start",
"test": "jest",
"build": "cd android && gradlew.bat assembleRelease && cd .. && npm run install-release-apk",
"assembleRelease": "cd android && gradlew assembleRelease",
"open": "cd android/app/build/outputs/apk/release/ && explorer .",
"bundle": "cd android && gradlew bundleRelease",
"clean": "cd android && gradlew clean",
"install-apk": "adb install -r android/app/build/outputs/apk/debug/app-arm64-v8a-debug.apk",
"install-release-apk": "adb install -r android/app/build/outputs/apk/release/app-arm64-v8a-release.apk",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"tsc": "tsc --noEmit",
"ts": "tsgo --noEmit"
},
"trustedDependencies": [
"@shopify/react-native-skia"
],
"dependencies": {
"@react-native-community/netinfo": "^12.0.1",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-navigation/bottom-tabs": "^7.15.2",
"@react-navigation/native": "^7.1.31",
"@react-navigation/native-stack": "^7.14.2",
"@react-navigation/stack": "^7.8.2",
"@shopify/react-native-skia": "^2.4.21",
"@tanstack/react-query": "^5.84.1",
"clsx": "^2.1.1",
"hono": "^4.7.11",
"lottie-react-native": "7.3.6",
"react": "19.2.3",
"react-native": "0.84.1",
"react-native-device-info": "^15.0.2",
"react-native-geolocation-service": "^5.3.1",
"react-native-gesture-handler": "^2.30.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-mmkv": "^4.1.2",
"react-native-nitro-modules": "^0.34.1",
"react-native-reanimated": "4.2.2",
"react-native-safe-area-context": "^5.7.0",
"react-native-screens": "4.24.0",
"react-native-svg": "^15.12.1",
"react-native-worklets": "0.7.4",
"tailwind-merge": "^3.3.1",
"uniwind": "^1.4.0",
"zod": "^3.25.47",
"zustand": "^5.0.7"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"@babel/runtime": "^7.27.1",
"@biomejs/biome": "1.9.4",
"@faker-js/faker": "^10.1.0",
"@react-native-community/cli": "20.1.0",
"@react-native-community/cli-platform-android": "20.1.0",
"@react-native-community/cli-platform-ios": "20.1.0",
"@react-native/babel-preset": "0.84.1",
"@react-native/eslint-config": "0.84.1",
"@react-native/metro-config": "0.84.1",
"@react-native/typescript-config": "0.84.1",
"@tanstack/eslint-plugin-query": "^5.78.0",
"@types/jest": "^29.5.14",
"@types/node": "^25.3.2",
"@types/react": "^19.2.0",
"@types/react-test-renderer": "^19.1.0",
"@typescript/native-preview": "^7.0.0-dev.20260227.1",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.19.0",
"hermes-compiler": "250829098.0.9",
"jest": "^29.6.3",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"react-native-svg-transformer": "^1.5.1",
"react-test-renderer": "19.2.3",
"tailwindcss": "^4.2.1",
"typescript": "^5.8.3"
},
"engines": {
"node": ">= 22.11.0"
},
"patchedDependencies": {
"react-native-mmkv@4.1.2": "patches/react-native-mmkv@4.1.2.patch"
}
}