-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 908 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 908 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
{
"name": "rproxy-monorepo",
"private": true,
"scripts": {
"ci": "turbo run test build lint format:check",
"build": "turbo run build",
"build:dev": "turbo run build:dev",
"build:docs": "turbo run build --filter=docs",
"dev": "turbo run dev",
"dev:docs": "turbo run dev --filter=docs",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "turbo run format",
"format:check": "turbo run format:check",
"check-types": "turbo run check-types",
"clean": "turbo run clean",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"turbo": "2.8.0",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=18"
}
}