forked from margox/braft-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.04 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
{
"name": "braft-editor",
"version": "1.9.7",
"description": "Rich Text Editor Based On Draft.js",
"main": "dist/braft.js",
"author": "Margox",
"scripts": {
"start": "webpack-dev-server -d --history-api-fallback --hot --inline --progress --colors --port 5998",
"build": "rm -rf dist/ && NODE_ENV=production webpack --config webpack.config.prod.js --progress --colors",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/margox/braft",
"keywords": [
"braft",
"draft",
"rich",
"text",
"editor",
"rich-text-editor",
"wysiwyg"
],
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.5.0",
"css-loader": "^0.28.4",
"prettier": "^1.13.4",
"eslint": "^4.19.1",
"babel-eslint": "^8.2.3",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^1.3.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "next",
"sass-loader": "^6.0.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"draft-convert": "^2.0.0",
"draft-js": "^0.10.3",
"draftjs-utils": "^0.8.7"
},
"peerDependencies": {
"react": "^15.0.2|| ^16.0.0-rc || ^16.0.0",
"react-dom": "^15.0.2|| ^16.0.0-rc || ^16.0.0"
}
}