-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 3.54 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
{
"name": "jee-ai-study-app",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test:settings-migration": "npx tsx src/storage/migrations/runSettingsMigrationTests.ts",
"test:provider-keys": "npx tsx src/domains/settings/runProviderKeyServiceTests.ts",
"test:gemini-adapter": "npx tsx src/ai/providers/runGeminiAdapterTests.ts",
"test:gemini-stream-smoke": "npx tsx src/ai/providers/runGeminiStreamSmoke.ts",
"test:multi-provider-adapters": "npx tsx src/ai/providers/runMultiProviderAdapterTests.ts",
"test:runtime-provider-init": "npx tsx src/services/runRuntimeProviderInitIntegration.ts",
"test:retry-policy": "npx tsx src/ai/orchestrator/runRetryPolicyTests.ts",
"test:circuit-breaker": "npx tsx src/ai/orchestrator/runCircuitBreakerTests.ts",
"test:routing-policy": "npx tsx src/ai/orchestrator/runRoutingPolicyTests.ts",
"test:graceful-fallback": "npx tsx src/ai/orchestrator/runGracefulFallbackIntegrationTests.ts",
"test:quality-verifier": "npx tsx src/ai/orchestrator/runQualityVerifierTests.ts",
"test:session-context": "npx tsx src/domains/doubt/runSessionContextStoreTests.ts",
"test:offline-queue": "npx tsx src/domains/doubt/runOfflineQueueIntegrationTests.ts",
"test:telemetry": "npx tsx src/ai/orchestrator/runTelemetryIntegrationTests.ts",
"test:health-selectors": "npx tsx src/domains/observability/runHealthDashboardSelectorTests.ts",
"test:task20-hardening": "npx tsx src/domains/observability/runTask20HardeningChecks.ts",
"test:task20-load-evidence": "npx tsx src/domains/observability/runTask20IntegrationLoadEvidence.ts",
"test:task20-runtime-guard-evidence": "npx tsx src/domains/observability/runTask20RuntimeGuardEvidence.ts",
"test:task20-crash-free-sanity": "npx tsx src/domains/observability/runTask20CrashFreeSanityEvidence.ts",
"test:settings-ui-snapshots": "npx tsx src/screens/runSettingsUiSnapshotTests.ts",
"test:practice": "npx tsx src/domains/practice/runPracticeIntegrationTests.ts",
"test:practice-llm-parser": "npx tsx src/domains/practice/runPracticeLlmParserTests.ts",
"test:practice-budget-policy": "npx tsx src/domains/practice/runPracticeBudgetPolicyTests.ts",
"test:revision-scheduler": "npx tsx src/domains/revision/runRevisionSchedulerTests.ts",
"test:progress": "npx tsx src/domains/progress/runProgressServiceTests.ts",
"typecheck": "npx tsc --noEmit"
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.15.6",
"@react-navigation/native": "^7.1.34",
"@react-navigation/native-stack": "^7.14.6",
"expo": "~55.0.11",
"expo-clipboard": "~55.0.11",
"expo-file-system": "~55.0.14",
"expo-image-manipulator": "~55.0.13",
"expo-image-picker": "~55.0.16",
"expo-local-authentication": "~55.0.11",
"expo-secure-store": "~55.0.11",
"expo-status-bar": "~55.0.5",
"expo-updates": "~55.0.18",
"punycode": "^2.3.1",
"react": "19.2.0",
"react-native": "0.83.4",
"react-native-gesture-handler": "^2.30.0",
"react-native-katex": "^1.3.0",
"react-native-markdown-display": "^7.0.2",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-webview": "13.16.0"
},
"devDependencies": {
"@expo/ngrok": "^4.1.3",
"@types/react": "~19.2.2",
"babel-preset-expo": "^55.0.12",
"tsx": "^4.20.6",
"typescript": "~5.9.2"
},
"private": true
}