This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
forked from greenbone/gsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.5 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
121
122
123
124
125
126
127
128
129
{
"name": "gsa",
"version": "22.4.0",
"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+",
"main": "src/index.js",
"engines": {
"node": ">=14.0"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@babel/core": "7.20.5",
"@babel/runtime": "^7.20.6",
"@greenbone/ui-components": "2021.1.2",
"@sentry/react": "^7.22.0",
"@vx/axis": "^0.0.183",
"@vx/gradient": "^0.0.183",
"@vx/shape": "^0.0.179",
"babel-loader": "9.1.0",
"d3-cloud": "^1.2.5",
"d3-color": "^2.0.0",
"d3-force": "^2.0.0",
"d3-format": "^2.0.0",
"d3-hierarchy": "^2.0.0",
"d3-interpolate": "^2.0.1",
"d3-scale": "^3.3.0",
"d3-shape": "^2.1.0",
"downshift": "^6.1.12",
"fast-deep-equal": "^3.1.3",
"fast-xml-parser": "^3.21.1",
"glamor": "^2.20.40",
"history": "^4.10.1",
"hoist-non-react-statics": "^3.3.2",
"i18next": "^22.0.4",
"i18next-xhr-backend": "3.2.2",
"ical.js": "^1.5.0",
"memoize-one": "^6.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.39",
"prop-types": "^15.8.1",
"qhistory": "^1.1.0",
"qs": "^6.11.0",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.1.1",
"react-datepicker": "^1.8.0",
"react-dom": "^16.14.0",
"react-redux": "^8.0.4",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"styled-components": "^4.4.1",
"uuid": "^9.0.0",
"whatwg-fetch": "^3.6.2"
},
"scripts": {
"test": "react-scripts test --env=jest-environment-jsdom",
"test:coverage": "react-scripts test --env=jest-environment-jsdom --coverage --maxWorkers 4 --silent",
"lint": "NODE_ENV=development BABEL_ENV=development eslint --max-warnings 0 src",
"start": "react-scripts start",
"build": "INLINE_RUNTIME_CHUNK=false react-scripts build && rm -f build/*.js*",
"eject": "react-scripts eject",
"storybook": "NODE_PATH=src start-storybook",
"build-storybook": "NODE_PATH=src build-storybook",
"i18n-extract": "NODE_ENV=development babel -f .babelrc 'src/**/*.{js,jsx,ts,tsx}'",
"clean-up-translations": "node scripts/cleanuptranslations"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@storybook/react": "^6.5.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.2.3",
"babel-plugin-i18next-extract": "^0.9.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^2.7.0",
"jest-environment-jsdom": "^29.3.1",
"jest-junit": "^14.0.1",
"jest-styled-components": "^6.3.4",
"lint-staged": "^8.2.1",
"prettier": "^2.7.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}",
"!src/web/stories/**",
"!src/gmp/index.js",
"!src/setupTests.js",
"!src/web/utils/testing.js"
],
"resetMocks": false
},
"browserslist": [
">0.5%",
"last 3 version",
"not dead",
"not ie <= 11",
"not edge <=18",
"not op_mini all",
"ff ESR"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
}
}