-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 1.38 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": "eboto",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:cli": "pnpm db:dump && pnpm db:gen && pnpm db:diff",
"db:push": "supabase db push",
"db:diff": "supabase db diff --local -f",
"db:gen": "supabase gen types typescript --local --schema public > supabase/types.ts",
"db:reset": "supabase db reset --local",
"db:dump": "supabase db dump -f supabase/schema.sql --local",
"email:dev": "pnpm turbo --filter=@eboto/email email:dev",
"dev": "turbo dev --parallel",
"start": "turbo start --parallel",
"postinstall": "pnpm lint:ws",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"typecheck": "turbo run typecheck"
},
"prettier": "@eboto/prettier-config",
"devDependencies": {
"@eboto/prettier-config": "workspace:*",
"@turbo/gen": "^2.1.2",
"prettier": "^3.3.3",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
}
}