mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 09:01:21 +00:00
feat: migrate to sveltekit 2
This commit is contained in:
parent
993cb987c7
commit
0df260c5a5
3 changed files with 632 additions and 820 deletions
45
package.json
45
package.json
|
@ -13,30 +13,31 @@
|
|||
"prepare": "npx husky install && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@skeletonlabs/skeleton": "^2.5.0",
|
||||
"@skeletonlabs/skeleton": "^2.6.0",
|
||||
"@skeletonlabs/tw-plugin": "^0.3.0",
|
||||
"@sveltejs/adapter-vercel": "^4.0.0",
|
||||
"@sveltejs/enhanced-img": "^0.1.5",
|
||||
"@sveltejs/kit": "^2.0.0",
|
||||
"@types/node": "^20.9.2",
|
||||
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
||||
"@typescript-eslint/parser": "^6.11.0",
|
||||
"@sveltejs/adapter-vercel": "^4.0.2",
|
||||
"@sveltejs/enhanced-img": "^0.1.6",
|
||||
"@sveltejs/kit": "^2.0.1",
|
||||
"@sveltejs/vite-plugin-svelte": "^3.0.1",
|
||||
"@types/node": "^20.10.5",
|
||||
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
||||
"@typescript-eslint/parser": "^6.14.0",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"eslint": "^8.54.0",
|
||||
"eslint-config-prettier": "^9.0.0",
|
||||
"eslint-plugin-svelte": "^2.35.0",
|
||||
"lint-staged": "^15.1.0",
|
||||
"postcss": "^8.4.31",
|
||||
"postcss-load-config": "^5.0.0",
|
||||
"prettier": "^3.1.0",
|
||||
"prettier-plugin-svelte": "^3.1.0",
|
||||
"svelte": "^4.2.7",
|
||||
"svelte-check": "^3.6.0",
|
||||
"tailwindcss": "^3.3.5",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-svelte": "^2.35.1",
|
||||
"lint-staged": "^15.2.0",
|
||||
"postcss": "^8.4.32",
|
||||
"postcss-load-config": "^5.0.2",
|
||||
"prettier": "^3.1.1",
|
||||
"prettier-plugin-svelte": "^3.1.2",
|
||||
"svelte": "^4.2.8",
|
||||
"svelte-check": "^3.6.2",
|
||||
"tailwindcss": "^3.3.6",
|
||||
"tslib": "^2.6.2",
|
||||
"typescript": "^5.2.2",
|
||||
"vite": "^5.0.5",
|
||||
"vite-plugin-tailwind-purgecss": "^0.1.3"
|
||||
"typescript": "^5.3.3",
|
||||
"vite": "^5.0.10",
|
||||
"vite-plugin-tailwind-purgecss": "^0.1.4"
|
||||
},
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
|
@ -44,7 +45,7 @@
|
|||
"@theatre/studio": "^0.7.0",
|
||||
"@threlte/core": "7.0.10",
|
||||
"@threlte/extras": "8.0.8",
|
||||
"@threlte/theatre": "^2.1.3",
|
||||
"@threlte/theatre": "^2.1.5",
|
||||
"@types/three": "^0.159.0",
|
||||
"@vercel/analytics": "^1.1.1",
|
||||
"three": "^0.159.0",
|
||||
|
|
1405
pnpm-lock.yaml
1405
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,5 @@
|
|||
import adapter from '@sveltejs/adapter-vercel';
|
||||
import { vitePreprocess } from '@sveltejs/kit/vite';
|
||||
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
|
|
Loading…
Reference in a new issue