forked from margox/braft-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "braft-editor",
"version": "2.3.8",
"description": "Rich Text Editor Based On Draft.js",
"main": "dist/index.js",
"types": "index.d.ts",
"author": "Margox",
"scripts": {
"start": "webpack-dev-server --config ./playground/webpack/webpack.config.dev.js -d --history-api-fallback --no-inline --progress --colors --host 0.0.0.0",
"server": "cross-env NODE_ENV=development node ./playground/server.js",
"build": "cross-env NODE_ENV=production webpack --config ./playground/webpack/webpack.config.prod --progress --colors && node ./playground/webpack/scss-output.js",
"build-output-css": "node ./playground/webpack/scss-output.js",
"test": "npm run lint"
},
"repository": "https://github.com/margox/braft",
"keywords": [
"braft",
"draft",
"draft-js",
"rich",
"text",
"editor",
"rich-text-editor",
"wysiwyg"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@types/draft-js": "^0.10.38",
"@types/react": "^16.9.23",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"chalk": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"draft-js-prism": "^1.0.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"extract-text-webpack-plugin": "next",
"file-loader": "^5.1.0",
"formidable": "^1.2.1",
"html-webpack-plugin": "next",
"http-proxy-middleware": "^1.0.1",
"ip": "^1.1.5",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.19.1",
"prism-js": "^1.0.0",
"prismjs": "^1.15.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-hot-loader": "^4.12.19",
"sass-loader": "^7.3.1",
"style-loader": "^1.1.3",
"url-loader": "^3.0.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.10.3",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"@maximusft/mergeclassnames": "github:MaximusFT/mergeClassNames",
"braft-convert": "^2.3.0",
"braft-extensions": "beta",
"braft-finder": "0.0.21",
"braft-utils": "^3.0.8",
"draft-convert": "^2.1.8",
"draft-js": "^0.11.5",
"draft-js-multidecorators": "^1.0.0",
"draftjs-utils": "^0.10.2",
"immutable": "~3.8.2",
"prop-types": "^15.7.2",
"react-color": "^2.14.1",
"uuid": "^7.0.2"
}
}