forked from experium/react-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 KB
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
{
"name": "@experium/react-editor",
"main": "./lib/index.js",
"version": "1.0.6",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "webpack-dev-server",
"build": "NODE_ENV=production webpack",
"lint": "eslint src/** -f checkstyle -o reports/eslint.xml",
"package": "babel src --out-dir lib"
},
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"antd": "^3.23.2",
"classnames": "^2.1.3",
"draft-js": "^0.11.0",
"draft-js-export-html": "^1.4.1",
"draft-js-import-html": "^1.4.1",
"final-form": "^4.18.5",
"final-form-arrays": "^3.0.1",
"font-awesome": "^4.7.0",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^16.9.0",
"react-beautiful-dnd": "^11.0.5",
"react-dom": "^16.9.0",
"react-final-form": "^6.3.0",
"react-final-form-arrays": "^3.1.1",
"react-onclickoutside": "^6.9.0",
"react-player": "^1.12.0",
"uniqid": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-css-modules-transform": "^1.6.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"eslint": "^6.4.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.14.3",
"file-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1",
"webpack-merge": "^4.2.2"
}
}