-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.17 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
{
"name": "mmf-blog-editor",
"author": {
"name": "Matthieu HERCHY"
},
"version": "0.3.2",
"private": true,
"main": "build/editor.js",
"module": "build/editor.jsm",
"repository": {
"type": "git",
"url": "https://github.com/mherchy/mmf-blog-editor.git"
},
"dependencies": {
"base64-img": "^1.0.4",
"draft-js": "^0.11.0",
"draft-js-alignment-plugin": "^2.0.5",
"draft-js-anchor-plugin": "^2.0.2",
"draft-js-buttons": "^2.0.2",
"draft-js-drag-n-drop-plugin": "^2.0.3",
"draft-js-emoji-plugin": "^2.1.1",
"draft-js-export-html": "^1.4.1",
"draft-js-focus-plugin": "^2.2.0",
"draft-js-image-plugin": "^2.0.6",
"draft-js-import-html": "^1.4.1",
"draft-js-inline-toolbar-plugin": "^3.0.0",
"draft-js-linkify-plugin": "^2.0.1",
"draft-js-plugins-editor": "^2.1.1",
"draft-js-resizeable-plugin": "^2.0.8",
"draft-js-static-toolbar-plugin": "^3.0.0",
"draft-js-undo-plugin": "^2.0.2",
"markdown-draft-js": "^2.0.0",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react-dropzone-uploader": "^2.10.1",
"clsx": "latest"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"node-sass": "^4.12.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^1.10.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6"
},
"optionalDependencies": {
"reset-css": "^4.0.1"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"scripts": {
"lib": "rollup -c",
"lib:watch": "rollup -cw",
"build": "webpack",
"build:watch": "webpack --watch"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}