-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.12 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.12 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
{
"name": "hagicode-site",
"version": "0.0.1",
"private": true,
"type": "module",
"packageManager": "npm@11.10.1",
"scripts": {
"dev": "astro dev --host 0.0.0.0 --port ${PORT_WEBSITE:-31264}",
"start": "astro dev --host 0.0.0.0",
"build": "npm run sync:footer-sites && astro build && npm run seo:audit",
"preview": "astro preview --port ${PORT_WEBSITE:-31264}",
"astro": "astro",
"sync:footer-sites": "node ./scripts/fetch-sites-snapshot.mjs",
"seo:audit": "node scripts/seo-audit.mjs",
"typecheck": "tsc --noEmit",
"clean": "rm -rf .astro dist",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"generate:image": "node scripts/generate-image.mjs",
"generate:image:custom": "node scripts/generate-image.mjs",
"generate:product-images": "node scripts/generate-image.mjs --batch-config scripts/product-images-batch.json",
"regenerate:product-images": "node scripts/generate-image.mjs --batch-config scripts/product-images-batch.json --force"
},
"dependencies": {
"@astrojs/mdx": "^5.0.2",
"@astrojs/partytown": "^2.1.5",
"@astrojs/react": "^5.0.1",
"@astrojs/sitemap": "^3.7.1",
"astro": "^6.0.7",
"astro-og-canvas": "^0.10.1",
"astro-robots-txt": "^1.0.0",
"astro-seo": "^1.1.0",
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"framer-motion": "^12.29.2",
"lucide-react": "^0.562.0",
"mermaid": "^11.12.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rehype-external-links": "^3.0.0",
"rehype-mermaid": "^3.0.0",
"rehype-raw": "^3.0.0",
"semver": "^7.7.4",
"sharp": "^0.34.2",
"starlight-blog": "^0.26.1"
},
"devDependencies": {
"@astrojs/starlight": "^0.38.1",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@vitest/ui": "^4.0.18",
"npm-run-all": "^4.1.5",
"playwright": "^1.58.0",
"typescript": "~5.9.3",
"vitest": "^4.0.18"
},
"overrides": {
"vite": "^8.0.1"
},
"engines": {
"node": ">=22.12.0",
"npm": ">=9.0"
}
}