-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
120 lines (120 loc) · 3.71 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": "@ckeditor/ckeditor5-inspector",
"main": "build/inspector.js",
"files": [
"build",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"description": "The official CKEditor 5 instance inspector.",
"license": "GPL-2.0-or-later",
"version": "4.1.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"changelog": "node ./scripts/changelog.mjs",
"release:prepare-packages": "node ./scripts/preparepackages.mjs",
"release:publish-packages": "node ./scripts/publishpackages.mjs",
"test": "node ./scripts/test.js",
"lint": "eslint --quiet \"**/*.{js,mjs}\""
},
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-inspector.git"
},
"author": "CKSource (http://cksource.com/)",
"bugs": {
"url": "https://github.com/ckeditor/ckeditor5-inspector/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor5-inspector",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@ckeditor/ckeditor5-autoformat": "^35.0.0",
"@ckeditor/ckeditor5-basic-styles": "^35.0.0",
"@ckeditor/ckeditor5-block-quote": "^35.0.0",
"@ckeditor/ckeditor5-dev-bump-year": "^44.0.0",
"@ckeditor/ckeditor5-dev-ci": "^44.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^44.0.0",
"@ckeditor/ckeditor5-dev-utils": "^44.0.0",
"@ckeditor/ckeditor5-editor-decoupled": "^35.0.0",
"@ckeditor/ckeditor5-essentials": "^35.0.0",
"@ckeditor/ckeditor5-heading": "^35.0.0",
"@ckeditor/ckeditor5-html-support": "^35.0.0",
"@ckeditor/ckeditor5-image": "^35.0.0",
"@ckeditor/ckeditor5-indent": "^35.0.0",
"@ckeditor/ckeditor5-link": "^35.0.0",
"@ckeditor/ckeditor5-list": "^35.0.0",
"@ckeditor/ckeditor5-media-embed": "^35.0.0",
"@ckeditor/ckeditor5-paste-from-office": "^35.0.0",
"@ckeditor/ckeditor5-table": "^35.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-istanbul": "^6.1.0",
"coveralls": "^3.1.1",
"chai": "^4.3.4",
"chai-enzyme": "^1.0.0-beta.1",
"ckeditor5": "^35.0.0",
"copy-to-clipboard": "^3.3.1",
"css-loader": "^5.2.7",
"cssnano": "^5.1.12",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-config-ckeditor5": "^5.3.2",
"eslint-plugin-react": "^7.27.1",
"husky": "^8.0.2",
"javascript-stringify": "^2.1.0",
"karma": "^6.3.17",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"lint-staged": "^10.5.4",
"listr2": "^6.5.0",
"lodash.isequal": "^4.5.0",
"mocha": "^10.1.0",
"postcss-loader": "^4.3.0",
"postcss-nesting": "^10.2.0",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-modal": "^3.14.4",
"react-redux": "^7.2.6",
"react-rnd": "~10.2.4",
"react-svg-loader": "^3.0.3",
"redux": "^4.1.2",
"sinon": "^7.5.0",
"style-loader": "^1.3.0",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^5.77.0",
"webpack-cli": "^4.10.0"
},
"resolutions": {
"cheerio": "1.0.0-rc.10",
"react-svg-loader/**/nth-check": "^2.0.1",
"string-width": "^4.0.0",
"wrap-ansi": "^7.0.0",
"semver": "^7.0.0"
},
"lint-staged": {
"**/*.{js,mjs}": [
"eslint --quiet"
]
},
"eslintIgnore": [
"build/**",
"coverage/**"
]
}