-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
222 lines (222 loc) · 8.73 KB
/
package.json
File metadata and controls
222 lines (222 loc) · 8.73 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
{
"name": "app-template",
"version": "1.0.0",
"private": true,
"main": "expo-router/entry",
"scripts": {
"dev": "concurrently -k \"pnpm dev:server\" \"pnpm dev:metro\"",
"dev:server": "cross-env NODE_ENV=development tsx watch --tsconfig tsconfig.server.json server/_core/index.ts",
"dev:metro": "cross-env EXPO_USE_METRO_WORKSPACE_ROOT=1 EXPO_ROUTER_APP_ROOT=./app npx expo start --web --port 8081",
"docker:up": "docker compose up -d postgres api",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"docker:build": "docker compose build --no-cache",
"docker:dev": "docker compose --profile dev up dev",
"docker:full": "docker compose --profile full up",
"docker:prod": "docker compose -f docker-compose.yml -f docker-compose.prod.yml up --build",
"docker:prod:down": "docker compose -f docker-compose.yml -f docker-compose.prod.yml down",
"build": "esbuild server/_core/index.ts --platform=node --packages=external --bundle --format=cjs --outdir=dist --external:react-native --external:expo-constants --external:expo-modules-core --external:expo --external:@expo/*",
"prebuild:web": "node -e \"const fs=require('fs');const p='node_modules/react-native-css-interop/.cache';fs.mkdirSync(p,{recursive:true});fs.writeFileSync(p+'/web.css','')\"",
"build:web": "cross-env NODE_ENV=production EXPO_ROUTER_APP_ROOT=./app npx expo export --platform web && node scripts/inject-pwa-meta.js && node scripts/inject-performance-hints.js && node -e \"const fs=require('fs');const path=require('path');const copy=(s,d)=>{fs.readdirSync(s).forEach(f=>{const sp=path.join(s,f),dp=path.join(d,f);fs.statSync(sp).isDirectory()?(!fs.existsSync(dp)&&fs.mkdirSync(dp),copy(sp,dp)):fs.copyFileSync(sp,dp)})};copy('public','dist')\" && node scripts/inject-sw-registration.js && node scripts/prerender-seo.js",
"start": "NODE_ENV=production node dist/index.js",
"check": "tsc --noEmit",
"lint": "expo lint",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:watch": "vitest --config vitest.integration.config.ts",
"test:unit": "vitest run",
"test:perf": "vitest run tests/performance --pool=forks --poolOptions.forks.singleFork=true",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:visual": "playwright test e2e/visual/",
"test:e2e:visual:update": "UPDATE_SNAPSHOTS=true playwright test e2e/visual/ --update-snapshots",
"test:e2e:visual:chromium": "playwright test e2e/visual/ --project=chromium",
"test:e2e:visual:report": "playwright show-report",
"test:all": "vitest run && playwright test",
"test:site": "tsx scripts/test-site-v2.ts",
"test:la-county": "tsx scripts/test-la-county-retrieval.ts",
"test:la-county:verbose": "tsx scripts/test-la-county-retrieval.ts --verbose",
"test:gold-qa": "RUN_GOLD_QA=1 node scripts/gold-qa-runner.mjs",
"bench": "vitest bench",
"bench:perf": "vitest run tests/performance/",
"bench:report": "tsx scripts/run-benchmarks.ts",
"bench:json": "tsx scripts/run-benchmarks.ts --json",
"db:push": "drizzle-kit push",
"android": "expo start --android",
"ios": "expo start --ios",
"qr": "node scripts/generate_qr.mjs",
"analyze": "npx expo export --platform web --output-dir dist-analyze && du -sh dist-analyze/_expo/static/js/web/*",
"sitemap": "tsx scripts/generate-sitemap.ts",
"prebuild:sitemap": "tsx scripts/generate-sitemap.ts",
"build:landing": "cd landing && pnpm install && npx vite build",
"evaluate:rag": "tsx server/evaluation/rag-evaluator.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@expo/metro-runtime": "~55.0.11",
"@expo/vector-icons": "^15.1.1",
"@google-cloud/vision": "^5.3.5",
"@gorhom/bottom-sheet": "^5.2.9",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/netinfo": "^11.5.2",
"@react-native-community/slider": "^5.2.0",
"@react-navigation/bottom-tabs": "^7.15.9",
"@react-navigation/elements": "^2.9.14",
"@sentry/node": "^10.48.0",
"@supabase/supabase-js": "^2.103.1",
"@tanstack/react-query": "^5.99.0",
"@trpc/client": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"clsx": "^2.1.1",
"cookie": "^1.1.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"expo": "~55.0.26",
"expo-asset": "~55.0.17",
"expo-audio": "~55.0.14",
"expo-auth-session": "^55.0.16",
"expo-build-properties": "^55.0.14",
"expo-clipboard": "^55.0.13",
"expo-constants": "~55.0.16",
"expo-crypto": "^55.0.15",
"expo-device": "~55.0.17",
"expo-document-picker": "^55.0.13",
"expo-file-system": "^55.0.22",
"expo-font": "~55.0.8",
"expo-haptics": "^55.0.14",
"expo-linear-gradient": "^55.0.14",
"expo-linking": "~55.0.15",
"expo-notifications": "~55.0.23",
"expo-router": "~55.0.16",
"expo-status-bar": "~55.0.6",
"expo-symbols": "~55.0.9",
"expo-updates": "~55.0.24",
"expo-web-browser": "^55.0.16",
"express": "^5.1.0",
"framer-motion": "^12.38.0",
"helmet": "^8.1.0",
"nativewind": "^4.2.3",
"paubox-node": "^1.4.2",
"pdf-parse": "^2.2.5",
"pdf-to-png-converter": "^3.18.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.6",
"react-native-css-interop": "0.2.3",
"react-native-gesture-handler": "~2.30.1",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-web": "~0.21.2",
"react-native-worklets": "0.7.4",
"stripe": "^22.0.1",
"superjson": "2.2.3",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"undici": "7.24.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@testing-library/react": "^16.3.2",
"@types/cookie": "^1.0.0",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/pdf-parse": "^1.1.5",
"@types/pg": "^8.20.0",
"@types/qrcode": "^1.5.6",
"@types/react": "~19.2.0",
"@vitest/coverage-v8": "^4.1.4",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-expo": "~55.0.17",
"cheerio": "^1.2.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"drizzle-kit": "^0.31.10",
"entities": "^8.0.0",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-config-expo": "~55.0.1",
"pdf2pic": "^3.2.0",
"pg": "^8.20.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.3",
"puppeteer": "^24.40.0",
"puppeteer-core": "^24.40.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"qrcode": "^1.5.4",
"tailwindcss": "^3.4.19",
"tdd-guard-vitest": "^0.2.0",
"tesseract.js": "^7.0.0",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vitest": "^4.1.4"
},
"optionalDependencies": {
"sharp": "^0.34.5"
},
"expo": {
"install": {
"exclude": [
"@react-native-community/slider",
"@react-navigation/bottom-tabs"
]
}
},
"pnpm": {
"overrides": {
"qs": "6.15.2",
"tar": ">=7.5.11",
"undici": "7.24.6",
"flatted": ">=3.4.0",
"esbuild": ">=0.25.0",
"fast-uri": "3.1.2",
"hono": "4.12.21",
"@isaacs/brace-expansion": ">=5.0.1",
"brace-expansion": "5.0.6",
"minimatch@3>brace-expansion": "1.1.13",
"htmlparser2>entities": ">=5.0.0",
"htmlparser2@8>entities": "^4.5.0",
"basic-ftp": "5.3.1",
"ip-address": "10.1.1",
"axios": "1.15.2",
"rollup": ">=4.59.0",
"minimatch@3": "3.1.4",
"minimatch@9": "9.0.7",
"minimatch@10": "10.2.4",
"mailparser": ">=3.9.3",
"@tootallnate/once": ">=3.0.1",
"nodemailer": ">=8.0.4",
"node-forge": ">=1.4.0",
"@xmldom/xmldom": "0.8.13",
"@anthropic-ai/claude-agent-sdk>@anthropic-ai/sdk": "0.92.0",
"xcode>uuid": "14.0.0",
"postcss": "8.5.10",
"react-native-css-interop": "0.2.3",
"superjson": "2.2.3",
"copy-anything": "3.0.5",
"protobufjs": "7.6.0",
"ws": "8.20.1",
"react-native-worklets": "0.7.4"
},
"patchedDependencies": {
"react-native-css-interop@0.2.3": "patches/react-native-css-interop@0.2.3.patch"
},
"neverBuiltDependencies": [
"sharp"
]
},
"packageManager": "pnpm@9.12.0"
}