-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.29 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.29 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "manojmahapatra-blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build && pagefind --site dist",
"build:check": "astro check && astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"deploy": "scripts/deploy.sh",
"add-source-metadata": "node scripts/add-source-metadata.mjs",
"remove-tags": "node scripts/remove-tags-from-posts.mjs",
"sync": "astro sync",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format --write src",
"check": "biome check src",
"check:fix": "biome check --write src",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.14",
"@astrojs/sitemap": "^3.6.0",
"@pagefind/default-ui": "^1.4.0",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.1.18",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"@vite-pwa/astro": "^1.2.0",
"astro": "^5.16.6",
"astro-embed": "^0.9.2",
"dayjs": "^1.11.19",
"fuse.js": "^7.1.0",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"lodash.kebabcase": "^4.1.1",
"pagefind": "^1.4.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"reading-time": "^1.5.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"satori": "^0.18.3",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"overrides": {
"esbuild": "^0.25.5",
"vite": "^6.3.5",
"fast-xml-parser": "^5.3.4",
"h3": "^1.15.6",
"serialize-javascript": "^7.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/lodash.kebabcase": "^4.1.9",
"autoprefixer": "^10.4.23",
"commitizen": "^4.3.1",
"cosmiconfig": "^9.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,tsx,json}": [
"biome check --write --files-ignore-unknown=true"
]
}
}