-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 835 Bytes
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
{
"name": "smi-lab-homepage",
"type": "module",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.12.0",
"npm": ">=9.6.5"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"validate:build": "node scripts/validate-build.mjs",
"validate:html": "html-validate \"dist/**/*.html\"",
"validate": "npm run check && npm run build && npm run validate:build && npm run validate:html",
"audit": "npm audit --audit-level=high",
"domain:check": "node scripts/check-domain.mjs"
},
"dependencies": {
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"astro": "^7.1.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"html-validate": "^11.5.6",
"typescript": "^6.0.3"
}
}