-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.63 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": "@patternfly/widgetized-dashboard-root",
"private": true,
"version": "0.0.0",
"description": "This library provides patternfly extensions",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspace @patternfly/widgetized-dashboard build",
"build:watch": "yarn workspace @patternfly/widgetized-dashboard build:watch",
"build:docs": "yarn workspace @patternfly/widgetized-dashboard docs:build",
"build:fed:packages": "yarn workspace @patternfly/widgetized-dashboard build:fed:packages",
"start": "concurrently --kill-others \"yarn build:watch\" \"yarn workspace @patternfly/widgetized-dashboard docs:develop\"",
"serve:docs": "yarn workspace @patternfly/widgetized-dashboard docs:serve",
"clean": "yarn workspace @patternfly/widgetized-dashboard clean",
"lint:js": "node --max-old-space-size=4096 node_modules/.bin/eslint packages --cache",
"lint:md": "eslint \"**/*.md\" --config eslint.config-md.mjs --cache --cache-strategy content --no-warn-ignored",
"lint": "yarn lint:js && yarn lint:md",
"test": "TZ=EST jest packages",
"test:a11y": "yarn workspace @patternfly/widgetized-dashboard test:a11y",
"serve:a11y": "yarn workspace @patternfly/widgetized-dashboard serve:a11y"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-env": "^7.28.3",
"@babel/preset-flow": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/compat": "^1.4.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.37.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"babel-jest": "^30.2.0",
"concurrently": "^9.2.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^16.4.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "3.6.2",
"react": "^18",
"react-dom": "^18",
"serve": "^14.2.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
},
"packageManager": "yarn@4.10.3"
}