-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.87 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
{
"name": "kabsu.me",
"type": "module",
"private": true,
"engines": {
"node": ">=20.15.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"dev": "turbo watch dev",
"dev:www": "turbo watch dev --filter=www",
"dev:ngl": "turbo watch dev --filter=ngl",
"start": "pnpm turbo run start",
"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",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"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",
"db:cli": "pnpm db:dump && pnpm db:gen && pnpm db:diff",
"db:push": "supabase db push --include-all",
"db:diff": "supabase db diff --local -f",
"db:gen": "supabase gen types typescript --local --schema public > packages/supabase/src/types.ts",
"db:reset": "supabase db reset --local",
"db:dump": "supabase db dump -f supabase/schema.sql --local",
"migration:up": "supabase migration up",
"email:dev": "pnpm turbo [email protected]/email email:dev",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add",
"magicui-add": "turbo run magicui-add",
"otd": "pnpm outdated --filter=*"
},
"devDependencies": {
"@kabsu.me/eslint-config": "workspace:*",
"@kabsu.me/prettier-config": "workspace:*",
"@kabsu.me/tsconfig": "workspace:*",
"@turbo/gen": "2.1.3",
"dotenv-cli": "catalog:",
"eslint": "9.13.0",
"prettier": "catalog:",
"turbo": "2.1.3",
"typescript": "catalog:"
},
"prettier": "@kabsu.me/prettier-config"
}