-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 949 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
{
"name": "@live-state/monorepo",
"version": "0.0.1-alpha.1",
"private": true,
"scripts": {
"build": "turbo --filter \"./packages/*\" build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"dev:docs": "turbo run dev --filter=docs",
"dev:basic-example": "turbo run dev --filter=storefront... --filter=api...",
"dev:complex-relations": "turbo run dev --filter=complex-relations...",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"release": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --no-git-checks",
"bump": "bumpp"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"bumpp": "^10.1.1",
"prettier": "^3.2.5",
"tinyglobby": "^0.2.14",
"turbo": "^2.3.3"
},
"packageManager": "pnpm@10.7.0",
"engines": {
"node": ">=18"
}
}