forked from margox/braft-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.36 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
{
"name": "@starfall/braft-extensions",
"version": "0.1.2",
"description": "Extensions for Braft Editor",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --config ./build/webpack.development.js -d --history-api-fallback --no-inline --progress --colors --host 127.0.0.1",
"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"
},
"keywords": [
"draft-js",
"draft",
"braft",
"extensions"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"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",
"braft-editor": "^2.1.31",
"copy-webpack-plugin": "^4.5.3",
"cross-env": "^7.0.0",
"css-loader": "^3.4.2",
"draft-js-prism": "^1.0.6",
"draft-js-mention-plugin": "^3.1.5",
"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",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"prismjs": "^1.15.0",
"react": "^16.4.1",
"react-color": "^2.14.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"url-loader": "^3.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"braft-convert": "^2.1.10",
"braft-utils": "^3.0.12",
"marked": "^1.2.5"
},
"author": "Margox",
"license": "ISC",
"peerDependencies": {
"draft-js-prism": "^1.0.6",
"html-table-to-json": "^0.4.0",
"prismjs": "^1.15.0",
"react-color": "^2.14.1"
}
}