-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.08 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.08 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
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "acp-mobile",
"main": "expo-router/entry",
"version": "0.0.0",
"scripts": {
"start": "expo start",
"start:offline": "EXPO_NO_DOCTOR=1 EXPO_OFFLINE=1 expo start --offline",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo run:android",
"ios": "expo run:ios",
"ios:14": "expo run:ios --device 'iPhone 14'",
"ios:15": "expo run:ios --device 'iPhone 15'",
"ios:16": "expo run:ios --device 'iPhone 16'",
"ios:17": "expo run:ios --device 'iPhone 17'",
"ios:select": "expo run:ios --select-device",
"web": "expo start --web",
"lint": "expo lint",
"lint:fix": "expo lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"validate": "npm run type-check && npm run lint && npm run format:check && npm test",
"prepare": "husky",
"docs:api": "typedoc",
"docs:serve": "mkdocs serve",
"docs:build": "npm run docs:api && mkdocs build",
"docs:deploy": "npm run docs:api && mkdocs gh-deploy --force",
"bundle:analyze": "npx react-native-bundle-visualizer",
"bundle:ios": "npx expo export --platform ios && npm run bundle:analyze",
"bundle:android": "npx expo export --platform android && npm run bundle:analyze",
"bundle:report": "node scripts/bundle-report.js"
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/datetimepicker": "^8.4.4",
"@react-native-community/netinfo": "^11.4.1",
"@react-navigation/bottom-tabs": "^7.4.0",
"@react-navigation/elements": "^2.6.3",
"@react-navigation/native": "^7.1.8",
"@sentry/react-native": "~7.2.0",
"@tanstack/react-query": "^5.90.11",
"axios": "^1.13.2",
"expo": "~54.0.27",
"expo-auth-session": "~7.0.10",
"expo-constants": "~18.0.10",
"expo-crypto": "~15.0.8",
"expo-font": "~14.0.9",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-linear-gradient": "^15.0.8",
"expo-linking": "~8.0.10",
"expo-router": "~6.0.17",
"expo-secure-store": "~15.0.8",
"expo-splash-screen": "~31.0.12",
"expo-status-bar": "~3.0.9",
"expo-symbols": "~1.0.8",
"expo-system-ui": "~6.0.9",
"expo-web-browser": "~15.0.10",
"lucide-react-native": "^0.555.0",
"posthog-react-native": "^4.14.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-get-random-values": "~1.11.0",
"react-native-gifted-charts": "^1.4.52",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-sse": "^1.2.1",
"react-native-svg": "15.12.1",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.5.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@babel/preset-typescript": "^7.28.5",
"@rnx-kit/metro-plugin-cyclic-dependencies-detector": "^2.0.2",
"@shopify/react-native-performance": "^4.1.2",
"@tanstack/react-query-devtools": "^5.91.1",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/react": "~19.1.10",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"axios-mock-adapter": "^2.1.0",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-expo": "~54.0.14",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^16.2.7",
"prettier": "^3.7.1",
"react-native-bundle-visualizer": "^3.1.3",
"source-map-explorer": "^2.5.3",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "~5.9.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"bash scripts/type-check-if-ts.sh"
],
"*.{json,md}": [
"prettier --write"
]
},
"private": true
}