-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.73 KB
/
package.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "mysite",
"private": true,
"scripts": {
"lint:depcruise": "depcruise --config .dependency-cruiser.js .",
"lint:biome": "biome check .",
"lint:next": "next lint",
"lint:tsc": "tsc",
"lint:markuplint": "markuplint --problem-only \"**/*.tsx\"",
"lint:knip": "knip",
"lint": "pnpm run '/^lint:.*/'",
"fmt:biome-check": "biome check . --write --unsafe",
"fmt": "pnpm run '/^fmt:.*/'",
"build": "next build",
"build:contentlayer": "contentlayer build",
"build:pagefind": "tsx ./scripts/pagefind.mts",
"postbuild": "pnpm run build:pagefind",
"dev": "next dev",
"start": "next start",
"test": "pnpm run '/^test:.*/'",
"test:playwright": "playwright test",
"test:vitest": "vitest run"
},
"devDependencies": {
"@axe-core/playwright": "4.10.1",
"@biomejs/biome": "1.9.4",
"@markuplint/jsx-parser": "4.7.18",
"@markuplint/react-spec": "4.5.18",
"@mh4gf/configs": "0.4.1",
"@mh4gf/eslint-config": "0.6.8",
"@next/eslint-plugin-next": "15.1.4",
"@playwright/test": "1.49.1",
"@tsconfig/next": "2.0.3",
"@tsconfig/strictest": "2.0.5",
"@types/node": "20.17.27",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/rss": "0.0.32",
"autoprefixer": "10.4.20",
"axe-html-reporter": "2.2.11",
"dependency-cruiser": "16.10.0",
"eslint": "9.22.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"knip": "5.46.0",
"lost-pixel": "3.22.0",
"markuplint": "4.11.8",
"msw": "2.7.0",
"pagefind": "1.3.0",
"postcss": "8.5.3",
"tailwindcss": "3.4.17",
"tsx": "4.19.3",
"typescript": "5.8.2",
"vitest": "3.0.5"
},
"dependencies": {
"@next/third-parties": "15.1.4",
"@radix-ui/react-dialog": "1.1.6",
"@radix-ui/react-visually-hidden": "1.1.2",
"@tailwindcss/typography": "0.5.16",
"cheerio": "1.0.0",
"clsx": "2.1.1",
"cmdk": "1.0.4",
"contentlayer": "0.3.4",
"lucide-react": "0.483.0",
"next": "15.1.4",
"next-contentlayer": "0.3.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"rehype-autolink-headings": "7.1.0",
"rehype-pretty-code": "0.14.0",
"rehype-raw": "7.0.0",
"rehype-react": "8.0.0",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.1",
"rss": "1.2.2",
"shikiji-transformers": "0.10.2",
"tailwind-merge": "2.6.0",
"tailwindcss-animate": "1.0.7",
"unified": "11.0.5",
"zod": "3.24.2"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}