forked from patternfly/react-virtualized-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.49 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
{
"name": "@patternfly/react-virtualized-extension-root",
"private": true,
"version": "0.0.0",
"description": "This library provides PatternFly extensions",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspace @patternfly/react-virtualized-extension build",
"build:docs": "yarn workspace @patternfly/react-virtualized-extension docs:build",
"build:fed:packages": "yarn workspace @patternfly/react-virtualized-extension build:fed:packages",
"start": "yarn build && concurrently --kill-others \"yarn workspace @patternfly/react-virtualized-extension docs:develop\"",
"serve:docs": "yarn workspace @patternfly/react-virtualized-extension docs:serve",
"clean": "yarn workspace @patternfly/react-virtualized-extension clean",
"lint:js": "node --max-old-space-size=4096 node_modules/.bin/eslint packages --ext js,jsx,ts,tsx --cache",
"lint:md": "yarn eslint packages --ext md --no-eslintrc --config .eslintrc-md.json --cache",
"lint": "yarn lint:js && yarn lint:md",
"test": "TZ=EST jest packages",
"test:a11y": "yarn workspace @patternfly/react-virtualized-extension test:a11y",
"serve:a11y": "yarn workspace @patternfly/react-virtualized-extension serve:a11y"
},
"devDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"typescript": "^5.0.4",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/dom-helpers": "^5.0.1",
"@types/react-virtualized": "^9.21.22",
"concurrently": "^5.3.0",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.2",
"eslint-plugin-markdown": "1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-config-prettier": "8.8.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"prettier": "2.8.8",
"jest": "^29.5.0",
"babel-jest": "^29.5.0",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-flow": "^7.21.4",
"@babel/preset-typescript": "^7.21.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "14.4.3",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/dom": "9.3.0",
"jest-environment-jsdom": "^29.5.0",
"serve": "^14.2.0"
}
}