mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* chore: dev -> dev/nextjs * chore: move to /examples * chore: move to playgrounds, add dev/sveltekit * Update sync.yml * chore: dev scripts
27 lines
695 B
JSON
27 lines
695 B
JSON
{
|
|
"name": "sveltekit-auth-app",
|
|
"version": "1.0.0",
|
|
"description": "SvelteKit + Auth.js Developer app",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-auto": "next",
|
|
"@sveltejs/kit": "next",
|
|
"svelte": "3.55.0",
|
|
"svelte-check": "2.10.2",
|
|
"typescript": "4.9.4",
|
|
"vite": "4.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@auth/core": "latest",
|
|
"@auth/sveltekit": "latest"
|
|
},
|
|
"type": "module"
|
|
}
|