-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "the-index",
"version": "0.1.0",
"private": true,
"description": "The Index — a comprehensive comic book character and team library.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"seed:sql": "tsx scripts/generate-seed-sql.ts",
"seed:assemble": "tsx scripts/assemble-seed.ts",
"seed:validate": "tsx scripts/validate-seed.ts",
"seed:ingest": "tsx scripts/ingest-seed.ts && tsx scripts/assemble-seed.ts && tsx scripts/generate-seed-sql.ts"
},
"dependencies": {
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.47.10",
"@tanstack/react-query": "^5.64.1",
"fuse.js": "^7.0.0",
"lucide-react": "^0.469.0",
"next": "15.5.19",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^20.17.12",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.18.0"
}
}