First cut
This commit is contained in:
36
package.json
Normal file
36
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user