0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-10 22:38:53 -05:00
astro/examples/ssr/package.json
2024-04-03 22:42:23 +05:30

20 lines
421 B
JSON

{
"name": "@example/ssr",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"server": "node dist/server/entry.mjs"
},
"dependencies": {
"@astrojs/node": "^8.2.5",
"@astrojs/svelte": "^5.3.0",
"astro": "^4.5.15",
"svelte": "^4.2.5"
}
}