-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "azurdle",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"generate:puzzle": "tsx scripts/generate-puzzles.ts",
"generate:reserve": "tsx scripts/generate-puzzles.ts --reserve",
"validate:content": "tsx scripts/validate-content.ts",
"calibrate": "tsx scripts/calibrate.ts",
"check:queue": "tsx scripts/check-queue.ts",
"reserve:count": "tsx scripts/reserve-count.ts"
},
"dependencies": {
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.110.2",
"next": "16.2.10",
"react": "19.2.4",
"react-dom": "19.2.4",
"server-only": "^0.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/ui": "^4.1.10",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"tsx": "^4.23.0",
"typescript": "^5",
"vitest": "^4.1.10"
}
}