-
Notifications
You must be signed in to change notification settings - Fork 548
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "midday",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"packages/email/*"
],
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"test": "turbo test --parallel",
"start:dashboard": "turbo start --filter=@midday/dashboard",
"start:website": "turbo start --filter=@midday/website",
"dev:api": "turbo dev --filter=@midday/api",
"dev:dashboard": "turbo dev --filter=@midday/dashboard",
"build:dashboard": "turbo build --filter=@midday/dashboard",
"dev:engine": "turbo dev --filter=@midday/engine",
"dev:website": "turbo dev --filter=@midday/website ",
"dev:desktop": "turbo dev --filter=@midday/desktop",
"jobs:dashboard": "turbo jobs --filter=@midday/dashboard",
"format": "biome format --write .",
"lint": "turbo lint && manypkg check",
"typecheck": "turbo typecheck"
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"@manypkg/cli": "^0.22.0",
"turbo": "2.3.0",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"resolutions": {
"jackspeak": "2.1.1"
}
}