-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.72 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.72 KB
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
87
88
89
{
"name": "scribo",
"version": "1.0.0",
"description": "The editor developed for Matterwiki.",
"main": "index.js",
"browserslist": [
"defaults"
],
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"babel-plugin-styled-components"
]
},
"semistandard": {
"parser": "babel-eslint"
},
"engines": {
"npm": "please-use-yarn",
"yarn": "1.19.1",
"node": "12.13.1"
},
"lint-staged": {
"**/*": [
"yarn lint:fix",
"git add"
]
},
"scripts": {
"prepare": "yarn run install-peers",
"precommit": "lint-staged",
"install-peers": "install-peers",
"start": "ntl",
"example:md": "cross-env PARCEL_AUTOINSTALL=false parcel examples/md/index.html --open --port 4000 --out-dir dist/md --cache-dir dist/md/.cache",
"example:wysiwyg": "cross-env PARCEL_AUTOINSTALL=false parcel examples/wysiwyg/index.html --open --port 4001 --out-dir dist/wysiwyg --cache-dir dist/wysiwyg/.cache",
"lint": "semistandard --verbose | snazzy",
"lint:fix": "semistandard --verbose --fix | snazzy"
},
"keywords": [
"matterwiki",
"editor",
"wysiwyg",
"markdown"
],
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"author": "Krishna Gopinath (@krishwader)",
"repository": {},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.6",
"cross-env": "^6.0.3",
"install-peers-cli": "^2.1.1",
"lint-staged": "^10.0.0-beta.4",
"modern-node": "^2.5.1",
"ntl": "^5.0.0",
"parcel-bundler": "^1.12.3",
"parcel-plugin-inlinesvg": "^0.1.1",
"semistandard": "^14.2.0",
"snazzy": "^8.0.0",
"styled-components": "^4.4.1"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"is-hotkey": "^0.1.6",
"lodash-es": "^4.17.15",
"prop-types": "^15.7.2",
"react-icons": "^3.8.0",
"react-tiny-popover": "^4.0.0",
"slate": "^0.47.9",
"slate-deep-table": "^0.9.6",
"slate-md-serializer": "^5.4.4",
"slate-plain-serializer": "^0.7.11",
"slate-react": "^0.22.10",
"slate-trailing-block": "^0.5.0"
}
}