-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 972 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": "arena-api-examples",
"description": "Self-contained example apps demonstrating ways to build on the Are.na API.",
"private": true,
"type": "module",
"packageManager": "pnpm@11.0.8",
"scripts": {
"build": "pnpm -r --if-present build",
"dev:explorer": "pnpm --filter arena-explorer dev",
"dev:portfolio": "pnpm --filter arena-portfolio dev",
"dev:swimlanes": "pnpm --filter arena-swimlanes dev",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "husky",
"test": "pnpm -r --if-present test:run",
"typecheck": "pnpm -r --if-present typecheck"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": "biome check --write --no-errors-on-unmatched"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"husky": "^9.1.7",
"lint-staged": "^17.0.3"
}
}