forked from steipete/steipete.me
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.21 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
{
"name": "steipete-astro",
"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",
"test": "node --test tests/*.test.mjs",
"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"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/mdx": "^5.0.3",
"@astrojs/react": "^5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@pagefind/default-ui": "^1.5.2",
"@resvg/resvg-js": "^2.6.2",
"@shikijs/transformers": "^4.0.2",
"@tailwindcss/vite": "^4.2.2",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"astro": "^6.1.5",
"astro-embed": "^0.12.0",
"dayjs": "^1.11.20",
"fuse.js": "^7.3.0",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"lodash.kebabcase": "^4.1.1",
"pagefind": "^1.5.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"remark-collapse": "^0.1.2",
"remark-github-blockquote-alert": "^2.1.0",
"remark-toc": "^9.0.0",
"satori": "^0.26.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/lodash.kebabcase": "^4.1.9",
"autoprefixer": "^10.4.27",
"commitizen": "^4.3.1",
"cosmiconfig": "^9.0.1",
"cz-conventional-changelog": "^3.3.0",
"lint-staged": "^16.4.0",
"postcss": "^8.5.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"biome check --write --files-ignore-unknown=true"
],
"*.json": [
"node scripts/lint-staged-biome.mjs"
]
}
}