-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.2 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
{
"name": "ckeditor5-twig",
"version": "0.0.15",
"description": "Twig template plugin for ckeditor5",
"keywords": [
"ckeditor5-plugin",
"template",
"twig",
"ckeditor",
"ckeditor5",
"plugin",
"ckeditor5-feature"
],
"author": "Michel Roca",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mRoca/ckeditor5-twig.git"
},
"bugs": "https://github.com/mRoca/ckeditor5-twig/issues",
"main": "twig/twigplugin.js",
"dependencies": {
"@ckeditor/ckeditor5-core": "^40.2.0",
"@ckeditor/ckeditor5-engine": "^40.2.0",
"@ckeditor/ckeditor5-ui": "^40.2.0",
"@ckeditor/ckeditor5-utils": "^40.2.0",
"@ckeditor/ckeditor5-widget": "^40.2.0",
"prettydiff": "^101.2.6",
"sweetalert2": "^11.10.2"
},
"devDependencies": {
"@ckeditor/ckeditor5-autosave": "^40.2.0",
"@ckeditor/ckeditor5-basic-styles": "^40.2.0",
"@ckeditor/ckeditor5-code-block": "^40.2.0",
"@ckeditor/ckeditor5-dev-utils": "^39.5.0",
"@ckeditor/ckeditor5-editor-classic": "^40.2.0",
"@ckeditor/ckeditor5-essentials": "^40.2.0",
"@ckeditor/ckeditor5-heading": "^40.2.0",
"@ckeditor/ckeditor5-html-embed": "^40.2.0",
"@ckeditor/ckeditor5-image": "^40.2.0",
"@ckeditor/ckeditor5-inspector": "^4.1.0",
"@ckeditor/ckeditor5-list": "^40.2.0",
"@ckeditor/ckeditor5-paragraph": "^40.2.0",
"@ckeditor/ckeditor5-theme-lark": "^40.2.0",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-ckeditor5": "^5.2.1",
"highlight.js": "^11.9.0",
"postcss-loader": "^7.3.4",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.3",
"stylelint": "^16.1.0",
"stylelint-config-recommended": "^14.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"watch": "webpack --mode development --watch",
"build": "webpack --mode development",
"build-prod": "webpack --mode production",
"lint": "eslint --quiet --max-warnings=0 'twig/**/*.js' '*.js'",
"lint:fix": "eslint --fix --max-warnings=0 'twig/**/*.js' '*.js'",
"stylelint": "stylelint --quiet --allow-empty-input 'twig/**/*.css' '*.css'",
"stylelint:fix": "stylelint --fix --allow-empty-input 'twig/**/*.css' '*.css'"
}
}