-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.4 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.4 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
95
96
97
98
99
100
101
102
103
104
{
"name": "@remote-app/app",
"version": "0.23.2",
"description": "A transmission remote session app",
"main": "expo-router/entry",
"author": "Jorge Galat <jrgglt@gmail.com>",
"license": "MIT",
"workspaces": [
"./packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/jgalat/remote-app"
},
"scripts": {
"dev": "npx expo start",
"dev:android": "npx expo start --android",
"prebuild": "npx expo prebuild --clean --platform android",
"build:android:development": "npx eas build --platform android --local --profile development",
"build:android:production": "npx eas build --platform android --local --profile production",
"lint": "eslint --max-warnings=0 .",
"test:transmission": "npm -w @remote-app/transmission-client test",
"test:qbittorrent": "npm -w @remote-app/qbittorrent-client test",
"android": "expo run:android",
"ios": "expo run:ios"
},
"dependencies": {
"@expo/metro-runtime": "~6.1.2",
"@expo/vector-icons": "^15.0.2",
"@hookform/resolvers": "^5.1.1",
"@react-navigation/material-top-tabs": "^7.3.6",
"@react-navigation/native": "^7.1.6",
"@remote-app/transmission-client": "*",
"@shopify/react-native-skia": "2.2.12",
"@tanstack/react-query": "^5.59.13",
"expo": "~54.0.33",
"expo-application": "~7.0.8",
"expo-asset": "~12.0.8",
"expo-background-task": "~1.0.10",
"expo-build-properties": "~1.0.10",
"expo-clipboard": "~8.0.8",
"expo-constants": "~18.0.8",
"expo-crypto": "~15.0.8",
"expo-dev-client": "~6.0.20",
"expo-document-picker": "~14.0.8",
"expo-file-system": "~19.0.11",
"expo-font": "~14.0.7",
"expo-haptics": "~15.0.8",
"expo-intent-launcher": "~13.0.8",
"expo-linking": "~8.0.11",
"expo-local-authentication": "~17.0.8",
"expo-network": "~8.0.8",
"expo-notifications": "~0.32.16",
"expo-router": "~6.0.23",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-system-ui": "~6.0.9",
"expo-task-manager": "~14.0.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.58.1",
"react-native": "0.81.5",
"react-native-actions-sheet": "^0.9.7",
"react-native-gesture-handler": "~2.28.0",
"react-native-keyboard-controller": "1.18.5",
"react-native-mmkv": "^3.1.0",
"react-native-pager-view": "6.9.1",
"react-native-purchases": "^9.7.6",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-worklets": "0.5.1",
"zod": "^3.25.67"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@eslint/compat": "^1.3.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@types/react": "~19.1.10",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"tsdown": "^0.20.3",
"tsx": "^4.20.3",
"typescript": "~5.9.2",
"vitest": "^4.0.18"
}
}