-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.97 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
{
"name": "autodocs-monorepo",
"version": "2.1.1",
"private": true,
"license": "Apache-2.0",
"packageManager": "npm@11.9.0",
"workspaces": [
"packages/*",
"packages/plugins/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"test": "turbo run test",
"test:coverage": "turbo run test -- --coverage --maxWorkers=2",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"verify:cli:pack": "node scripts/verify-cli-pack.js",
"test:smoke:cli-tarball": "node scripts/smoke-cli-tarball.js",
"serve:test": "node scripts/serve-test-docs.js",
"type-check": "turbo run type-check",
"docs:build": "npm run build && npm -w packages/cli run prepare:ui-dist && node packages/cli/dist/index.js build",
"version": "node scripts/version.js",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"@types/tmp": "^0.2.6",
"eslint": "^10.1.0",
"execa": "^9.6.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tmp": "^0.2.5",
"turbo": "^2.8.20",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"v8-to-istanbul": "^9.3.0",
"vitest": "^4.1.1"
},
"overrides": {
"minimatch": ">=3.1.4",
"glob": {
"minimatch": ">=3.1.4"
},
"rollup": ">=4.59.0",
"vite": "8.0.2",
"undici": ">=7.24.0",
"qs": ">=6.14.2",
"ajv": ">=6.14.0 <7",
"flatted": ">=3.4.2"
}
}