forked from getclera/coding-challenge-jan26
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.77 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.77 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
{
"name": "coding-challenge-jan26",
"version": "0.1.0",
"private": true,
"description": "Matchmaking system - apples and oranges",
"//_note": "note for reviewer: the project currently requires multiple terminals (Supabase, Trigger.dev, SurrealDB, Frontend) to be started separately. This is a deliberate choice to ensure full log visibility during this core development phase, though a unified dev command is on the roadmap.",
"scripts": {
"dev:trigger": "trigger.dev dev",
"dev:frontend": "cd frontend && pnpm dev",
"db:setup": "deno run --allow-net --allow-read --allow-env scripts/init-db.ts",
"db:seed": "deno run --allow-net --allow-read --allow-env scripts/seed.ts --match",
"db:match": "deno run --allow-net --allow-read --allow-env scripts/batch-match.ts",
"supabase": "supabase",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:functions:serve": "supabase functions serve --no-verify-jwt --env-file supabase/.env.local",
"lint": "eslint \"**/*.{ts,tsx}\"",
"test": "pnpm test:unit && pnpm test:edge",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:edge": "deno test --config supabase/functions/_shared/deno.json --allow-net --allow-env --allow-read supabase/functions/"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@trigger.dev/build": "4.4.3",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.10.0",
"supabase": "^2.78.1",
"trigger.dev": "^4.4.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.1.0"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.41",
"@trigger.dev/sdk": "4.4.3",
"ai": "^6.0.116"
},
"pnpm": {
"onlyBuiltDependencies": [
"supabase"
]
}
}