mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-24 08:17:29 +01:00
2a1d1c1282
* bump vite * dedupe * bump vite in svelte-5-playground as well --------- Co-authored-by: Conduitry <git@chor.date>
24 lines
671 B
JSON
24 lines
671 B
JSON
{
|
|
"name": "svelte-playgrounds-demo",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"prepare": "node scripts/create-app-svelte.js",
|
|
"dev": "vite --host",
|
|
"ssr": "node ./ssr-dev.js",
|
|
"build": "vite build --outDir dist/client && vite build --outDir dist/server --ssr ssr-prod.js",
|
|
"prod": "npm run build && node dist/server/ssr-prod",
|
|
"preview": "vite preview"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6",
|
|
"nodemon": "^3.0.3",
|
|
"polka": "^1.0.0-next.25",
|
|
"svelte": "workspace:*",
|
|
"tiny-glob": "^0.2.9",
|
|
"vite": "^5.4.6",
|
|
"vite-plugin-inspect": "^0.8.4"
|
|
}
|
|
}
|