-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "sergiomarquez-web",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"type-check": "astro check",
"lint": "biome check src/",
"lint:fix": "biome check src/ --write",
"format": "biome format src/ --write",
"format:check": "biome format src/",
"test": "vitest run",
"test:watch": "vitest",
"validate": "pnpm run type-check && pnpm run lint && pnpm run test && pnpm run build",
"prepare": "husky || true"
},
"dependencies": {
"@astrojs/sitemap": "^3.6.0",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@fontsource/instrument-serif": "^5.2.8",
"astro": "^5.16.0",
"lightningcss": "^1.30.2"
},
"lint-staged": {
"src/**/*.{ts,js,json,css}": [
"biome check --write"
],
"src/**/*.astro": [
"biome check --write"
]
},
"devDependencies": {
"@astrojs/check": "^0.9.5",
"@biomejs/biome": "^2.3.7",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}