-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
173 lines (173 loc) · 6.32 KB
/
package.json
File metadata and controls
173 lines (173 loc) · 6.32 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "teachlink_mobile",
"main": "expo-router/entry",
"version": "1.10.0",
"scripts": {
"start": "expo start",
"subset-fonts": "python scripts/subset-fonts.py",
"eas-build-pre-install": "pip install fonttools && python scripts/subset-fonts.py",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "expo lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"lint:staged": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:perf": "jest --testPathPattern=perf --runInBand",
"test:perf:watch": "jest --testPathPattern=perf --watch",
"test:perf:coverage": "jest --testPathPattern=perf --coverage",
"build:android": "eas build --platform android --profile production",
"build:ios": "eas build --platform ios --profile production",
"build:preview": "eas build --platform all --profile preview",
"build:dev": "eas build --platform all --profile development",
"submit:android": "eas submit --platform android --profile production",
"submit:ios": "eas submit --platform ios --profile production",
"deploy:android": "bash ./scripts/deploy-android.sh",
"deploy:ios": "bash ./scripts/deploy-ios.sh",
"deploy:both": "bash ./scripts/deploy-both.sh",
"deploy:preview": "bash ./scripts/deploy-preview.sh",
"prepare": "husky",
"fonts:subset": "node ./scripts/subset-fonts.js",
"fonts:analyze": "node ./scripts/analyze-fonts.js",
"audit": "npm audit --audit-level=high",
"depcheck": "depcheck",
"audit:performance": "tsx src/audit/cli.ts",
"audit:performance:html": "tsx src/audit/cli.ts --format html --output ./reports/audit-report",
"audit:performance:all": "tsx src/audit/cli.ts --format all --output ./reports/audit-report",
"audit:performance:compare": "tsx src/audit/cli.ts --compare --baseline ./audit-baseline.json",
"audit:performance:watch": "tsx src/audit/cli.ts --watch",
"audit:save-baseline": "cp audit-report.json audit-baseline.json && echo 'Baseline saved'",
"perf:analyze": "tsx src/audit/cli.ts --format html --output ./reports/performance-analysis",
"perf:bundle": "node scripts/checkBundleSize.js",
"perf:api": "node scripts/checkApiPerf.js",
"measure:bundle": "bash scripts/measureRouteBundle.sh",
"analyze:routes": "node scripts/analyzeRouteSizes.js",
"analyze:routes:report": "node scripts/analyzeRouteSizes.js --report",
"validate:openapi": "node scripts/validateOpenApi.js",
"perf:startup": "node scripts/measureStartupTime.js",
"perf:regression": "node scripts/checkPerfRegression.js",
"perf:update-baseline": "node scripts/updatePerfBaseline.js",
"size-limit": "size-limit",
"build": "npx expo export --platform all"
},
"size-limit": [
{
"name": "App entry (Android)",
"path": "index.ts",
"limit": "2.5 MB",
"ignore": [
"react-native",
"expo"
]
}
],
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.4.0",
"@react-navigation/drawer": "^7.5.0",
"@react-navigation/elements": "^2.6.3",
"@react-navigation/native": "^7.1.8",
"@react-navigation/native-stack": "^7.3.16",
"@sentry/react-native": "^5.29.2",
"axios": "^1.16.1",
"clsx": "^2.1.1",
"expo": "~54.0.33",
"expo-asset": "~12.0.12",
"expo-av": "^16.0.8",
"expo-barcode-scanner": "~12.0.0",
"expo-battery": "^55.0.13",
"expo-constants": "~18.0.13",
"expo-device": "~8.0.10",
"expo-document-picker": "^56.0.4",
"expo-file-system": "^56.0.7",
"expo-font": "~14.0.11",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-image-picker": "^55.0.19",
"expo-keep-awake": "~15.0.8",
"expo-linear-gradient": "^15.0.8",
"expo-linking": "~8.0.11",
"expo-network": "^55.0.13",
"expo-notifications": "~0.32.16",
"expo-router": "~6.0.23",
"expo-secure-store": "~15.0.8",
"expo-sensors": "^56.0.5",
"expo-speech-recognition": "^3.1.3",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-symbols": "~1.0.8",
"expo-system-ui": "~6.0.9",
"expo-video": "~3.0.16",
"expo-web-browser": "~15.0.10",
"lucide-react-native": "^0.562.0",
"nativewind": "^4.2.1",
"prettier-plugin-tailwindcss": "^0.5.14",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-iap": "^15.2.0",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.5.1",
"socket.io-client": "^4.8.3",
"web-vitals": "4.2.4",
"zustand": "^5.0.10"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@jest/globals": "^29.7.0",
"@lhci/cli": "^0.15.1",
"@size-limit/preset-app": "^12.1.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.28.0",
"@types/jest": "29.5.14",
"@types/node": "^25.0.10",
"@types/react": "~19.1.0",
"babel-preset-expo": "^54.0.10",
"depcheck": "^1.4.7",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-expo": "~54.0.17",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"react-test-renderer": "19.1.0",
"size-limit": "^12.1.0",
"tailwindcss": "^3.4.19"
},
"overrides": {
"@tootallnate/once": "^3.0.1",
"brace-expansion": "^1.1.13",
"postcss": "^8.5.12",
"tmp": "^0.2.7",
"uuid": "^14.0.0"
},
"private": true,
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --max-warnings=0 --no-warn-ignored"
],
"**/*.{json,md,css}": [
"prettier --write"
]
},
"optionalDependencies": {
"lightningcss-linux-x64-gnu": "^1.32.0"
}
}