-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 937 Bytes
/
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
{
"name": "@sovoli/root",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"clean": "git clean -xdf node_modules .turbo",
"clean:workspaces": "turbo run clean",
"db:push": "turbo -F @sovoli/db push",
"db:migrate": "turbo -F @sovoli/db migrate",
"db:seed": "turbo -F @sovoli/db seed",
"db:studio": "turbo -F @sovoli/db studio",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"prettier": "catalog:",
"turbo": "2.3.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"typescript"
]
}
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"prettier": "@sovoli/prettier-config"
}