-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.33 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.33 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
34
35
36
37
38
{
"name": "@alleninstitute/vis",
"type": "module",
"scripts": {
"build": "pnpm -r run --no-bail build",
"dev": "pnpm -r --parallel run dev",
"test": "pnpm -r run --no-bail test:ci",
"coverage": "pnpm -r run coverage",
"typecheck": "pnpm -r --no-bail run typecheck",
"fmt": "oxfmt && prettier --write 'site/**/*.astro'",
"fmt:check": "oxfmt --check && prettier --check 'site/**/*.astro'",
"lint": "biome lint . --write",
"lint:check": "biome lint .",
"check": "oxfmt --check && prettier --check 'site/**/*.astro' && biome lint .",
"check:fix": "oxfmt && prettier --write 'site/**/*.astro' && biome lint . --write",
"changelog": "pnpm -r run changelog"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"oxfmt": "0.46.0",
"prettier": "3.5.3",
"prettier-plugin-astro": "0.14.1",
"@parcel/packager-ts": "2.16.4",
"@parcel/transformer-typescript-types": "2.16.4",
"@vitest/coverage-istanbul": "4.1.1",
"buffer": "6.0.3",
"git-cliff": "2.12.0",
"parcel": "2.16.4",
"process": "0.11.10",
"typescript": "5.9.3",
"vitest": "4.1.1"
},
"volta": {
"node": "24.15.0",
"pnpm": "10.33.0"
},
"packageManager": "pnpm@10.33.0"
}