-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.25 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.25 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
{
"name": "hogwai.github.io",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,md,mdx,mjs}\" --max-warnings=0",
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx,md,mdx,mjs}\" --fix && prettier --write \"src/**/*.{js,ts,jsx,tsx,mjs,md,mdx}\"",
"lint:md": "markdownlint-cli2 \"src/content/**/*.{md,mdx}\"",
"check-links": "find src/content -name '*.md' -o -name '*.mdx' | xargs markdown-link-check --config .markdown-link-check.json",
"new:post": "node scripts/new-content.js post",
"new:note": "node scripts/new-content.js note",
"lint-staged": "node ./node_modules/lint-staged/bin/lint-staged.js",
"commitlint": "node ./node_modules/@commitlint/cli/cli.js",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/tailwind": "^6.0.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^5.17.3",
"lucide-react": "0.575.0",
"mdast-util-to-string": "^4.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"reading-time": "^1.5.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tailwindcss/typography": "^0.5.19",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"astro-eslint-parser": "^1.3.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdown-link-check": "^3.14.2",
"markdownlint-cli2": "^0.22.0",
"prettier": "^3.8.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": [
"eslint --max-warnings=0",
"prettier --write"
],
"*.astro": [
"eslint --max-warnings=0"
],
"*.{md,mdx}": [
"markdownlint-cli2",
"prettier --write"
]
}
}