-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "apitree.cz-toolbox",
"version": "0.0.0",
"private": true,
"description": "Shared configuration and utilities for ApiTree projects.",
"repository": {
"type": "git",
"url": "https://github.com/ApiTreeCZ/toolbox"
},
"license": "MIT",
"author": "ApiTree s.r.o. <[email protected]>",
"contributors": [
"Vít Rozsíval <[email protected]"
],
"type": "module",
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "turbo run build",
"cleanup": "turbo run cleanup",
"postcleanup": "rimraf .eslintcache tsconfig.tsbuildinfo node_modules",
"fix": "turbo run fix",
"postfix": "run-p postts postformat:fix postlint:fix",
"format": "turbo run format --parallel",
"postformat": "prettier --check \"./*.{json,md,yaml}\" \".github/**/*.yaml\"",
"format:fix": "turbo run format:fix --parallel",
"postformat:fix": "pnpm run postformat --write",
"postinstall": "manypkg check",
"lint": "turbo run lint",
"postlint": "eslint --cache \"./*.{cjs,js}\"",
"lint:fix": "turbo run lint:fix",
"postlint:fix": "pnpm run postlint --fix",
"prepare": "is-ci || run-s prepare:husky build sync-project-references",
"prepare:husky": "husky",
"qa": "turbo run qa",
"postqa": "run-p postts postlint postformat",
"sync-project-references": "apitree sync-project-references",
"test": "turbo run test",
"ts": "turbo run ts",
"postts": "tsc --project tsconfig.json"
},
"dependencies": {
"@apitree.cz/cli": "workspace:*",
"@apitree.cz/eslint-config": "workspace:*",
"@apitree.cz/prettier-config": "workspace:*",
"@apitree.cz/ts-config": "workspace:*",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@manypkg/cli": "0.21.4",
"@types/node": "^22.0.0",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"turbo": "^2.0.9",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
}
}