-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.13 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
{
"name": "zipyy",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "supabase status 2>&1 | grep -q \"supabase_db_zipyy container is not running: exited\" && supabase stop > /dev/null; supabase start -x edge-runtime && vite dev",
"build": "vite build",
"preview": "vite preview",
"deploy": "vite build && wrangler pages deploy",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"gen-types": "supabase gen types typescript --output ./src/lib/types/supabase.ts",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"scriptsComments": {
"dev": "use a hacky workaround for not running supabase at startup (memory usage)"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.5.10",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"globals": "^15.3.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.17",
"svelte-check": "^3.6.0",
"svelte-headless-table": "^0.18.2",
"sveltekit-rate-limiter": "^0.4.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"type": "module",
"dependencies": {
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.4",
"@sveltejs/adapter-cloudflare": "^4.4.0",
"autoprefixer": "^10.4.17",
"bits-ui": "^0.21.10",
"clsx": "^2.1.0",
"dexie": "^4.0.7",
"formsnap": "^0.5.1",
"lucide-svelte": "^0.395.0",
"mode-watcher": "^0.2.1",
"postcss-import": "^16.0.0",
"shadcn-svelte": "latest",
"supabase": ">=1.8.1",
"svelte-inview": "^4.0.2",
"sveltekit-superforms": "^2.6.2",
"tailwind-merge": "^2.2.1",
"tailwind-variants": "^0.1.20",
"tailwindcss": "^3.4.1",
"vaul-svelte": "^0.2.4",
"vite-plugin-compression": "^0.5.1",
"yup": "^1.4.0"
}
}