-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@astrojs/mdx": "^4.3.4",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.5.1",
"astro": "^5.13.7",
"sharp": "^0.34.2"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/user-event": "^14.6.1",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.35.0",
"eslint-plugin-astro": "^1.3.1",
"happy-dom": "^18.0.1",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"vitest": "^3.2.4"
}
}