-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 935 Bytes
/
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
{
"name": "k-tecchan-astro-blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro preferences enable devToolbar && astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preferences disable devToolbar && astro preview",
"astro": "astro",
"vrt": "astro build && playwright test",
"update-snapshot": "astro build && playwright test --update-snapshots",
"lint": "textlint \"./src/content/**/*.mdx\" -f pretty-error",
"fix": "textlint \"./src/content/**/*.mdx\" --fix"
},
"dependencies": {
"@astrojs/mdx": "^2.0.3",
"@astrojs/sitemap": "^3.0.4",
"astro": "^4.0.9",
"astro-expressive-code": "^0.33.4",
"astro-seo": "^0.8.0"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"textlint": "^13.4.1",
"textlint-rule-preset-ja-spacing": "^2.3.0"
}
}