-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 969 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 969 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
{
"name": "reactlit",
"private": true,
"workspaces": ["apps/*", "libs/*"],
"scripts": {
"dev": "turbo run dev --parallel --filter=reactlit-examples...",
"dev:docs": "turbo run dev --parallel --filter=reactlit-docs...",
"build": "turbo run build",
"rebuild": "turbo run clean && pnpm i && turbo run build --force",
"test": "turbo run test",
"clean": "turbo run clean",
"lint": "turbo run lint",
"ci": "turbo run build lint test",
"format": "biome check --write",
"turbo": "turbo",
"fix-mismatches": "syncpack fix-mismatches",
"postinstall": "syncpack fix-mismatches",
"add-changesets": "changeset add",
"publish-packages": "pnpm run ci && changeset version && changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.27.10",
"turbo": "^2.3.3",
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.10",
"syncpack": "^13.0.3",
"typescript": "*"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.7.1"
}