-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "crossword-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:engine": "vitest run tests/engine",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit",
"build:wordlist": "tsx scripts/build-wordlist.ts",
"import:clues": "tsx scripts/import-clues.ts",
"import:wordlist-supabase": "tsx --env-file=.env.local scripts/import-wordlist-to-supabase.ts"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@supabase/supabase-js": "^2.49.1",
"@vercel/analytics": "^2.0.0",
"better-sqlite3": "^12.6.2",
"canvas-confetti": "^1.9.3",
"nanoid": "^5.0.9",
"next": "^14.2.23",
"next-auth": "^4.24.11",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.12",
"@types/canvas-confetti": "^1.6.4",
"@types/node": "^20.17.12",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.23",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"unrs-resolver"
]
}
}