-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "random-ramblings",
"author": "NoPoint",
"description": "A Personal Blog Full of Random Ramblings.",
"type": "module",
"version": "2.1.0",
"scripts": {
"dev": "astro dev",
"local": "astro dev --mode local-dev --host",
"start": "astro dev",
"build": "astro build",
"sync": "astro sync",
"astro": "astro",
"preview": "astro preview",
"vercel": "vercel dev",
"supabase": "supabase start",
"supabase-stop": "supabase stop",
"supabase-status": "supabase status",
"supabase-migrate": "supabase db push",
"supabase-local-migrate": "supabase migration up ",
"supabase-local-reset": "supabase db reset",
"supabase-functions": "supabase functions serve --no-verify-jwt --env-file .env",
"supabase-functions-local": "supabase functions serve --no-verify-jwt --env-file .env.local-dev",
"supabase-functions-deploy": "supabase functions deploy"
},
"dependencies": {
"@astrojs/vercel": "^8.0.0",
"@supabase/supabase-js": "^2.47.2",
"@vercel/analytics": "^1.4.1",
"astro": "^5.1.0",
"astro-icon": "^1.1.4",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"supabase": "^2.0.0",
"@types/jsonwebtoken": "^9.0.7"
}
}