-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.72 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
{
"name": "syncclipboard-mobile",
"version": "1.0.0",
"main": "index.ts",
"workspaces": [
"modules/*"
],
"scripts": {
"start": "expo start",
"prebuild": "expo prebuild --clean",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format-docs": "prettier --write \"**/*.{json,md}\"",
"format-docs:check": "prettier --check \"**/*.{json,md}\"",
"type-check": "tsc --noEmit",
"build:apk": "cd android && gradlew assembleRelease",
"plugin:build": "cd plugins && tsc -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@expo/vector-icons": "^15.1.1",
"@microsoft/signalr": "^10.0.0",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/netinfo": "^12.0.1",
"@react-navigation/bottom-tabs": "^7.13.0",
"@react-navigation/native": "^7.1.28",
"@react-navigation/stack": "^7.7.1",
"@shopify/flash-list": "2.0.2",
"axios": "^1.13.5",
"expo": "~55.0.0",
"expo-application": "~55.0.8",
"expo-clipboard": "~55.0.8",
"expo-crypto": "~55.0.9",
"expo-document-picker": "~55.0.8",
"expo-file-system": "~55.0.10",
"expo-image-picker": "~55.0.11",
"expo-intent-launcher": "~55.0.8",
"expo-localization": "~55.0.15",
"expo-media-library": "~55.0.10",
"expo-module-scripts": "^55.0.2",
"expo-sharing": "~55.0.11",
"expo-status-bar": "~55.0.4",
"expo-system-ui": "~55.0.9",
"i18next": "^26.2.0",
"js-sha256": "^0.11.1",
"react": "19.2.0",
"react-i18next": "^17.0.8",
"react-native": "0.83.2",
"react-native-feather": "^1.1.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-logs": "^5.6.0",
"react-native-pager-view": "8.0.0",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-tab-view": "^4.3.0",
"react-native-worklets": "0.7.2",
"segmentit": "^2.0.3",
"zustand": "^5.0.11"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "~19.2.10",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-expo": "~55.0.8",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-native": "^5.0.0",
"prettier": "^3.8.1",
"typescript": "~5.9.2"
},
"private": true
}