forked from jpuri/html-to-draftjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "html-to-draftjs",
"version": "1.5.0",
"main": "dist/html-to-draftjs.js",
"repository": {
"type": "git",
"url": "https://github.com/jpuri/html-to-draftjs.git"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.4",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"chai": "^4.2.0",
"draft-js": "^0.11.3",
"draftjs-to-html": "^0.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-draft-wysiwyg": "^1.13.2",
"react-scripts": "3.3.0",
"rimraf": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"draft-js": "^0.10.x || ^0.11.x",
"immutable": "3.x.x || 4.x.x"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"clean": "rimraf dist",
"build": "npm run clean && webpack --mode production --config config/webpack.config.js"
},
"author": "Jyoti Puri",
"license": "MIT"
}