-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
272 lines (272 loc) · 13.1 KB
/
package.json
File metadata and controls
272 lines (272 loc) · 13.1 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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.3",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev -p 3000 --webpack",
"dev:3001": "next dev -p 3001 --webpack",
"dev:https": "bun run scripts/start-https-dev.js",
"dev:https:setup": "bun run scripts/setup-https-dev.js",
"dev:console": "concurrently \"bun run console:listen\" \"bun run dev\" --names \"CONSOLE,DEV\" --prefix-colors \"cyan,green\"",
"dev:only": "next dev -p 3000",
"dev:turbo": "./scripts/start-turbo.sh",
"dev:safe": "./scripts/start-dev.sh",
"dev:port": "./scripts/ensure-port-3000.sh",
"build": "rm -rf .next && BUILD_TIME=$(date -u +%Y-%m-%dT%H:%M:%S.%3NZ) SKIP_TYPE_CHECK=1 NODE_OPTIONS='--max_old_space_size=4096 --require ./global-polyfill.js' next build --webpack",
"seo:audit": "bun run scripts/seo-audit.js",
"subscription:cleanup": "bun run scripts/subscription-cleanup.js",
"subscription:cleanup:dry": "bun run scripts/subscription-cleanup.js --dry-run",
"subscription:cleanup:execute": "bun run scripts/subscription-cleanup.js --execute",
"collections:fix": "bun run scripts/fix-collection-naming.js",
"collections:cleanup": "bun run scripts/delete-old-dev-collections.js",
"icons:list": "npx tsx scripts/list-available-icons.ts",
"backfill:diff": "bun run scripts/backfill-diff-data.js",
"backfill:diff:test": "bun run scripts/backfill-diff-data.js --environment=test",
"backfill:diff:dry": "bun run scripts/backfill-diff-data.js --dry-run",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf .next node_modules/.cache",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:allocation": "jest app/hooks/__tests__ app/utils/__tests__ app/components/payments/__tests__",
"test:payments": "jest app/tests/payment-system.test.ts",
"test:payouts": "jest app/tests/payout-system.test.ts",
"test:payment-flows": "bun run app/tests/runPaymentFlowTests.ts",
"test:payment-flows:list": "bun run app/tests/runPaymentFlowTests.ts --list",
"test:payment-flows:subscription": "bun run app/tests/runPaymentFlowTests.ts --suite \"Subscription Flow\"",
"test:payment-flows:tokens": "bun run app/tests/runPaymentFlowTests.ts --suite \"Token Allocation\"",
"test:payment-flows:earnings": "bun run app/tests/runPaymentFlowTests.ts --suite \"Earnings Dashboard\"",
"test:payment-flows:payouts": "bun run app/tests/runPaymentFlowTests.ts --suite \"Payout System\"",
"test:payment-flows:e2e": "bun run app/tests/runPaymentFlowTests.ts --suite \"End-to-End Integration\"",
"test:routes": "bun run app/scripts/run-route-tests.js",
"test:routes:quick": "bun run app/scripts/run-route-tests.js --quick",
"test:routes:full": "bun run app/scripts/run-route-tests.js --full",
"test:routes:api": "bun run app/scripts/run-route-tests.js --api-only",
"test:routes:pages": "bun run app/scripts/run-route-tests.js --pages-only",
"test:integration": "jest app/tests/integration/live-route-testing.test.js --testTimeout=60000",
"test:all-routes": "bun run test:routes && bun run test:integration",
"test:api": "bun run app/scripts/run-api-tests.js",
"test:api:public": "bun run app/scripts/run-api-tests.js --public",
"test:api:auth": "bun run app/scripts/run-api-tests.js --auth",
"test:api:admin": "bun run app/scripts/run-api-tests.js --admin",
"test:api:security": "bun run app/scripts/run-api-tests.js --security",
"test:api:performance": "bun run app/scripts/run-api-tests.js --performance",
"test:api:live": "bun run app/scripts/run-api-tests.js --live",
"test:pages": "bun run app/scripts/run-page-tests.js",
"test:pages:public": "bun run app/scripts/run-page-tests.js --public",
"test:pages:auth": "bun run app/scripts/run-page-tests.js --auth",
"test:pages:admin": "bun run app/scripts/run-page-tests.js --admin",
"test:pages:dynamic": "bun run app/scripts/run-page-tests.js --dynamic",
"test:pages:redirects": "bun run app/scripts/run-page-tests.js --redirects",
"test:pages:loading": "bun run app/scripts/run-page-tests.js --loading",
"test:pages:seo": "bun run app/scripts/run-page-tests.js --seo",
"test:pages:a11y": "bun run app/scripts/run-page-tests.js --a11y",
"test:flows": "bun run app/scripts/run-integration-tests.js",
"test:flows:auth": "bun run app/scripts/run-integration-tests.js --auth",
"test:flows:pages": "bun run app/scripts/run-integration-tests.js --pages",
"test:flows:search": "bun run app/scripts/run-integration-tests.js --search",
"test:flows:payments": "bun run app/scripts/run-integration-tests.js --payments",
"test:flows:admin": "bun run app/scripts/run-integration-tests.js --admin",
"test:flows:performance": "bun run app/scripts/run-integration-tests.js --performance",
"test:flows:errors": "bun run app/scripts/run-integration-tests.js --errors",
"test:flows:live": "bun run app/scripts/run-integration-tests.js --live",
"test:all": "bun run test:routes && bun run test:api && bun run test:pages && bun run test:flows",
"test:quick-all": "bun run test:routes:quick && bun run test:api:public && bun run test:pages:public",
"test:report": "bun run app/scripts/generate-test-report.js",
"test:production": "bun run app/scripts/run-production-tests.ts",
"production-readiness-check": "bun run app/scripts/production-readiness-check.ts",
"resend:sync": "bun run scripts/sync-users-to-resend.ts",
"resend:sync:dry": "bun run scripts/sync-users-to-resend.ts --dry-run",
"resend:migrate-dev": "bun run scripts/migrate-dev-users-to-resend.ts",
"resend:migrate-dev:dry": "bun run scripts/migrate-dev-users-to-resend.ts --dry-run",
"analyze:bundle": "bun run scripts/analyze-bundle.js",
"analyze:build": "bun run build && bun run analyze:bundle",
"perf:audit": "lighthouse http://localhost:3000 --output=html --output-path=./lighthouse-report.html --chrome-flags='--headless'",
"perf:test": "bun run build && bun start & sleep 5 && bun run perf:audit && pkill -f 'next start'",
"perf:optimize": "bun run scripts/optimize-performance.js",
"perf:full": "bun run build && bun run perf:optimize && bun run analyze:bundle",
"deps:check": "bun run scripts/dependency-health-check.cjs",
"deps:validate": "bun run scripts/validate-imports.js",
"deps:map": "bun run scripts/generate-dependency-map.js",
"deps:fix": "bun run scripts/fix-import-paths.js",
"deps:heal": "bun run scripts/self-healing-dependencies.js",
"deps:heal:plan": "bun run scripts/self-healing-dependencies.js --no-auto-fix",
"deps:dashboard": "bun run scripts/dependency-dashboard.js",
"deps:test": "bun run scripts/test-dependency-system.js",
"deps:test:verbose": "bun run scripts/test-dependency-system.js --verbose",
"organize:imports": "bun run scripts/organize-imports.js",
"organize:imports:dry": "bun run scripts/organize-imports.js --dry-run",
"organize:imports:verbose": "bun run scripts/organize-imports.js --verbose",
"deps:update": "bun run scripts/auto-update-dependencies.js",
"deps:update:dry": "bun run scripts/auto-update-dependencies.js --dry-run",
"deps:update:major": "bun run scripts/auto-update-dependencies.js --major",
"deps:update:force": "bun run scripts/auto-update-dependencies.js --force",
"deps:audit": "bun run deps:check && bun run deps:validate && bun run deps:map",
"deps:health": "bun run deps:audit && bun run lint && bun run deps:dashboard",
"update:all": "bun run scripts/update-dependencies-with-error-tracking.cjs",
"update:nextjs": "bun add next@latest react@latest react-dom@latest @types/react@latest @types/react-dom@latest eslint-config-next@latest",
"update:check": "bun outdated",
"update:security": "bun pm audit --fix",
"dev:verbose": "NODE_OPTIONS='--trace-warnings --trace-deprecation' ENABLE_VERBOSE_LOGGING=true bun run dev",
"build:verbose": "NODE_OPTIONS='--trace-warnings --trace-deprecation' ENABLE_VERBOSE_LOGGING=true bun run build",
"errors:check": "bun run scripts/check-error-logs.cjs",
"errors:clear": "bun run scripts/clear-error-logs.cjs",
"vercel:check": "bun run scripts/check-vercel-build.cjs",
"vercel:fix": "bun run scripts/fix-vercel-build-errors.cjs",
"vercel:build": "BUILD_TIME=$(date -u +%Y-%m-%dT%H:%M:%S.%3NZ) SKIP_TYPE_CHECK=1 NODE_OPTIONS='--max_old_space_size=4096' bun run build",
"firebase": "firebase",
"firebase:login": "firebase login",
"firebase:list": "firebase projects:list",
"firebase:use": "firebase use",
"firebase:collections": "firebase firestore:collections",
"vercel": "vercel",
"vercel:login": "vercel login",
"vercel:list": "vercel list",
"vercel:env": "vercel env",
"firebase:audit": "bun run scripts/audit-firebase-collections.js",
"firebase:cleanup": "bun run scripts/cleanup-firebase-collections.js",
"firebase:cleanup:execute": "bun run scripts/cleanup-firebase-collections.js -- --execute --force",
"cap:sync": "npx cap sync",
"cap:open:ios": "npx cap open ios",
"cap:open:android": "npx cap open android",
"cap:run:ios": "npx cap run ios",
"cap:run:android": "npx cap run android"
},
"dependencies": {
"3d-force-graph": "^1.79.0",
"@capacitor/android": "8",
"@capacitor/app": "8",
"@capacitor/browser": "8",
"@capacitor/cli": "8",
"@capacitor/clipboard": "8",
"@capacitor/core": "8",
"@capacitor/haptics": "8",
"@capacitor/ios": "8",
"@capacitor/keyboard": "8",
"@capacitor/network": "8",
"@capacitor/preferences": "8",
"@capacitor/push-notifications": "8",
"@capacitor/share": "8",
"@google-cloud/bigquery": "^8.1.1",
"@google-cloud/logging": "^11.2.1",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@remotion/cli": "^4.0.409",
"@remotion/player": "^4.0.409",
"@stripe/react-stripe-js": "^5.0.0",
"@stripe/stripe-js": "^8.6.3",
"@tanstack/react-query": "^5.90.19",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-table": "^8.21.2",
"@types/leaflet": "^1.9.21",
"@types/three": "^0.181.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"@xyflow/react": "^12.10.0",
"baseline-browser-mapping": "^2.9.17",
"caniuse-lite": "^1.0.30001765",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"firebase": "^12.8.0",
"firebase-admin": "^13.6.0",
"framer-motion": "^12.28.1",
"jose": "^4.15.9",
"js-cookie": "^3.0.5",
"jwks-rsa": "^3.2.1",
"leaflet": "^1.9.4",
"lodash": "^4.17.23",
"lodash.debounce": "^4.0.8",
"logrocket": "11",
"lottie-react": "^2.4.1",
"lottie-web": "^5.13.0",
"lucide-react": "^0.562.0",
"next": "^16.1.4",
"next-themes": "^0.4.6",
"prismjs": "^1.30.0",
"react": "^19.2.3",
"react-confetti": "^6.4.0",
"react-data-table-component": "^7.6.2",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^19.2.3",
"react-ga4": "^2.1.0",
"react-grid-layout": "2",
"react-search-autocomplete": "^8.5.2",
"react-spinners": "^0.17.0",
"react-swipeable": "^7.0.2",
"recharts": "^3.7.0",
"remotion": "^4.0.409",
"resend": "^6.8.0",
"sharp": "^0.34.5",
"slate": "0.123.0",
"slate-dom": "^0.123.0",
"slate-history": "^0.115.0",
"slate-react": "0.123.0",
"sonner": "^2.0.7",
"stripe": "^20.2.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"three": "^0.182.0",
"typesense": "^2.1.0",
"web-vitals": "^5.1.0"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.23",
"@types/node": "^24.10.9",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-next": "16",
"firebase-tools": "^14.27.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-html-reporters": "^3.1.7",
"typescript": "^5.9.3",
"util": "^0.12.5",
"vercel": "50"
},
"overrides": {
"undici": ">=5.29.0",
"esbuild": ">=0.25.0",
"node-forge": ">=1.3.2",
"glob": ">=10.5.0",
"js-yaml": ">=4.1.1",
"body-parser": ">=2.2.1",
"tmp": ">=0.2.4",
"@modelcontextprotocol/sdk": ">=1.24.0",
"esbuild@<=0.24.2": ">=0.25.0",
"path-to-regexp@>=4.0.0 <6.3.0": ">=6.3.0",
"tar@<6.2.1": ">=6.2.1",
"undici@<5.29.0": ">=5.29.0",
"undici@>=4.5.0 <5.28.5": ">=5.28.5",
"jose": "^4.15.9"
},
"workspaces": [
".",
"functions"
]
}