-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "run-p lint:*",
"lint:biome": "biome lint .",
"lint:text": "textlint .",
"fix": "run-p fix:*",
"fix:biome": "biome format . --write",
"fix:text": "textlint . --fix",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.1",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.16.6",
"astro-seo": "^0.8.4",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@tailwindcss/typography": "^0.5.15",
"@textlint/textlint-plugin-markdown": "^14.0.4",
"husky": "^9.1.4",
"npm-run-all2": "^6.2.2",
"scaffdog": "^4.0.0",
"textlint": "^14.0.4",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-preset-ja-spacing": "^2.4.3",
"textlint-rule-preset-ja-technical-writing": "^10.0.1"
}
}