forked from niuware/mui-rte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.16 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
{
"name": "mui-rte",
"version": "1.12.0",
"description": "Material-UI Rich Text Editor and Viewer",
"keywords": [
"material-ui",
"rich text editor",
"rte",
"react",
"text editor",
"draft-js"
],
"repository": {
"type": "git",
"url": "https://github.com/niuware/mui-rte.git"
},
"bugs": {
"url": "https://github.com/niuware/mui-rte/issues"
},
"homepage": "https://github.com/niuware/mui-rte#readme",
"main": "dist/index.js",
"scripts": {
"serve": "cross-env webpack-dev-server --mode development",
"watch": "cross-env NODE_ENV=development rollup -c -w",
"build": "cross-env NODE_ENV=production rollup -c",
"test": "mocha -r ts-node/register test/setup.ts test/*.test.*"
},
"author": "Erik Lopez",
"license": "MIT",
"devDependencies": {
"@material-ui/core": "^4.5.0",
"@material-ui/icons": "^4.4.3",
"@types/chai": "^4.2.3",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/mocha": "^5.2.7",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/sinon": "^7.5.0",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.5.1",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"rollup": "^1.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^7.5.0",
"source-map-loader": "^0.2.4",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"peerDependencies": {
"@material-ui/core": ">=4.1.0 <5",
"@material-ui/icons": ">=4.1.0 <5",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"@types/classnames": "^2.2.9",
"@types/draft-js": "^0.10.36",
"classnames": "^2.2.6",
"draft-js": "^0.11.1",
"immutable": "^3.8.2"
},
"files": [
"dist",
"src",
"*.js",
"*.json",
"*.ts",
"*.tsx"
]
}