-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "leoeditor",
"version": "1.0.1",
"description": "用webpack和typescript实现一个简单的富文本编辑器",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leohai/leo-editor.git"
},
"keywords": [
"editor"
],
"author": "leo",
"license": "ISC",
"bugs": {
"url": "https://github.com/leohai/leo-editor/issues"
},
"homepage": "https://github.com/leohai/leo-editor#readme",
"dependencies": {
"leoeditor": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/runtime-corejs3": "^7.13.10",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.10.0",
"css-loader": "^5.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.4.0",
"postcss": "^8.2.9",
"postcss-loader": "^5.2.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"files": [
"dist"
]
}