-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 2.55 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
{
"name": "headlamp-edp",
"version": "0.19.0-SNAPSHOT",
"description": "Your Headlamp plugin",
"keywords": [
"headlamp",
"headlamp-plugin",
"kubernetes",
"plugins"
],
"scripts": {
"build:prod": "headlamp-plugin build",
"format": "headlamp-plugin format",
"lint": "headlamp-plugin lint & headlamp-plugin tsc",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx ./src",
"tsc": "headlamp-plugin tsc",
"start": "headlamp-plugin start",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:coverage": "jest --coverage",
"test:custom": "headlamp-plugin test",
"storybook": "headlamp-plugin storybook",
"storybook-build": "headlamp-plugin storybook-build"
},
"prettier": "./.prettierrc",
"eslintConfig": {
"extends": [
"@kinvolk",
"prettier",
"plugin:jsx-a11y/recommended"
],
"rules": {
"no-useless-computed-key": "error",
"react-hooks/exhaustive-deps": "warn",
"react-hooks/rules-of-hooks": "error"
}
},
"dependencies": {
"@carbon/charts": "0.58.2",
"@carbon/charts-react": "0.58.2",
"@hookform/error-message": "^2.0.0",
"@iconify/react": "^3.2.1",
"@monaco-editor/react": "^4.3.1",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.15",
"@mui/styles": "^5.15.15",
"@reduxjs/toolkit": "^1.9.3",
"carbon-components": "10.58.6",
"carbon-components-react": "7.59.6",
"clsx": "^1.2.1",
"d3-path": "3.1.0",
"dompurify": "^3.1.6",
"elkjs": "^0.8.2",
"humanize-duration": "^3.27.3",
"lodash": "^4.17.21",
"marked": "^13.0.0",
"moment": "^2.30.1",
"monaco-editor": "^0.25.2",
"monaco-editor-webpack-plugin": "^4.2.0",
"notistack": "^2.0.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^7.34.2",
"react-query": "^3.39.3",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"react-zoom-pan-pinch": "^3.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@jest/globals": "^29.0.1",
"@kinvolk/headlamp-plugin": "^0.9.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.0.0",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.0.1"
}
}