-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.48 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
{
"name": "project-monai.github.io",
"version": "1.0.0",
"description": "MONAI - Medical Open Network for AI website",
"main": "index.js",
"scripts": {
"dev": "astro dev --host 0.0.0.0 --port 3000",
"build": "npm run fetch-models && astro build",
"preview": "astro preview --host 0.0.0.0 --port 3000",
"fetch-models": "curl -sf https://project-monai.github.io/model_data.json -o public/model_data.json || cp model_data.sample.json public/model_data.json",
"snapshot:baseline": "node scripts/visual-snapshot.js ./pre-migration-dist ./visual-baseline",
"snapshot:current": "node scripts/visual-snapshot.js ./dist ./visual-current",
"diff": "node scripts/visual-diff.js ./visual-baseline ./visual-current ./visual-diff",
"test": "vitest run"
},
"devDependencies": {
"@astrojs/mdx": "^4.3.14",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/tailwind": "^6.0.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.10",
"@types/turndown": "^5.0.6",
"@vitest/ui": "^4.1.5",
"astro": "^5.18.1",
"autoprefixer": "^10.4.7",
"cheerio": "^1.2.0",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"puppeteer": "^24.42.0",
"serve-handler": "^6.1.7",
"tailwindcss": "^3.3.0",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}