-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "ethsystems-website",
"private": true,
"type": "module",
"version": "1.0.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build:graph": "node scripts/build-graph.mjs",
"predev": "npm run build:graph",
"dev": "astro dev --host",
"prebuild": "node scripts/validate-content-refs.mjs && npm run build:graph",
"build": "astro build",
"prepreview": "npm run build:graph",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"lint:refs": "node scripts/validate-content-refs.mjs --strict",
"test": "vitest run"
},
"devDependencies": {
"@napi-rs/canvas": "^1.0.2",
"js-yaml": "^4.1.1",
"vitest": "^4.1.11"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^5.0.0",
"@astrojs/react": "^5.0.5",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@fontsource-variable/fraunces": "^5.2.9",
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/geist-mono": "^5.2.8",
"@types/d3": "^7.4.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^6.3.1",
"d3": "^7.9.0",
"marked": "^18.0.4",
"mdast-util-to-string": "^4.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"typescript": "^5.7.3",
"unist-util-visit": "^5.0.0"
}
}