forked from hackerwins/react-summernote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "react-summernote",
"version": "1.0.0-rc2",
"description": "Summernote adaptation for react",
"main": "./dist/summernote.js",
"repository": {
"type": "git",
"url": "https://github.com/Vnkitaev/react-summernote.git"
},
"scripts": {
"compile": "webpack --config ./webpack.config.js",
"compile:production": "NODE_ENV=production webpack --config ./webpack.config.js"
},
"keywords": [
"summernote",
"react-summernote",
"react-wysiwyg",
"rich-text-editor",
"WYSIWYG"
],
"author": {
"name": "Ivan Kitaev",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"codemirror": "5.16.0",
"summernote-webpack-fix": "0.8.2"
},
"peerDependencies": {
"jquery": "3.0.0",
"bootstrap": "^3.3.6",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"webpack": "1.13.1",
"babel-core": "6.10.4",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"url-loader": "0.5.7",
"file-loader": "0.9.0",
"style-loader": "0.13.1",
"css-loader": "0.23.1",
"extract-text-webpack-plugin": "1.0.1",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-react": "5.2.2",
"eslint-plugin-import": "1.9.2",
"eslint-plugin-jsx-a11y": "1.5.3"
}
}