-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
55 lines (55 loc) · 1.56 KB
/
package.json
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
{
"name": "root",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"build:doc": "typedoc --plugin typedoc-plugin-extras",
"check": "biome check .",
"clean": "turbo run clean",
"coverage": "turbo run coverage",
"cs": "changeset",
"depcheck": "turbo run depcheck",
"format": "biome format .",
"lint": "run-p lint:*",
"lint:biome": "biome lint .",
"lint:eslint": "eslint .",
"nuke": "turbo run nuke && pnpm nuke:local",
"nuke:local": "rimraf node_modules",
"page": "pnpm --filter pages",
"tpage": "turbo --filter pages",
"prepare": "husky",
"release": "changeset publish",
"size": "turbo run size",
"test": "jest -c jest.config.mjs",
"tp": "turbo --filter type-plus",
"ptp": "pnpm --filter type-plus",
"verify": "run-p lint verify:turbo",
"verify:turbo": "turbo run build build:doc depcheck coverage size",
"version": "changeset version"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@repobuddy/biome": "^1.5.1",
"eslint": "^9.10.0",
"eslint-plugin-yml": "~1.15.0",
"globals": "^15.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config-2": "^2.1.0",
"jest-watch-typeahead": "^2.2.2",
"npm-check-updates": "^17.0.0",
"npm-run-all2": "^7.0.0",
"rimraf": "^6.0.0",
"ts-jest": "^29.1.2",
"turbo": "2.3.3",
"typedoc": "^0.27.0",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]"
}