-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.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
{
"name": "betomat-plugin-ckeditor5",
"version": "0.3.1",
"main": "build/betomat.js",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/lukasz-zaroda/betomat-plugin-ckeditor5.git"
},
"homepage": "https://github.com/lukasz-zaroda/betomat-plugin-ckeditor5",
"scripts": {
"dev:build": "NODE_ENV=development ./node_modules/.bin/webpack --mode development --config ./webpack.config.js",
"prod:build": "NODE_ENV=production ./node_modules/.bin/webpack --mode production --config ./webpack.config.js",
"dev:watch": "NODE_ENV=development ./node_modules/.bin/webpack --mode development --watch --config ./webpack.config.js"
},
"dependencies": {
"lodash-es": "^4.17.21",
"schema-utils": "^4.0.0"
},
"devDependencies": {
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"mini-css-extract-plugin": "^2.6.1",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0"
},
"peerDependencies": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-engine": "^34.2.0",
"@ckeditor/ckeditor5-ui": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0"
}
}