-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.49 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
{
"name": "companion",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"check:colors": "bash scripts/check-hex-colors.sh",
"check:tokens": "bash scripts/check-design-tokens.sh",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings 0 --no-warn-ignored",
"prettier --write"
],
"*.{js,json,md}": "prettier --write"
},
"dependencies": {
"@mykin-ai/expo-audio-stream": "^0.3.5",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/netinfo": "11.5.2",
"@react-navigation/native": "^7.1.28",
"@sentry/react-native": "~7.11.0",
"@supabase/supabase-js": "^2.99.1",
"expo": "^55.0.23",
"expo-audio": "~55.0.8",
"expo-constants": "~55.0.7",
"expo-dev-client": "~55.0.16",
"expo-device": "~55.0.10",
"expo-file-system": "~55.0.10",
"expo-haptics": "~55.0.8",
"expo-notifications": "~55.0.14",
"expo-router": "^55.0.5",
"expo-secure-store": "~55.0.8",
"expo-splash-screen": "~55.0.10",
"expo-status-bar": "~55.0.4",
"expo-symbols": "^55.0.5",
"expo-updates": "~55.0.21",
"nativewind": "^4.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-native": "0.83.2",
"react-native-reanimated": "^4.2.2",
"react-native-safe-area-context": "^5.7.0",
"react-native-screens": "^4.24.0",
"react-native-url-polyfill": "^3.0.0",
"react-native-web": "~0.21.0",
"tailwindcss": "^3.4.19",
"zod": "^3.23.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^30.0.0",
"@types/react": "~19.2.2",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.39.3",
"eslint-config-expo": "^55.0.0",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-expo": "^55.0.17",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"typescript": "~5.9.2"
},
"private": true
}