-
Notifications
You must be signed in to change notification settings - Fork 275
/
package.json
29 lines (29 loc) · 917 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
{
"name": "v1",
"private": true,
"workspaces": ["packages/*", "apps/*", "tooling/*"],
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"dev:web": "turbo dev --filter=@v1/web",
"dev:jobs": "turbo jobs --filter=@v1/jobs",
"dev:app": "turbo dev --filter=@v1/app",
"start:web": "turbo start --filter=@v1/web",
"start:app": "turbo start --filter=@v1/app",
"test": "turbo test --parallel",
"format": "biome format --write .",
"lint": "turbo lint && bun lint:repo",
"lint:repo": "bunx sherif@latest",
"lint:repo:fix": "bunx sherif@latest --fix",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@t3-oss/env-nextjs": "^0.11.1",
"turbo": "2.1.1",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}