-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.28 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.28 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
53
54
55
56
57
58
59
60
61
62
{
"type": "module",
"private": true,
"devDependencies": {
"@headlessui/tailwindcss": "^0.2.1",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.1.18",
"@types/humanize-duration": "^3.27.4",
"@types/jsdom": "27.0.0",
"@types/node": "25.0.1",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"autoprefixer": "^10.4.20",
"cheerio": "^1.1.2",
"commander": "^14.0.2",
"jsdom": "27.3.0",
"node-html-markdown": "^2.0.0",
"prettier": "^3.3.3",
"sharp": "0.34.5",
"tailwindcss": "4.1.18",
"tailwindcss-safe-area": "1.2.0",
"typescript": "^5.6.2",
"vite": "7.2.7"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-table": "^8.20.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.1.1",
"humanize-duration": "^3.32.1",
"lucide-react": "^0.561.0",
"marked": "17.0.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "10.1.0",
"recharts": "2.15.4",
"tailwind-merge": "3.4.0",
"tailwindcss-animate": "^1.0.7",
"vis-timeline": "8.5.0",
"zod": "4.1.13"
},
"scripts": {
"generate-og-images": "bun run scripts/generateOgImages.ts",
"init": "bun run scripts/splitToMultipleFiles.ts",
"dev": "vite",
"build": "bun run init && vite build && bun run serverRenderer.tsx",
"ts-check": "tsc --noEmit --skipLibCheck",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"scrape-all": "bun run scraper/execute.ts scrape-all && bun run scraper/execute.ts process && bun run scraper/execute.ts format && bun run scraper/execute.ts cve && bun run scraper/execute.ts update-links"
}
}