-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
62 lines (62 loc) · 1.47 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
{
"name": "react-summernote",
"version": "2.0.0",
"description": "Summernote (Super simple WYSIWYG editor) adaptation for react",
"main": "./dist/react-summernote.js",
"repository": {
"type": "git",
"url": "https://github.com/Vnkitaev/react-summernote.git"
},
"scripts": {
"build": "webpack",
"install-modules": "yarn"
},
"keywords": [
"summernote",
"react-summernote",
"react-wysiwyg",
"rich-text-editor",
"WYSIWYG"
],
"files": [
"dist",
"src",
"lang"
],
"author": {
"name": "Ivan Kitaev",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"codemirror": "^5.26.0",
"prop-types": "^15.5.10",
"summernote": "^0.8.15"
},
"peerDependencies": {
"bootstrap": "^3.3.6",
"jquery": "^2.2.0 || ^3.0.0",
"react": "^15.0.0",
"react-dom": "*"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "4.0.1",
"css-loader": "^0.28.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "^0.11.1",
"node-libs-browser": "2.0.0",
"style-loader": "^0.18.1",
"url-loader": "0.5.8",
"webpack": "^2.6.1"
}
}