-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.43 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
{
"name": "woodwardweb",
"version": "2.1.0",
"description": "Woodwardweb Blog",
"author": "Martin Woodward",
"license": "MIT",
"packageManager": "yarn@1.22.22",
"scripts": {
"dev": "yarn generate-json && astro dev",
"build": "yarn generate-json && astro build && node scripts/generate-og-images.js",
"ci": "yarn generate-json && astro check && astro build && node scripts/generate-og-images.js",
"preview": "astro preview",
"format": "prettier -w ./src",
"generate-json": "node scripts/jsonGenerator.js",
"og-preview": "echo 'Open http://localhost:4321/og-preview in your browser to preview OG images (make sure dev server is running)'",
"generate-og-images": "node scripts/generate-og-images.js"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/markdown-satteri": "0.3.2",
"@astrojs/mdx": "7.0.0",
"@astrojs/react": "^6.0.0",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@primer/react-brand": "^0.69.0",
"astro": "7.0.3",
"astro-auto-import": "^0.5.1",
"astro-font": "^1.0.0",
"date-fns": "^4.1.0",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"jsdom": "^28.1.0",
"marked": "^17.0.4",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"react-lite-youtube-embed": "^3.5.1",
"remark-collapse": "^0.1.2",
"remark-emoji": "^5.0.2",
"remark-gfm": "^4.0.1",
"remark-toc": "^9.0.0",
"sanitize-html": "^2.17.1",
"sharp": "^0.34.5",
"striptags": "^3.2.0",
"swiper": "^14.0.0",
"vite": "^8.0.13"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "25.0.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"playwright": "^1.57.0",
"postcss": "^8.5.15",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"sass": "^1.97.1",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.3"
},
"resolutions": {
"@babel/core": "8.0.1",
"rollup": "4.62.2",
"flatted": "3.4.2",
"mdast-util-to-hast": "13.2.1",
"h3": "1.15.11"
},
"overrides": {
"@babel/core": "8.0.1",
"rollup": "4.62.2",
"flatted": "3.4.2",
"mdast-util-to-hast": "13.2.1",
"h3": "1.15.11"
}
}