forked from leejaen/react-lz-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.99 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
{
"name": "react-lz-editor",
"version": "1.0.0",
"description": "An open source react editor based on draft-Js and ant design.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"typecheck": "flow",
"dev": "webpack-dev-server --devtool eval --progress --colors --hot --content-base build && lessc src/global/supports/resources/system.less src/global/supports/resources/system.css",
"release": "webpack -p --progress --colors --config webpack.release.config.js",
"publish": "babel -d publish/ src/ && lessc src/global/supports/resources/system.less publish/global/supports/resources/system.css"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/leejaen/react-lz-editor.git"
},
"keywords": [
"react-editor",
"draft-js",
"draftjs",
"react-rich-editor",
"react-text-editor",
"react-lz-editor",
"contenteditable",
"richtext",
"editor"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/leejaen/react-lz-editor/issues"
},
"homepage": "https://github.com/leejaen/react-lz-editor#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.23.1",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"file-loader": "^0.8.5",
"flow-bin": "^0.37.4",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"react": "^0.14.8",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"antd": "^2.5.3",
"draft-js": "^0.10.0",
"immutable": "^3.8.1",
"js-base64": "^2.1.9",
"lodash": "^4.17.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"synthetic-dom": "^0.2.1"
}
}