-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.84 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
{
"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 .",
"dev": "react-native start",
"test": "jest",
"build": "cd android && gradlew 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-release.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 ."
},
"dependencies": {
"@react-native-clipboard/clipboard": "^1.16.1",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.1",
"@shopify/react-native-skia": "^1.11.5",
"@tanstack/react-query": "^5.66.0",
"clsx": "^2.1.1",
"hono": "^4.6.20",
"lottie-react-native": "^7.2.2",
"nativewind": "^4.1.23",
"react": "18.3.1",
"react-native": "0.77.0",
"react-native-device-info": "^14.0.4",
"react-native-geolocation-service": "^5.3.1",
"react-native-gesture-handler": "^2.23.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-mmkv": "^3.2.0",
"react-native-reanimated": "^3.16.7",
"react-native-safe-area-context": "^5.2.0",
"react-native-screens": "^4.6.0",
"react-native-svg": "^15.11.1",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/runtime": "^7.26.7",
"@react-native-community/cli": "15.1.3",
"@react-native-community/cli-platform-android": "15.1.3",
"@react-native-community/cli-platform-ios": "15.1.3",
"@react-native/babel-preset": "0.77.0",
"@react-native/eslint-config": "0.77.0",
"@react-native/metro-config": "0.77.0",
"@react-native/typescript-config": "0.77.0",
"@tanstack/eslint-plugin-query": "^5.66.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.18",
"@types/react-test-renderer": "^18.3.1",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-native-svg-transformer": "^1.5.0",
"react-test-renderer": "18.3.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
}
}