forked from kubevirt-ui/kubevirt-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.12 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
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
98
99
100
{
"name": "@kubevirt-ui/components",
"version": "0.0.10",
"description": "React Component Library for Kubevirt UI",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/kubevirt-ui/kubevirt-components.git"
},
"author": "Yaacov Zamir <[email protected]>",
"scripts": {
"clean": "rm -rf dist",
"build": "rollup -c rollup.config.js",
"lint": "eslint src --color",
"lint:fix": "yarn lint --fix",
"check-types": "tsc",
"test": "jest",
"test-cov": "jest --coverage",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"styleguide:record": "source bridge/environment.sh; styleguidist server --config styleguide.config.proxy.js"
},
"dependencies": {
"@kubevirt-ui/kubevirt-api": "^0.0.35",
"@patternfly/patternfly": "^4.171.1",
"@patternfly/react-core": "^4.192.15",
"classnames": "^2.3.1"
},
"resolutions": {
"**/react": "17.0.2",
"**/react-dom": "17.0.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@openshift-console/dynamic-plugin-sdk": "0.0.6",
"@openshift-console/dynamic-plugin-sdk-internal": "^0.0.5",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/jsdom": "^16.2.14",
"@types/react": "^17.0.38",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"express": "^4.17.3",
"file-loader": "^6.2.0",
"http": "^0.0.1-security",
"http-proxy-middleware": "^2.0.3",
"jest": "^27.4.7",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"react-docgen-typescript": "^2.2.2",
"react-styleguidist": "^11.2.0",
"rollup": "^2.63.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg-import": "^1.6.0",
"sass": "^1.49.4",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"svg-url-loader": "^7.1.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.7.2"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}