-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·107 lines (107 loc) · 3.34 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "finanzen",
"version": "0.0.1",
"scripts": {
"db:pull": "dotenv -e .env.local -- drizzle-kit introspect:pg",
"db:migration-generate": "dotenv -e .env.local -- drizzle-kit generate:pg",
"db:push": "dotenv -e .env.local -- drizzle-kit push:pg",
"sync": "svelte-kit sync",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "vite",
"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"
},
"dependencies": {
"@auth/drizzle-adapter": "^0.9.0",
"@auth/sveltekit": "0.15.0",
"@bradford/svelte-mail": "0.0.5",
"@sentry/sveltekit": "7.109.0",
"@spotlightjs/spotlight": "^1.2.17",
"@supabase/supabase-js": "^2.42.4",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"drizzle-orm": "^0.30.8",
"postgres": "^3.4.4",
"resend": "^3.2.0",
"rxjs": "^7.8.1",
"svelte-api-keys": "^0.1.3",
"svelte-motion": "^0.12.2",
"sweetalert2": "^11.10.8",
"tailwind-variants": "^0.2.1",
"vaul-svelte": "^0.3.0"
},
"devDependencies": {
"@iconify-json/line-md": "^1.1.37",
"@iconify-json/mdi": "^1.1.66",
"@iconify-json/tabler": "^1.1.110",
"@js-temporal/polyfill": "^0.4.4",
"@sveltejs/adapter-auto": "^3.2.0",
"@sveltejs/adapter-vercel": "^5.3.0",
"@sveltejs/kit": "^2.5.6",
"@sveltejs/vite-plugin-svelte": "3.1.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@types/d3": "^7.4.3",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"autoprefixer": "^10.4.19",
"bits-ui": "^0.21.3",
"clsx": "^2.1.0",
"d3": "^7.9.0",
"date-fns": "~3.6.0",
"devalue": "^4.3.2",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.1",
"drizzle-kit": "^0.20.14",
"drizzle-zod": "^0.5.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-no-duplicates-prefix-resolved-path": "^2.0.0",
"eslint-plugin-svelte": "2.37.0",
"eslint-plugin-unused-imports": "^3.1.0",
"postcss": "^8.4.38",
"postcss-load-config": "^5.0.3",
"postcss-nesting": "^12.1.1",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.13",
"sass": "^1.75.0",
"svelte": "5.0.0-next.107",
"svelte-check": "^3.6.9",
"svelte-french-toast": "1.2.0",
"svelte-resize-observer-action": "^0.0.3",
"svelte-transition-classes": "^0.1.1",
"sveltekit-sse": "^0.8.17",
"tailwind-merge": "^2.2.2",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"unplugin-icons": "^0.18.5",
"vite": "^5.2.8",
"vite-plugin-node-polyfills": "^0.21.0",
"zod": "^3.22.4"
},
"type": "module",
"engines": {
"node": ">=18.18.0",
"pnpm": ">=8.14.0"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@auth/[email protected]": "patches/@[email protected]",
"@auth/[email protected]": "patches/@[email protected]",
"@sentry/[email protected]": "patches/@[email protected]"
}
}
}