-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.92 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
63
64
65
66
67
68
69
70
71
72
{
"name": "preferred-ai-nextjs",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.20.0+sha512.9a6f330a95b66446ea088faf1521405a8a01f07fde7124cc9958dfed52d4bb436737e65b08f85f37b46fcba375092558ac51262b816844b22f63406ed166bfee",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "pnpm prepare:site && next dev",
"content:generate": "node --import tsx scripts/generate-posts-index.ts && node --import tsx scripts/generate-people-index.ts",
"images:optimize": "node --import tsx scripts/optimize-all-images.ts",
"prepare:site": "pnpm content:generate && pnpm images:optimize",
"build": "pnpm prepare:site && pnpm build:prepared",
"build:prepared": "next build --webpack && pnpm export:assert",
"export:assert": "node --import tsx scripts/assert-static-export.ts out",
"lint": "biome check .",
"typecheck": "pnpm prepare:site && pnpm typecheck:prepared",
"typecheck:prepared": "node scripts/clean-next-types.mjs && next typegen && tsc --noEmit",
"check:markdown": "node --import tsx scripts/check-markdown-security.ts",
"check:content": "node --import tsx scripts/check-editorial-content.ts",
"check:people": "node --import tsx scripts/check-people-content.ts",
"check:keystatic-policy": "node .github/scripts/classify-keystatic-changes.mjs --self-test",
"audit:wordpress": "node --import tsx scripts/audit-wordpress-parity.ts",
"audit:dependencies": "pnpm audit --audit-level high",
"validate:prepared": "pnpm lint && pnpm typecheck:prepared && pnpm check:content && pnpm check:markdown && pnpm check:people && pnpm check:keystatic-policy",
"validate": "pnpm prepare:site && pnpm validate:prepared",
"format": "biome format --write .",
"fix": "biome check --write .",
"check": "pnpm validate",
"export": "pnpm build",
"crawl:publications": "node --import tsx scripts/crawl-publications.ts",
"crawl:team": "node --import tsx scripts/crawl-team.ts"
},
"dependencies": {
"@markdoc/markdoc": "^0.5.8",
"@tailwindcss/typography": "^0.5.20",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"feed": "^5.2.1",
"gray-matter": "^4.0.3",
"katex": "^0.18.4",
"next": "16.3.1",
"react": "19.2.8",
"react-dom": "19.2.8",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sharp": "^0.35.3",
"tailwind-merge": "^3.6.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@tailwindcss/postcss": "^4.3.3",
"@types/hast": "^3.0.5",
"@types/jsdom": "^28.0.3",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"jsdom": "^29.1.1",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^6.0.3"
}
}