-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.3 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"private": true,
"description": "An example project for Auth.js on Cloudflare D1 and Pages with SvelteKit",
"repository": "https://github.com/jschlesser/authjs-sveltkit-cloudflare-pages",
"bugs": {
"url": "https://github.com/jschlesser/authjs-sveltkit-cloudflare-pages/issues"
},
"homepage": "https://github.com/jschlesser/authjs-sveltkit-cloudflare-pages",
"scripts": {
"dev": "(trap 'kill 0' SIGINT; wrangler pages dev .svelte-kit/cloudflare --local --persist --d1=DB & vite build -w)",
"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",
"wrangle": "wrangler pages dev .svelte-kit/cloudflare --local --persist --d1=DB",
"deploy": "npm run build; npx wrangler pages publish .svelte-kit/cloudflare",
"tail": "npx wrangler pages deployment tail"
},
"devDependencies": {
"@sveltejs/adapter-cloudflare": "^2.0.1",
"@sveltejs/kit": "next",
"svelte": "3.55.0",
"svelte-check": "2.10.2",
"typescript": "4.9.4",
"vite": "4.0.1",
"wrangler": "^2.12.3"
},
"type": "module",
"dependencies": {
"@auth/core": "^0.5.1",
"@auth/sveltekit": "^0.3.0",
"@jschlesser/d1-adapter": "^0.1.1"
}
}