-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.42 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
39
40
41
42
43
44
45
46
47
{
"$schema": "https://json.schemastore.org/package.json",
"devDependencies": {
"@biomejs/biome": "catalog:lint",
"@vitest/coverage-v8": "catalog:test",
"eslint": "catalog:lint",
"typescript": "catalog:typescript",
"vitest": "catalog:test"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"onFail": "error",
"version": "10.12.1"
},
"runtime": {
"name": "node",
"onFail": "error",
"version": ">= 24"
}
},
"engines": {
"node": ">=24"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "@parcel/watcher", "esbuild", "msgpackr-extract", "msw"],
"overrides": {
"@types/react": "catalog:types",
"react": "catalog:frontend",
"react-dom": "catalog:frontend",
"vite": "npm:rolldown-vite@latest"
}
},
"private": true,
"scripts": {
"build": "pnpm run --recursive --if-present build",
"check": "pnpm run --recursive --parallel --aggregate-output check --write",
"clean": "pnpm run --recursive clean && rm -rf node_modules",
"dev": "pnpm run --recursive --parallel --stream dev",
"format": "pnpm run --recursive --parallel --aggregate-output format",
"format:write": "pnpm run --recursive --parallel --aggregate-output format:write",
"lint": "pnpm run --recursive --parallel --aggregate-output lint",
"test": "vitest run",
"typecheck": "pnpm run --recursive typecheck",
"typecheck:watch": "pnpm run --recursive --stream typecheck --watch --preserveWatchOutput"
}
}