-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
{
"name": "turborepo-supabase-template",
"private": true,
"scripts": {
"build": "turbo run build",
"build:admin": "turbo build --filter admin",
"build:user": "turbo build --filter user",
"dev": "turbo run dev",
"dev:admin": "turbo dev --filter admin",
"dev:user": "turbo dev --filter user",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"ui:add": "pnpm --filter @repo/ui ui",
"prepare": "husky",
"generate-types": "npx supabase gen types typescript --project-id <project-id> --schema public > packages/types/src/database.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.1.1",
"typescript": "catalog:",
"eslint": "catalog:"
},
"packageManager": "pnpm@10.12.3",
"engines": {
"node": ">=18"
}
}