-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 904 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
31
32
33
34
35
36
37
38
39
{
"name": "bookhub-monorepo",
"version": "1.0.0",
"private": true,
"packageManager": "npm@11.13.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"db:generate": "cd apps/api && npx prisma generate",
"db:migrate": "cd apps/api && npx prisma migrate dev",
"db:studio": "cd apps/api && npx prisma studio",
"prepare": "husky || true"
},
"devDependencies": {
"turbo": "^2.3.3",
"prettier": "^3.3.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}