-
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.09 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.09 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": "keysoft",
"version": "2.2",
"repository": {
"type": "git",
"url": "https://github.com/TheStreamCode/keysoft.git"
},
"bugs": {
"url": "https://github.com/TheStreamCode/keysoft/issues"
},
"homepage": "https://github.com/TheStreamCode/keysoft#readme",
"main": "index.js",
"scripts": {
"start": "expo start --go",
"start:tunnel": "expo start --go --tunnel",
"android": "expo start --android --go",
"web": "expo start --web",
"build:android:preview": "bunx eas-cli build --platform android --profile preview",
"build:android:production": "bunx eas-cli build --platform android --profile production",
"submit:android:production": "bunx eas-cli submit --platform android --profile production",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@expo/metro-runtime": "~55.0.11",
"@expo/vector-icons": "^15.1.1",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/slider": "5.1.2",
"@react-navigation/bottom-tabs": "^7.15.11",
"@react-navigation/native": "^7.2.2",
"@react-navigation/stack": "^7.8.11",
"crypto-js": "^4.2.0",
"expo": "~55.0.26",
"expo-build-properties": "~55.0.14",
"expo-clipboard": "~55.0.13",
"expo-constants": "~55.0.16",
"expo-crypto": "~55.0.15",
"expo-document-picker": "~55.0.13",
"expo-file-system": "~55.0.22",
"expo-font": "~55.0.8",
"expo-image-picker": "~55.0.20",
"expo-local-authentication": "~55.0.14",
"expo-localization": "~55.0.15",
"expo-navigation-bar": "~55.0.13",
"expo-notifications": "~55.0.23",
"expo-screen-capture": "~55.0.14",
"expo-secure-store": "~55.0.14",
"expo-sharing": "~55.0.20",
"expo-status-bar": "~55.0.6",
"expo-system-ui": "~55.0.18",
"expo-updates": "~55.0.24",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.6",
"react-native-argon2": "^4.0.0",
"react-native-gesture-handler": "~2.30.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-web": "^0.21.2",
"react-native-webview": "13.16.0",
"react-native-worklets": "0.7.4",
"typescript": "^5.9.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "29.5.14",
"@types/react": "~19.2.14",
"babel-plugin-module-resolver": "^5.0.3",
"eslint": "^9",
"eslint-config-expo": "~55.0.1",
"jest": "^29.7.0",
"jest-expo": "~55.0.18",
"patch-package": "^8.0.1",
"prettier": "^3.8.3",
"react-test-renderer": "19.2.0",
"ts-jest": "^29.4.9"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
},
"private": true
}