-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.19 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.19 KB
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": "zog-ui",
"version": "0.0.1-alpha.3",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"dev:app": "turbo dev:app",
"dev:app-react": "turbo dev:app --filter=*-react",
"dev:app-solid": "turbo dev:app --filter=*-solid",
"dev:react": "turbo dev --filter=*-react",
"dev:solid": "turbo dev --filter=*-solid",
"build:react": "turbo build --filter=*-react",
"build:solid": "turbo build --filter=*-solid",
"start": "turbo start",
"lint": "turbo lint",
"check": "turbo check",
"format": "biome format . --write",
"filter": "pnpm --silent --filter",
"update-deps": "npm-check-updates --configFileName .ncurc.json",
"cleanup": "pnpm --silent cleanup:pkgs && pnpm --silent cleanup:deps",
"cleanup:deps": "pnpm dlx rimraf pnpm-lock.yaml node_modules",
"cleanup:pkgs": "turbo cleanup",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"npm-check-updates": "^17.1.14",
"turbo": "^2.3.4"
},
"packageManager": "pnpm@9.15.4"
}