0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/examples/ssr/package.json
Selwyn 10a9c3412b
Add used renderers to each example package.json devDependencies (#2727)
As the first step to not bundling renderers in the core `astro` package
the examples show usage with renderers as dependencies.
2022-03-07 10:43:02 -06:00

22 lines
554 B
JSON

{
"name": "@example/ssr",
"version": "0.0.1",
"private": true,
"scripts": {
"dev-api": "node server/dev-api.mjs",
"dev": "npm run dev-api & astro dev --experimental-ssr",
"start": "astro dev",
"build": "echo 'Run yarn build-ssr instead'",
"build-ssr": "node build.mjs",
"server": "node server/server.mjs"
},
"devDependencies": {
"astro": "^0.23.7",
"unocss": "^0.15.5",
"vite-imagetools": "^4.0.1",
"@astrojs/renderer-svelte": "^0.5.1"
},
"dependencies": {
"@astropub/webapi": "^0.10.13"
}
}