-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "deedmob-ory-editor-slate",
"version": "0.0.0",
"main": "./lib/src/index.js",
"typings": "./lib/src/index.d.ts",
"authors": [
"ORY GmbH",
"Deedmob B.V."
],
"license": "GNU Lesser General Public License v3.0",
"scripts": {
"build": "npm run build:lib & npm run build:css",
"build:lib": "tsc -p ./tsconfig.json",
"build:css": "postcss -c ./postcss.config.js --dir lib/ src/index.css",
"prebuild": "npm run clean",
"clean": "rimraf \"lib/*\""
},
"peerDependencies": {
"@material-ui/core": "^3.0.0",
"@material-ui/icons": "^3.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"ory-editor-core": "*",
"ory-editor-ui": "*"
},
"dependencies": {
"@guestbell/slate-common": "0.3.0",
"@guestbell/slate-edit-blockquote": "0.3.1",
"@guestbell/slate-edit-list": "0.3.1",
"deep-rename-keys": "^0.2.1",
"immutable": "3.8.2",
"is-hotkey": "0.1.4",
"lodash.debounce": "4.0.8",
"lodash.throttle": "4.1.1",
"ramda": "^0.24.1",
"react-portal": "4.1.5",
"redux-undo": "1.0.0-beta9-7",
"slate": "^0.44.10",
"slate-html-serializer": "0.7.34",
"slate-plain-serializer": "^0.6.34",
"slate-react": "^0.21.16",
"slate-schema-violations": "0.1.39"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/is-hotkey": "0.1.1",
"@types/jest": "^24.0.0",
"@types/lodash.debounce": "4.0.4",
"@types/node": "^10.12.21",
"@types/react": "^16.8.1",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.5.0"
}
}