forked from midday-ai/midday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "midday",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"tooling/*",
"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:dashboard": "turbo dev --filter=@midday/dashboard",
"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",
"check:types": "turbo typecheck"
},
"dependencies": {
"@biomejs/biome": "1.6.2",
"@calcom/embed-react": "^1.3.2",
"@manypkg/cli": "^0.21.3",
"turbo": "^1.13.0",
"typescript": "^5.4.3"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}