-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 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
{
"name": "verba",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"ingest:nyt-mini": "tsx scripts/ingest/runNytMini.ts",
"ingest:nyt-mini:date": "tsx scripts/ingest/runNytMini.ts",
"ingest:nyt-mini:range": "tsx scripts/ingest/runNytMiniRange.ts",
"ingest:nyt-crossword": "tsx scripts/ingest/runNytCrossword.ts",
"ingest:nyt-crossword:date": "tsx scripts/ingest/runNytCrossword.ts",
"ingest:nyt-crossword:range": "tsx scripts/ingest/runNytCrosswordRange.ts",
"ingest:latimes": "tsx scripts/ingest/runLatimes.ts",
"ingest:latimes:date": "tsx scripts/ingest/runLatimes.ts",
"ingest:latimes:range": "tsx scripts/ingest/runLatimesRange.ts"
},
"dependencies": {
"@sentry/nextjs": "^10.32.1",
"@supabase/supabase-js": "^2.76.1",
"clsx": "^2.1.1",
"next": "15.5.7",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "15.5.5",
"playwright": "^1.59.1",
"postcss": "^8.5.6",
"prettier": "^3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.13",
"tsx": "^4.21.0",
"typescript": "^5"
}
}