-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 839 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
28
29
30
{
"name": "clubkit",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write .",
"format-check": "prettier --check .",
"migrations:generate": "pnpm --filter=db migrations:generate",
"migrations:apply": "pnpm --filter=db migrations:apply",
"migrations:drop": "pnpm --filter=db migrations:drop",
"studio": "pnpm --filter=db studio",
"db-push": "pnpm --filter=db db-push",
"move": "pnpm --filter=mover move",
"shadcnadd": "cd apps/web && pnpm dlx shadcn-ui@latest add"
},
"devDependencies": {
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"turbo": "1.12.5"
},
"packageManager": "pnpm@8.9.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"web": "workspace:^"
}
}