This repository has been archived by the owner on Mar 26, 2021. It is now read-only.
forked from leejaen/react-lz-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-lz-editor",
"version": "1.0.3",
"description":
"An open source react editor based on draft-Js and ant design, good support HTML, markdown and Draft Raw format.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"typecheck": "flow",
"precommit": "lint-staged",
"dev":
"webpack-dev-server --devtool eval --progress --colors --hot --content-base build",
"release":
"webpack -p --progress --colors --config webpack.release.config.js",
"publish":
"babel -d publish/ src/ --no-comments && lessc src/editor/styles/index.less publish/editor/styles/index.less"
},
"lint-staged": {
"*.{js,jsx,json,less,css,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JuNeng/react-lz-editor.git"
},
"keywords": [
"react-editor",
"draft-js",
"draftjs",
"react-rich-editor",
"react-text-editor",
"react-lz-editor",
"contenteditable",
"richtext",
"editor"
],
"author": "Entropy",
"license": "ISC",
"bugs": {
"url": "https://github.com/JuNeng/react-lz-editor/issues"
},
"homepage": "https://github.com/JuNeng/react-lz-editor#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-plugin-import": "^1.1.1",
"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-config-prettier": "^2.9.0",
"eslint-plugin-react": "^6.8.0",
"file-loader": "^0.8.5",
"flow-bin": "^0.37.4",
"hmacsha1": "^1.0.0",
"husky": "^0.14.3",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"lint-staged": "^7.0.0",
"md5": "^2.2.1",
"prettier": "^1.11.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"antd": "^2.8.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",
"whatwg-fetch": "^2.0.3"
}
}