forked from greenbone/gsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.48 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 <bjoern.ricks@greenbone.net>",
"license": "AGPL-3.0+",
"main": "src/index.js",
"engines": {
"node": ">=14.0"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@greenbone/ui-components": "2021.1.2",
"@babel/runtime": "^7.17.2",
"@babel/core": "^7.17.5",
"@sentry/react": "^6.18.1",
"@vx/axis": "^0.0.183",
"@vx/gradient": "^0.0.183",
"@vx/shape": "^0.0.179",
"babel-loader": "8.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.7",
"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": "^21.6.13",
"i18next-xhr-backend": "3.2.2",
"ical.js": "^1.5.0",
"memoize-one": "^6.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"prop-types": "^15.8.1",
"qhistory": "^1.1.0",
"qs": "^6.10.3",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.1.0",
"react-datepicker": "^1.8.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.6",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.1",
"styled-components": "^4.4.1",
"uuid": "^8.3.2",
"whatwg-fetch": "^3.6.2"
},
"scripts": {
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"test:coverage": "react-scripts test --env=jest-environment-jsdom-sixteen --coverage --maxWorkers 4 --silent",
"lint": "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.17.6",
"@storybook/react": "^6.4.19",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.1",
"@testing-library/user-event": "^13.5.0",
"babel-plugin-i18next-extract": "^0.8.3",
"eslint-config-prettier": "^8.5.0",
"husky": "^2.7.0",
"jest-environment-jsdom-sixteen": "^2.0.0",
"jest-junit": "^13.0.0",
"jest-styled-components": "^6.3.4",
"lint-staged": "^8.2.1",
"prettier": "^2.5.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"
]
}
}