Add Astro server configuration files and dependencies

This commit is contained in:
Andras Bacsai
2024-03-14 14:47:56 +01:00
parent d28a086ea4
commit 5d01656e8c
13 changed files with 6957 additions and 0 deletions

18
astro/server/package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.5.9",
"@astrojs/node": "^8.2.3",
"astro": "^4.5.3",
"typescript": "^5.4.2"
}
}