-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.71 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.71 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
{
"name": "meshtw.github.io",
"type": "module",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format:check": "prettier --check . --plugin=prettier-plugin-astro",
"format": "prettier --write . --plugin=prettier-plugin-astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"guide:generate": "node scripts/guide/generateSlugMap.js",
"guide:generate:dry": "node scripts/guide/generateSlugMap.js --dry-run",
"guide:fetch": "bash scripts/guide/fetchHmdArticles.sh",
"guide:fetch:dry": "bash scripts/guide/fetchHmdArticles.sh --dry-run"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.8",
"@astrojs/ts-plugin": "^1.10.4",
"@tailwindcss/vite": "^4.1.4",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.14.9",
"astro": "^5.18.1",
"dotenv": "^16.5.0",
"tailwindcss": "^4.1.4"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@microflash/remark-callout-directives": "^4.4.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@tailwindcss/typography": "^0.5.16",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.3",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^16.0.0",
"hastscript": "^9.0.1",
"mdast": "^2.3.2",
"mdast-util-directive": "^3.1.0",
"mdast-util-to-hast": "^13.2.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"remark-directive": "^4.0.0",
"remark-emoji": "^5.0.1",
"typescript-eslint": "^8.32.0",
"unist-util-visit": "^5.0.0"
}
}