-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 871 Bytes
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
{
"name": "api",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": {
"./types": "./$generated/types.ts"
},
"scripts": {
"start": "bun supabase start",
"stop": "bun supabase stop",
"status": "bun supabase status",
"reset": "bun supabase db reset && bun generate",
"generate:supabase-types": "mkdir -p \\$generated && bun supabase gen types typescript --local > ./\\$generated/types.ts",
"generate": "bun generate:supabase-types",
"test": "bun supabase test db",
"lint:cspell": "cspell \"**\"",
"lint:prettier": "prettier . --check --ignore-path=../../.prettierignore",
"lint": "run-p lint:*",
"format:prettier": "prettier . --write --ignore-path=../../.prettierignore",
"format": "run-p format:*"
},
"devDependencies": {
"npm-run-all2": "catalog:",
"supabase": "^2.106.0"
}
}