-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.36 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "gsa",
"version": "25.0.1-dev1",
"description": "Greenbone Security Assistant",
"keywords": [
"openvas",
"gmp",
"gsa",
"greenbone",
"greenbone security assistant"
],
"repository": {
"type": "git",
"url": "https://github.com/greenbone/gsa/"
},
"author": "Björn Ricks <bjoern.ricks@greenbone.net>",
"license": "AGPL-3.0+",
"type": "module",
"scripts": {
"test": "vitest",
"test:web-fast": "vitest --pool=vmForks --project web --project store",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"dev": "vite",
"start": "npm run dev",
"build": "tsc && vite build",
"lint": "eslint src --max-warnings 0",
"format": "prettier --write src",
"format-check": "prettier -l src",
"preview": "vite preview",
"i18n-extract": "i18next",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch"
},
"engines": {
"node": ">=20.0"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration": "^2.0.3",
"@greenbone/opensight-ui-components-mantinev7": "^0.7.5",
"@mantine/core": "^7.17.7",
"@mantine/dates": "^7.17.7",
"@mantine/notifications": "^7.17.7",
"@reduxjs/toolkit": "^2.8.2",
"@visx/axis": "^3.12.0",
"@visx/gradient": "^3.12.0",
"@visx/shape": "^3.5.0",
"d3-cloud": "^1.2.7",
"d3-color": "^3.1.0",
"d3-force": "^3.0.0",
"d3-format": "^3.1.0",
"d3-hierarchy": "^3.1.2",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-shape": "^3.2.0",
"dayjs": "^1.11.13",
"fast-deep-equal": "^3.1.3",
"fast-xml-parser": "^5.2.3",
"hoist-non-react-statics": "^3.3.2",
"i18next": "^24.2.3",
"i18next-http-backend": "^3.0.2",
"ical.js": "^2.1.0",
"lucide-react": "^0.511.0",
"memoize-one": "^6.0.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.5.2",
"react-is": "^18.3.1",
"react-redux": "^9.2.0",
"react-router": "^7.6.1",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^6.1.18",
"uuid": "^11.1.0",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@pandatix/js-cvss": "^0.4.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/d3-force": "^3.0.10",
"@types/node": "^22.15.29",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-is": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitejs/plugin-legacy": "^6.1.1",
"@vitejs/plugin-react": "^4.5.0",
"@vitest/coverage-v8": "^3.1.4",
"@vitest/eslint-plugin": "^1.2.1",
"@vitest/ui": "^3.1.4",
"eslint": "^9.28.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.1.0",
"i18next-parser": "^9.3.0",
"jest-styled-components": "^7.2.0",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"vite-plugin-eslint2": "^5.0.3",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.1.4"
}
}