-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@repo/root",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "biome check --write",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:projects": "vitest run",
"test:projects:watch": "vitest --watch",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"prepare": "simple-git-hooks",
"docs:api": "turbo run docs:api"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/cli": "catalog:",
"@repo/biome-config": "workspace:*",
"@repo/vitest-config": "workspace:*",
"@types/node": "latest",
"lint-staged": "^16.4.0",
"prettier": "catalog:",
"simple-git-hooks": "^2.13.1",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@10.22.0",
"pnpm": {
"overrides": {
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
"h3@<=1.15.4": ">=1.15.5",
"minimatch@<3.1.3": ">=3.1.3",
"minimatch@<3.1.4": ">=3.1.4",
"minimatch@>=10.0.0 <10.2.1": ">=10.2.1",
"minimatch@>=10.0.0 <10.2.3": ">=10.2.3",
"minimatch@>=5.0.0 <5.1.7": ">=5.1.7",
"minimatch@>=5.0.0 <5.1.8": ">=5.1.8",
"minimatch@>=9.0.0 <9.0.6": ">=9.0.6",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"serialize-javascript@<=7.0.2": ">=7.0.3",
"tar@<7.5.8": ">=7.5.8",
"tar@<=7.5.9": ">=7.5.10",
"svgo@=4.0.0": ">=4.0.1"
}
},
"engines": {
"node": ">=18"
}
}