5e52814d97
* Adapter v0 * Finalizing adapters * Update the lockfile * Add the default adapter after config setup is called * Create the default adapter in config:done * Fix lint error * Remove unused callConfigSetup * remove unused export * Use a test adapter to test SSR * Adds a changeset * Updated based on feedback * Updated the lockfile * Only throw if set to a different adapter * Clean up outdated comments * Move the adapter to an config option * Make adapter optional * Update the docs/changeset to reflect config API change * Clarify regular Node usage
25 lines
670 B
JSON
25 lines
670 B
JSON
{
|
|
"name": "@example/ssr",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev-api": "node server/dev-api.mjs",
|
|
"dev-server": "astro dev --experimental-ssr",
|
|
"dev": "concurrently \"npm run dev-api\" \"astro dev --experimental-ssr\"",
|
|
"start": "astro dev",
|
|
"build": "astro build --experimental-ssr",
|
|
"server": "node server/server.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/svelte": "^0.0.2-next.0",
|
|
"@astrojs/node": "^0.0.1",
|
|
"astro": "^0.25.0-next.2",
|
|
"concurrently": "^7.0.0",
|
|
"lightcookie": "^1.0.25",
|
|
"unocss": "^0.15.6",
|
|
"vite-imagetools": "^4.0.3"
|
|
},
|
|
"dependencies": {
|
|
"svelte": "^3.46.4"
|
|
}
|
|
}
|