-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.01 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
{
"name": "quentinfears-site",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "quentinfears.com — Astro build with a Keystatic content admin, output identical to the hand-authored static site.",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"admin": "astro dev",
"build": "KEYSTATIC_ADMIN=0 astro build",
"build:admin": "ADMIN_HOST=netlify astro build",
"preview": "KEYSTATIC_ADMIN=0 astro preview",
"validate": "python3 tools/validate_site.py dist && python3 tools/seo_check.py dist",
"check": "npm run build && npm run validate",
"lh": "npm run build && lhci autorun"
},
"dependencies": {
"@astrojs/netlify": "^6.6.5",
"@astrojs/react": "^4.2.0",
"@keystatic/astro": "^5.0.0",
"@keystatic/core": "^0.5.0",
"astro": "^5.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@lhci/cli": "^0.14.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"tsx": "^4.23.0"
}
}