-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "sveltekitauth",
"author": {
"name": "Aakash Goplani",
"url": "https://aakashgoplani.in"
},
"description": "Authentication in SvelteKit using SvelteKitAuth",
"keywords": [
"sveltekitauth",
"SvelteKit",
"authjs",
"Authentication",
"svelte"
],
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite dev --port 4200",
"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",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"sync": "svelte-kit sync"
},
"dependencies": {
"@auth/core": "^0.34.1",
"@auth/sveltekit": "^1.4.1",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@sveltejs/adapter-vercel": "^5.4.1",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/eslint": "^8.56.10",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.41.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"sass": "^1.77.6",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.3"
},
"type": "module"
}