-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "easy-editor",
"version": "0.0.1",
"description": "A rich-text editor for Vue & React",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./build/examples/dev.webpack.config.babel.js",
"build:packages": "node ./node_modules/@babel/node/bin/babel-node.js ./build/packages/build.js",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lizhaoting/EasyEditor.git"
},
"keywords": [
"rich-text",
"rich editor",
"prosemirror",
"online editor"
],
"author": "eric",
"license": "ISC",
"bugs": {
"url": "https://github.com/lizhaoting/EasyEditor/issues"
},
"homepage": "https://github.com/lizhaoting/EasyEditor#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "7.0.0-beta.40",
"acorn": "7.1.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"minimist": "1.2.3",
"orderedmap": "^1.1.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"vue": "^2.6.11",
"vue-loader": "^15.9.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"w3c-keyname": "^2.2.4",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}