-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.24 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
93
94
95
96
97
98
99
100
101
{
"name": "blog-astro",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903",
"scripts": {
"build": "run-s check \"build-ci {@}\" --",
"build-ci": "run-s dep:playwright \"build-only {@}\" --",
"build-only": "astro build",
"check": "astro check",
"dep:playwright": "playwright install chromium",
"dev": "astro dev",
"lint": "run-s \"lint:css {@}\" \"lint:js {@}\" lint:md --",
"lint:css": "stylelint \"src/**/*.{css,scss,astro}\"",
"lint:js": "eslint \"src/**/*.{md,mdx,js,ts,cjs}\"",
"lint:md": "remark . --quiet --frail",
"preview": "astro preview"
},
"dependencies": {
"@astrojs/mdx": "^4.0.3",
"@fontsource-variable/fira-code": "^5.1.1",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/noto-sans-sc": "^5.1.1",
"@fontsource/fira-code": "^5.1.1",
"@fontsource/inter": "^5.1.1",
"@fontsource/noto-sans-sc": "^5.1.1",
"astro": "^5.1.2",
"astro-critters": "^2.2.0",
"astro-expressive-code": "^0.38.3",
"astro-min": "1.3.1",
"astro-purgecss": "^5.1.0",
"date-fns": "4.1.0",
"katex": "^0.16.19",
"lxgw-wenkai-screen-webfont": "^1.7.0",
"mermaid": "^11.4.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.1",
"rehype-mermaid": "^3.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-mermaidjs": "^7.0.0",
"remark-smartypants": "^3.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/markdown-remark": "^6.0.1",
"@eslint/js": "^9.17.0",
"astro-eslint-parser": "^1.1.0",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.3",
"cssnano": "^7.0.6",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-mdx": "^3.1.5",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"image-size": "^1.2.0",
"npm-run-all2": "^7.0.2",
"playwright": "^1.49.1",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"remark-frontmatter": "^5.0.0",
"remark-lint-maximum-line-length": "^4.0.1",
"remark-lint-ordered-list-marker-value": "^4.0.0",
"remark-mdx": "^3.1.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-preset-prettier": "^2.0.1",
"sharp": "^0.33.5",
"stylelint": "^16.12.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"vite": "^6.0.7"
},
"remarkConfig": {
"plugins": [
"remark-mdx",
"remark-frontmatter",
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
"remark-preset-lint-markdown-style-guide",
[
"remark-lint-maximum-line-length",
false
],
[
"remark-lint-ordered-list-marker-value",
"ordered"
],
"remark-preset-prettier"
]
}
}