forked from niuware/mui-rte
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.79 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
{
"name": "@tetra-insights/next-rte",
"version": "3.0.0",
"description": "Material-UI Rich Text Editor and Viewer",
"keywords": [
"material-ui",
"mui",
"rich text editor",
"rte",
"react",
"text editor",
"draft-js"
],
"main": "index.js",
"scripts": {
"serve": "cross-env webpack-dev-server --mode development",
"build": "tsc",
"watch": "tsc --watch"
},
"author": "Erik Lopez",
"license": "MIT",
"devDependencies": {
"@emotion/react": "11.9.3",
"@emotion/styled": "11.9.3",
"@mui/icons-material": "5.8.3",
"@mui/material": "5.8.3",
"@mui/styles": "5.8.3",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"@webpack-cli/serve": "1.6.1",
"@babel/core": "7.18.2",
"acorn": "8.7.1",
"cross-env": "^7.0.3",
"eslint": "8.17.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"typescript": "4.7.3",
"ts-loader": "9.3.0",
"webpack": "5.73.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.2",
"bufferutil": "4.0.6",
"utf-8-validate": "5.0.9"
},
"peerDependencies": {
"@mui/material": "^5.0.0",
"@mui/icons-material": "^5.0.0",
"@mui/styles": "^5.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"dependencies": {
"@types/draft-js": "^0.11.5",
"classnames": "^2.3.1",
"draft-js": "^0.11.7",
"immutable": "^4.0.0"
},
"files": [
"dist",
"index.js",
"index.d.ts"
],
"types": "index.d.ts",
"homepage": "https://github.com/tetra-insights/mui-rte#readme",
"repository": {
"type": "git",
"url": "https://github.com/tetra-insights/mui-rte.git"
},
"bugs": {
"url": "https://github.com/tetra-insights/mui-rte/issues"
},
"author": {
"name": "Tetra Insights",
"url": "https://www.tetrainsights.com"
}
}