First cut

This commit is contained in:
kadil
2026-04-17 16:08:31 -05:00
parent d10105ac00
commit 4ee4cb8e7c
58 changed files with 3243 additions and 1 deletions

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "dynamic-sites",
"type": "module",
"private": true,
"engines": {
"node": ">=22"
},
"workspaces": [
"shared",
"server"
],
"scripts": {
"dev": "astro dev",
"dev:server": "npm run dev --workspace=server",
"build": "npm run check:content && astro build",
"start": "node dist/server/entry.mjs",
"check:content": "node scripts/validate-content.js && node scripts/check-canonical.js",
"test": "vitest run",
"check": "npm run check:content && npm test"
},
"dependencies": {
"astro": "^5.8.0",
"@astrojs/node": "^9.1.3",
"@astrojs/react": "^4.2.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.24.0",
"@dynamic-sites/shared": "workspace:*"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
}
}