forked from margox/braft-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.37 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
{
"name": "braft-editor",
"version": "2.1.35",
"description": "Rich Text Editor Based On Draft.js",
"main": "dist/index.js",
"author": "Margox",
"scripts": {
"start": "webpack-dev-server --config ./build/webpack.development.js -d --history-api-fallback --no-inline --progress --colors --host 0.0.0.0",
"build": "rm -rf dist/ && NODE_ENV=production webpack --config ./build/webpack.production.js --progress --colors",
"lint": "node_modules/eslint/bin/eslint.js .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/margox/braft",
"keywords": [
"braft",
"draft",
"draft-js",
"rich",
"text",
"editor",
"rich-text-editor",
"wysiwyg"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"css-loader": "^0.28.11",
"eslint": "^5.4.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "next",
"file-loader": "^2.0.0",
"html-webpack-plugin": "next",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"braft-convert": "^2.1.10",
"braft-finder": "^0.0.16",
"braft-utils": "git+https://github.com/bwencke/braft-utils.git#fix_decrease_indent",
"draft-convert": "^2.0.0",
"draft-js": "^0.10.3",
"draft-js-multidecorators": "^1.0.0",
"draftjs-utils": "^0.9.4",
"immutable": "~3.7.4"
},
"peerDependencies": {
"react": "^15.0.2|| ^16.0.0-rc || ^16.0.0",
"react-dom": "^15.0.2|| ^16.0.0-rc || ^16.0.0"
}
}