|
|
@@ -9,12 +9,23 @@
|
|
|
"ckeditor5-feature",
|
|
|
"ckeditor5-plugin"
|
|
|
],
|
|
|
- "dependencies": {},
|
|
|
+ "dependencies": {
|
|
|
+ "@ckeditor/ckeditor5-core": "^16.0.0",
|
|
|
+ "@ckeditor/ckeditor5-typing": "^16.0.0",
|
|
|
+ "@ckeditor/ckeditor5-ui": "^16.0.0",
|
|
|
+ "@ckeditor/ckeditor5-utils": "^16.0.0"
|
|
|
+ },
|
|
|
"devDependencies": {
|
|
|
+ "@ckeditor/ckeditor5-editor-classic": "^16.0.0",
|
|
|
+ "@ckeditor/ckeditor5-image": "^16.0.0",
|
|
|
+ "@ckeditor/ckeditor5-easy-image": "^16.0.0",
|
|
|
+ "@ckeditor/ckeditor5-cloud-services": "^16.0.0",
|
|
|
"eslint": "^5.5.0",
|
|
|
"eslint-config-ckeditor5": "^2.0.0",
|
|
|
"husky": "^1.3.1",
|
|
|
- "lint-staged": "^7.0.0"
|
|
|
+ "lint-staged": "^7.0.0",
|
|
|
+ "stylelint": "^11.1.1",
|
|
|
+ "stylelint-config-ckeditor5": "^1.0.0"
|
|
|
},
|
|
|
"engines": {
|
|
|
"node": ">=8.0.0",
|
|
|
@@ -34,11 +45,15 @@
|
|
|
"theme"
|
|
|
],
|
|
|
"scripts": {
|
|
|
- "lint": "eslint --quiet '**/*.js'"
|
|
|
+ "lint": "eslint --quiet '**/*.js'",
|
|
|
+ "stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css' 'docs/**/*.css'"
|
|
|
},
|
|
|
"lint-staged": {
|
|
|
"**/*.js": [
|
|
|
"eslint --quiet"
|
|
|
+ ],
|
|
|
+ "**/*.css": [
|
|
|
+ "stylelint --quiet --allow-empty-input"
|
|
|
]
|
|
|
},
|
|
|
"eslintIgnore": [
|