-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.86 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
{
"name": "server-remote",
"version": "1.0.0",
"main": "expo-router/entry",
"description": "App for controlling a server remotely",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "arch -x86_64 expo run:ios",
"web": "expo start --web",
"lint": "eslint .",
"cargo-ios": "tsx scripts/cargo-ios.ts",
"cargo-android": "tsx scripts/cargo-android.ts",
"gradle-android": "cd android && ./gradlew clean && cd ..",
"pod-ios": "cd ios && pod install && cd ..",
"build-rust-android": "npm run cargo-android",
"build-rust-ios": "npm run cargo-ios -- --target=ios-sim && pod install --project-directory=ios",
"build-rust-ios-release": "npm run cargo-ios -- --target=ios && pod install --project-directory=ios",
"build-rust": "npm run build-rust-android && npm run build-rust-ios"
},
"dependencies": {
"@expo/metro-runtime": "^3.1.3",
"@react-navigation/drawer": "^6.6.15",
"@react-navigation/native": "^6.1.16",
"@tamagui/animations-moti": "^1.95.0",
"@tamagui/babel-plugin": "^1.91.3",
"@tamagui/config": "^1.91.3",
"@tamagui/font-inter": "^1.91.3",
"@tamagui/lucide-icons": "^1.91.3",
"@tamagui/menu": "^1.95.3",
"@tamagui/metro-plugin": "^1.91.3",
"@tamagui/shorthands": "^1.91.3",
"@tamagui/themes": "^1.91.3",
"@tamagui/toast": "^1.91.3",
"airtable": "^0.12.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"babel-preset-expo": "^10.0.1",
"burnt": "^0.12.2",
"expo": "~50.0.13",
"expo-font": "^11.10.3",
"expo-linear-gradient": "^12.7.2",
"expo-linking": "^6.2.2",
"expo-router": "^3.4.8",
"expo-secure-store": "~12.8.1",
"expo-splash-screen": "~0.26.5",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "^2.9.3",
"expo-web-browser": "^12.8.2",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.4",
"react-native": "0.73.4",
"react-native-biometrics": "^3.0.1",
"react-native-circular-progress": "^1.4.0",
"react-native-context-menu-view": "^1.15.0",
"react-native-document-picker": "^9.1.1",
"react-native-gesture-handler": "^2.16.0",
"react-native-json-tree": "^1.3.0",
"react-native-mmkv": "^2.12.2",
"react-native-reanimated": "^3.9.0",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "^3.29.0",
"react-native-svg": "^14.2.0",
"react-native-uuid": "^2.0.2",
"react-native-web": "^0.19.10",
"react-native-xml2js": "^1.0.3",
"semver": "^7.6.2",
"tamagui": "^1.91.3",
"tsx": "^4.11.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.45",
"@types/xml2js": "^0.4.14",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"private": true
}