forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.67 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
{
"name": "check_mk",
"version": "1.0.0",
"description": "Check_MK - Your complete IT monitoring solution",
"main": "web/htdocs/js/index.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead",
"not op_mini all"
],
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"//": "COMMENT: Process 'resolutions' key below",
"preinstall": "npx --no npm-force-resolutions"
},
"repository": {
"type": "git",
"url": "http://git.mathias-kettner.de/check_mk.git"
},
"author": "",
"license": "GPL-2.0",
"//devDependencies": [
"COMMENT: JSON as config format is so stupid.",
"COMMENT: merge: Indirect dependency, declared explicitly to fix security issue'"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/crossfilter": "^0.0.34",
"@types/d3": "^7.1.1",
"@types/d3-hexbin": "^0.2.3",
"@types/dc": "^4.2.1",
"@types/jquery": "^3.5.13",
"@types/lodash": "^4.14.191",
"@types/lodash.range": "^3.2.7",
"@types/node": "^17.0.10",
"@types/select2": "^4.0.55",
"@types/yaireo__tagify": "^4.16.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"browserslist": "^4.21.4",
"caniuse-lite": "^1.0.30001423",
"css-loader": "^6.5.1",
"cssnano": "^5.0.12",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^4.0.0",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"merge": ">=2.1.1",
"mini-css-extract-plugin": "^2.4.5",
"npm-force-resolutions": "^0.0.10",
"pkg-dir": "^6.0.1",
"postcss": "^8.2.4",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.0",
"redoc": "^2.0.0-rc.58",
"redoc-cli": "^0.13.1",
"sass": "^1.44.0",
"sass-loader": "^12.3.0",
"script-loader": "^0.7.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.1.1",
"typescript": "^4.7.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-remove-empty-scripts": "^0.7.1"
},
"//dependencies": {
"debug": "is an indirect dependency and only here so clean-install won't fail",
"ms": "is an indirect dependency and only here so clean-install won't fail",
"yargs-parser": "is an indirect dependency and only here so clean-install won't fail"
},
"dependencies": {
"@yaireo/tagify": "^4.17.7",
"@zxcvbn-ts/core": "^2.0.3",
"@zxcvbn-ts/language-common": "^2.0.1",
"@zxcvbn-ts/language-en": "^2.0.1",
"core-js": "^3.19.2",
"crossfilter2": "^1.5.2",
"d3": "^7.1.1",
"d3-flextree": "^2.1.2",
"d3-hexbin": "^0.2.2",
"d3-sankey": "^0.12.3",
"dc": "^4.2.7",
"debug": "^2.6.9",
"element-closest-polyfill": "^1.0.4",
"jquery": "^3.6.0",
"lodash.range": "^3.2.0",
"ms": "^2.0.0",
"select2": "^4.0.13",
"simplebar": "^5.3.6",
"sweetalert2": "^11.2.1",
"yargs-parser": "^20.2.9"
},
"//": "COMMENT: This is here, so the that the build doesn't fail on a npm version missmatch.",
"optionalDependencies": {
"fsevents": "2.1.2"
},
"resolutions": {
"//": "COMMENT: Ensure we get the desired version without dependency declaration",
"elliptic": ">=6.5.4"
}
}