-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
117 lines (117 loc) · 3.3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "fantasy-editor",
"version": "0.1.3",
"description": "A React Rich Text Editor Based On Slate",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"keywords": [
"editor",
"slate",
"slate-editor",
"react",
"rich",
"text",
"wysiwyg"
],
"homepage": "https://fantasy-editor.jieee.dev",
"bugs": {
"url": "https://github.com/lingjieee/fantasy-editor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lingjieee/fantasy-editor.git"
},
"license": "MIT",
"author": {
"name": "jieee",
"email": "lingjie@jieee.xyz"
},
"scripts": {
"start": "npm run docs:start",
"build": "node ./scripts/build.js",
"docs:start": "dumi dev",
"docs:build": "dumi build && cp CNAME dist/",
"lint": "eslint --cache --ext .ts,.tsx ./src",
"lint:fix": "npm run lint -- --fix",
"pretty-quick": "pretty-quick",
"deploy": "gh-pages -d dist -r git@github.com:lingjieee/fantasy-editor.git"
},
"sideEffects": [
"dist/*",
"es/**/style/*",
"lib/**/style/*",
"*.less"
],
"peerDependencies": {
"antd": ">=4.0.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"@babel/runtime": "^7.10.1",
"@types/escape-html": "^1.0.0",
"antd": "^4.2.5",
"classnames": "^2.2.6",
"escape-html": "^1.0.3",
"immutable": "^4.0.0-rc.12",
"is-hotkey": "^0.1.6",
"is-promise": "^4.0.0",
"lodash": "^4.17.15",
"prismjs": "^1.20.0",
"react-color": "^2.18.1",
"slate": "0.58.1",
"slate-history": "0.58.1",
"slate-react": "0.58.1"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@rollup/plugin-url": "^5.0.0",
"@svgr/rollup": "^5.4.0",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-lodash": "^3.3.4",
"conventional-changelog-cli": "^2.0.31",
"cz-conventional-changelog": "^3.0.2",
"dumi": "^1.0.17",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-unicorn": "^20.1.0",
"gh-pages": "^3.0.0",
"husky": "^4.2.5",
"less": "^3.10.3",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rimraf": "^3.0.0",
"rollup": "^1.24.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-css-bundle": "^1.0.4",
"rollup-plugin-less": "^1.1.2",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"signale": "^1.4.0",
"tscpaths": "^0.0.9",
"typescript": "^3.7.2"
}
}