-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 740 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 740 Bytes
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
{
"name": "blog",
"type": "module",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format:fix": "npx @biomejs/biome format --write .",
"lint:fix": "npx @biomejs/biome lint --write .",
"check:fix": "npx @biomejs/biome check --write ."
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.2.6",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.3.1",
"astro": "^5.7.11",
"astrojs-service-worker": "^2.0.0",
"typescript": "^5.5.3"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"lefthook": "^1.7.4"
}
}