-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 866 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 866 Bytes
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
{
"name": "albert-plus",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dashboard": "bun run --filter '@albert-plus/server' dashboard",
"seed": "bun run --filter '@albert-plus/server' seed",
"clean": "turbo run clean && rm -rf node_modules",
"check": "biome check",
"check:types": "turbo run check:types",
"test": "turbo run test"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.4",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/bun": "1.3.4",
"turbo": "^2.6.3"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@clerk/shared",
"@tailwindcss/oxide",
"esbuild",
"sharp",
"workerd"
]
}