-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2.52 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
85
86
{
"name": "@unicef/material-slate",
"version": "0.5.2",
"description": "Material UI rich text editor based on Slate for react",
"main": "./dist/index.js",
"homepage": "https://unicef.github.io/material-slate",
"repository": {
"type": "git",
"url": "https://github.com/unicef/material-slate"
},
"scripts": {
"start": "rollup -c -w",
"docs": "styleguidist server",
"build": "rollup -c",
"build:docs": "styleguidist build",
"build:site": "mkdir -p ./site && npm run build:docs && cp -R styleguide/ ./site/docs/ && cd example && npm run build && cp -R build/ ../site/",
"deploy": "npm run build:site && gh-pages -d site",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"editor",
"rich text",
"text editor",
"material-ui",
"mui",
"slate",
"slatejs",
"plugin",
"rte",
"react"
],
"author": "UNICEF",
"license": "MIT",
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"slate": "^0.66.1",
"slate-react": "^0.66.1",
"slate-history": "^0.66.0",
"prop-types": "^15.7.2",
"@material-ui/core": ">= 4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.9.2",
"@material-ui/icons": "^4.9.1",
"@types/node": "^12.6.8",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"emotion": "^10.0.27",
"gh-pages": "^2.2.0",
"is-url": "^1.2.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-styleguidist": "^12.0.1",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-url": "^2.2.2",
"slate": "^0.66.1",
"slate-react": "^0.66.1",
"slate-history": "^0.66.0",
"styled-components": "^5.0.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"react-is": "^16.13.0"
}
}