-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.12 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "bastilian-tabletools",
"version": "0.0.0",
"description": "A collection of hooks and components to build tables based on the PatternFly (v4) `Table` component and the Red Hat Insights `PrimaryToolbar` component.",
"repository": {
"type": "git",
"url": "git+https://github.com/bastilian/tabletools.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bastilian/tabletools/issues"
},
"homepage": "https://github.com/bastilian/tabletools#readme",
"scripts": {
"lint": "eslint .",
"test": "jest",
"build": "tspc -b",
"verify": "npm run lint && npm run test && npm run build",
"start": "tspc -w",
"docs": "typedoc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"main": "dist/index.js",
"directories": {
"doc": "docs",
"dist": "dist"
},
"engines": {
"node": ">=22.0.0"
},
"peerDependencies": {
"@jsonquerylang/jsonquery": "^5.0.4",
"@patternfly/patternfly": "^6.0.0",
"@patternfly/react-component-groups": "^6.0.0",
"@patternfly/react-core": "^6.0.0",
"@patternfly/react-table": "^6.0.0",
"@redhat-cloud-services/frontend-components": ">= 6.1.0",
"@redhat-cloud-services/frontend-components-utilities": ">= 6.1.0",
"@tanstack/react-pacer": ">= 0.15.0",
"@tanstack/react-query": ">= 5.83.0",
"p-all": ">= 4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"use-deep-compare": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.29.0",
"@faker-js/faker": "^10.0.0",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^3.0.0",
"@storybook/addon-docs": "^10.3.3",
"@storybook/addon-onboarding": "^10.3.3",
"@storybook/addon-webpack5-compiler-swc": "^4.0.3",
"@storybook/react-webpack5": "^10.3.3",
"@tanstack/eslint-plugin-query": "^5.91.0",
"@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": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"axios": "^1.12.2",
"eslint": "^9.36.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsdoc": "^60.7.1",
"eslint-plugin-react-hooks": "^6.1.0",
"eslint-plugin-storybook": "^10.3.3",
"eslint-plugin-testing-library": "^7.11.0",
"fishery": "^2.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"msw": "^2.11.3",
"msw-storybook-addon": "^2.0.5",
"prop-types": "^15.8.1",
"semantic-release": "^25.0.3",
"storybook": "^10.3.5",
"storybook-dark-mode": "^5.0.0",
"ts-jest": "^29.4.4",
"ts-patch": "^3.3.0",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typedoc": "^0.28.13",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"typescript-transform-paths": "^3.5.5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}