-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.95 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
{
"name": "bloodhound-ce",
"private": true,
"workspaces": {
"packages": [
"cmd/ui",
"packages/javascript/**"
]
},
"scripts": {
"dev": "yarn workspace bloodhound-ui dev",
"debug": "yarn workspace bloodhound-ui debug",
"start": "yarn workspace bloodhound-ui start",
"preview": "yarn workspace bloodhound-ui preview",
"build": "yarn workspace bloodhound-ui build",
"audit": "yarn npm audit --recursive --all --severity high --environment production",
"test": "yarn workspaces foreach -Apt run test run",
"test:a11y": "yarn workspace bloodhound-ui test:a11y",
"report:a11y": "allure serve cmd/ui/playwright/a11y/allure-results",
"report:a11y:build": "allure generate cmd/ui/playwright/a11y/allure-results --output cmd/ui/playwright/a11y/allure-report --clean && allure open cmd/ui/playwright/a11y/allure-report",
"check-types": "yarn workspaces foreach --exclude eslint-plugin-sx-props -Apt run check-types",
"lint": "yarn workspaces foreach --exclude eslint-plugin-sx-props -Apt run lint",
"format": "yarn workspaces foreach --exclude eslint-plugin-sx-props -Apt run format",
"check-format": "yarn workspaces foreach --exclude eslint-plugin-sx-props -Apt run check-format"
},
"packageManager": "yarn@4.13.0",
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"prettier": "^3.2.5",
"typescript": "^5.9.3"
},
"resolutions": {
"@types/react": "18.2.x",
"@isaacs/brace-expansion": "^5.0.1",
"axios": "^1.16.0",
"braces": ">=3.0.3 <4.0.0",
"cross-spawn": "^7.0.5",
"dompurify": "3.2.4",
"form-data": "^4.0.6",
"glob": "^11.1.0",
"immutable": "4.3.8",
"lodash": "4.18.1",
"minimatch": "10.2.3",
"picomatch": "4.0.4",
"serialize-javascript": "^7.0.5",
"sha.js": "^2.4.12",
"tar-fs": ">=2.1.3 < 3.0.0",
"tar": "7.5.11",
"tmp": "0.2.7",
"vitest/vite": "7.3.5",
"vite-node/vite": "7.3.5",
"ws": "^8.21.0"
}
}