-
-
Notifications
You must be signed in to change notification settings - Fork 451
/
Copy pathpackage.json
35 lines (35 loc) · 898 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"env": "bun env.ts",
"lint": "biome lint .",
"format": "pnpm biome format . --write && pnpm biome check . --write ",
"lint:fix": "pnpm biome lint --write --unsafe .",
"lint:turbo": "turbo run lint",
"dev:web": "turbo run dev --filter='./apps/web' --filter='./packages/db'",
"dx": "turbo run dx",
"tsc": "tsc",
"test": "turbo run test"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@turbo/gen": "1.13.3",
"@types/node": "20.8.0",
"knip": "5.16.0",
"turbo": "2.3.2",
"typescript": "5.6.2"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": ["@swc/core", "sharp"]
},
"name": "openstatus",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*",
"packages/notifications/*"
]
}