-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 KB
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
{
"name": "draftjs-web-editor",
"version": "0.1.0",
"description": "Cool draftjs editor for the web",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf ./lib && babel src/ -d lib/",
"dev": "yarn link && cd demo && yarn link draftjs-web-editor && yarn start",
"deploy": "cd ./demo && serve -s build"
},
"keywords": [
"draft-js",
"draft-js-plugins",
"draftjs plugins",
"draftjs",
"draft.js",
"editor",
"richtext",
"react"
],
"author": "BranLiang",
"license": "MIT",
"dependencies": {
"css.escape": "^1.5.1",
"decorate-component-with-props": "^1.1.0",
"draft-js": "^0.10.5",
"draft-js-code": "^0.3.0",
"draft-js-drag-n-drop-plugin": "^2.0.3",
"draft-js-focus-plugin": "^2.2.0",
"draft-js-linkify-plugin": "^2.0.1",
"draft-js-markdown-plugin": "^3.0.4",
"draft-js-plugins-editor": "^2.1.1",
"draft-js-prism": "^1.0.6",
"immutable": "^3.8.2",
"linkify-it": "^2.0.3",
"lodash": "^4.17.10",
"lodash.escaperegexp": "^4.1.2",
"prismjs": "^1.15.0",
"react-color": "^2.14.1",
"styled-components": "^3.4.5",
"tlds": "^1.203.1",
"validator": "^10.7.1"
},
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0"
}
}