-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.42 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
{
"name": "scibo-practice",
"devDependencies": {
"@scibo/prettier-config": "workspace:*",
"@turbo/gen": "^2.3.1",
"prettier": "^3.3.3",
"turbo": "^2.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.18.1",
"bun": "^1.1.38"
},
"packageManager": "[email protected]",
"prettier": "@scibo/prettier-config",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"download": "turbo -F @scibo/downloader download",
"upload:db": "turbo -F @scibo/downloader upload:db",
"db:push": "turbo -F @scibo/db push",
"db:update": "turbo -F @scibo/db update",
"db:studio": "turbo -F @scibo/db studio",
"dev": "turbo watch dev --continue",
"dev:next": "turbo watch dev -F @scibo/nextjs...",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "bunx sherif@latest",
"postinstall": "bun lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add"
},
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
]
}