-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"name": "nanopay-supabase",
"version": "1.0.0",
"description": "NanoPay.me Supabase project",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"status": "supabase status",
"setup": "supabase start && supabase db reset",
"reset": "supabase db reset",
"start": "supabase start",
"stop": "supabase stop",
"diff": "supabase db diff --schema public --local --use-migra",
"diff:remote": "supabase db diff --schema public --linked --use-migra",
"migrate": "supabase db diff --schema public --local --use-migra -f",
"migrate:remote": "supabase db diff --schema public --linked --use-migra -f",
"new": "supabase migrate new",
"link": "supabase link",
"pull": "supabase db pull",
"push": "supabase db push",
"types": "supabase gen types --lang typescript --schema public --local"
},
"keywords": [
"nanopay",
"nanocurrency",
"supabase",
"database",
"backend"
],
"author": "anarkrypto <[email protected]>",
"license": "MIT",
"dependencies": {
"supabase": "^1.200.3"
}
}