-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 902 Bytes
/
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
{
"name": "rgeditor",
"version": "1.0.0",
"private": true,
"description": "开发定制化编辑器",
"main": "index.js",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=12.0.0",
"npm": ">=5.7.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn workspace my-editor run build",
"dev": "webpack-dev-server --mode development --config webpack.config.js"
},
"keywords": [
"editor"
],
"author": "lvshaoli",
"license": "ISC",
"devDependencies": {
"@ckeditor/ckeditor5-dev-utils": "^24.4.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "1",
"html-webpack-plugin": "4.5.1",
"less": "3",
"less-loader": "4",
"postcss-loader": "3",
"raw-loader": "3",
"style-loader": "1",
"webpack": "5.12.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "^3.11.1"
}
}