-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
51
52
{
"name": "version-watch",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"health:production": "node scripts/check-production-freshness.mjs",
"signal:production": "node scripts/check-signal-quality.mjs",
"sources:production": "node scripts/check-source-links.mjs",
"vendors:production": "node scripts/check-vendor-coverage.mjs"
},
"dependencies": {
"@convex-dev/eslint-plugin": "^2.0.0",
"@gsap/react": "^2.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/postcss": "^4.2.4",
"cheerio": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.37.0",
"date-fns": "^4.1.0",
"gsap": "^3.12.7",
"lucide-react": "^1.14.0",
"next": "^16.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rss-parser": "^3.13.0",
"tailwind-merge": "^3.5.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@types/node": "^25.6.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"eslint": "^9.34.0",
"eslint-config-next": "^16.0.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"overrides": {
"postcss": "8.5.12"
}
}