-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "apitree.cz-toolbox",
"version": "0.0.0",
"private": true,
"description": "Shared configurations and utilities for ApiTree projects.",
"repository": {
"type": "git",
"url": "https://github.com/ApiTreeCZ/toolbox"
},
"license": "MIT",
"author": "ApiTree s.r.o. <info@apitree.cz>",
"contributors": [
"Vít Rozsíval <vit.rozsival@apitree.cz>"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"cleanup": "turbo run cleanup",
"postcleanup": "del .eslintcache .turbo tsconfig.tsbuildinfo node_modules",
"docs": "turbo run docs",
"fix": "turbo run ts ts:root format:fix format:root:fix lint:fix lint:root:fix",
"fix:root": "turbo run ts format:root:fix lint:root:fix",
"format": "turbo run format format:root --parallel",
"format:fix": "turbo run format:fix format:root:fix --parallel",
"format:root": "prettier --ignore-path .prettierignore --check \"./*.{js,json,md,ts,yaml,yml}\" \".*/**/*.{js,json,md,ts,yaml,yml}\"",
"format:root:fix": "pnpm run format:root --write",
"postinstall": "pnpx is-ci || pnpx concurrently --kill-others-on-fail --max-processes 1 --prefix-colors auto \"pnpm run postinstall:check\" \"pnpm run postinstall:husky\" \"pnpm run postinstall:sync\"",
"lint": "turbo run lint lint:root",
"lint:fix": "turbo run lint:fix lint:root:fix",
"lint:root": "eslint --cache \"./*.js\" \"./*.ts\"",
"lint:root:fix": "pnpm run lint:root --fix",
"postinstall:check": "manypkg check",
"postinstall:husky": "husky",
"postinstall:sync": "turbo run sync-project-references",
"qa": "turbo run ts ts:root format format:root lint lint:root",
"qa:root": "turbo run ts:root lint:root format:root",
"setup": "is-ci || pnpm run build",
"sync-project-references": "apitree sync-project-references",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:project": "vitest --run",
"test:project:coverage": "pnpm run test:project --coverage",
"test:ui": "vitest --ui",
"ts": "turbo run ts ts:root",
"ts:root": "tsc --project tsconfig.json"
},
"devDependencies": {
"@apitree.cz/cli": "workspace:*",
"@apitree.cz/eslint-config": "workspace:*",
"@apitree.cz/lint-staged-config": "workspace:*",
"@apitree.cz/prettier-config": "workspace:*",
"@apitree.cz/ts-config": "workspace:*",
"@apitree.cz/typedoc-config": "workspace:*",
"@apitree.cz/vitest-config": "^0.8.9",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@manypkg/cli": "^0.25.1",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"husky-check-email": "^0.0.8",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"turbo": "^2.9.5",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "24.x"
}
}