-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
120 lines (120 loc) · 3.41 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "gsa",
"version": "24.0.2-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 <[email protected]>",
"license": "AGPL-3.0+",
"type": "module",
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"dev": "vite",
"start": "npm run dev",
"build": "vite build",
"lint": "eslint src --ext js,jsx,ts,tsx --max-warnings 0",
"preview": "vite preview",
"i18n-extract": "NODE_ENV=development babel -f .babelrc 'src/**/*.{js,jsx,ts,tsx}'",
"clean-up-translations": "node scripts/cleanuptranslations"
},
"engines": {
"node": ">=18.0"
},
"dependencies": {
"@greenbone/opensight-ui-components-mantinev7": "^0.0.7-alpha3",
"@mantine/core": "^7.12.1",
"@reduxjs/toolkit": "^2.4.0",
"@sentry/react": "^8.39.0",
"@visx/axis": "^3.12.0",
"@visx/gradient": "^3.12.0",
"@visx/shape": "^3.5.0",
"babel-preset-react-app": "^10.0.1",
"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",
"downshift": "^9.0.8",
"fast-deep-equal": "^3.1.3",
"fast-xml-parser": "^4.5.0",
"hoist-non-react-statics": "^3.3.2",
"i18next": "^24.0.2",
"i18next-http-backend": "^3.0.1",
"ical.js": "^2.1.0",
"lucide-react": "^0.460.0",
"memoize-one": "^6.0.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^6.1.13",
"uuid": "^11.0.3",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@pandatix/js-cvss": "^0.4.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-legacy": "^5.4.3",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/ui": "^2.1.4",
"babel-plugin-i18next-extract": "^0.10.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vitest-globals": "^1.5.0",
"husky": "^2.7.0",
"jest-styled-components": "^7.2.0",
"jsdom": "^25.0.1",
"lint-staged": "^13.1.0",
"prettier": "^3.3.3",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-eslint2": "^5.0.2",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json}": [
"prettier --write"
]
}
}