-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.13 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.13 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
{
"name": "telnyx-react-native-voice-sdk-demo",
"main": "index.js",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "expo start -c",
"dev:web": "expo start -c --web",
"dev:android": "expo start -c --android",
"android": "expo start -c --android",
"ios": "expo start -c --ios",
"web": "expo start -c --web",
"clean": "rm -rf .expo node_modules",
"postinstall": "npx tailwindcss -i ./global.css -o ./node_modules/.cache/nativewind/global.css",
"lint": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint:md": "eslint \"**/*.md\"",
"lint:md:fix": "eslint \"**/*.md\" --fix",
"quality:check": "echo '🎨 Running formatting checks...' && npm run lint && echo '📝 Running markdown checks...' && npm run lint:md && echo '✅ Quality checks passed!'",
"security:check": "npm audit --audit-level=high",
"ci:checks": "npm run quality:check && npm run security:check"
},
"dependencies": {
"@config-plugins/react-native-webrtc": "^12.0.0",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/native": "^7.0.0",
"@rn-primitives/alert-dialog": "^1.2.0",
"@rn-primitives/avatar": "~1.2.0",
"@rn-primitives/portal": "~1.3.0",
"@rn-primitives/progress": "~1.2.0",
"@rn-primitives/slot": "^1.2.0",
"@rn-primitives/tooltip": "~1.2.0",
"@telnyx/react-native-voice-sdk": "^0.3.0",
"@telnyx/react-voice-commons-sdk": "file:react-voice-commons-sdk",
"@ungap/structured-clone": "^1.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"expo": "~53.0.23",
"expo-constants": "~17.1.7",
"expo-device": "~7.1.4",
"expo-linking": "~7.1.7",
"expo-navigation-bar": "~4.2.8",
"expo-notifications": "~0.31.4",
"expo-router": "~5.1.7",
"expo-splash-screen": "~0.30.10",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.11",
"jotai": "^2.12.5",
"loglevel": "^1.9.2",
"lucide-react-native": "^0.511.0",
"nativewind": "^4.1.23",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.6",
"react-native-reanimated": "~3.17.5",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"react-native-voip-push-notification": "^3.3.3",
"react-native-web": "~0.20.0",
"react-native-webrtc": "^124.0.5",
"react-native-websocket-self-signed": "^0.4.0",
"rxjs": "^7.8.2",
"tailwind-merge": "^3.3.1",
"tailwindcss": "3.3.5",
"tailwindcss-animate": "^1.0.7",
"uuid-random": "^1.3.2"
},
"resolutions": {
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.6",
"@types/react": "~19.0.10"
},
"overrides": {
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.6",
"@types/react": "~19.0.10"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/markdown": "^7.5.1",
"@types/react": "~19.0.10",
"eslint": "^9.39.1",
"prettier": "^3.2.5",
"typescript": "~5.8.3"
},
"private": true
}