-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.06 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
43
{
"name": "reactive",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "pnpm dlx @biomejs/biome lint src/ --apply",
"format": "pnpm dlx @biomejs/biome format src/ --write",
"check": "pnpm dlx @biomejs/biome check src/"
},
"dependencies": {
"@astrojs/mdx": "^3.1.4",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@biomejs/biome": "^1.4.1",
"astro": "^4.14.3",
"dayjs": "^1.11.10",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"tailwindcss": "^3.4.10",
"typescript": "5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"pnpm dlx @biomejs/biome format src/**/*.{ts,tsx,mjs} --write",
"pnpm dlx @biomejs/biome lint src/**/*.{ts,tsx,mjs}"
],
"*.{md,mdx}": "npx prettier --write"
}
}