forked from ticlo/rc-dock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.76 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
{
"name": "rc-dock",
"version": "3.0.2",
"description": "dock layout for react component",
"repository": {
"type": "git",
"url": "https://github.com/ticlo/rc-dock.git"
},
"keywords": [
"react",
"layout",
"dock",
"panel",
"tabs",
"drag-and-drop",
"float",
"window",
"drag",
"drop",
"reactjs",
"react-dom"
],
"author": {
"name": "Rick Zhou",
"email": "[email protected]"
},
"main": "lib/index.js",
"license": "Apache-2.0",
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.20",
"rc-dropdown": "^3.2.0",
"rc-menu": "^8.10.5",
"rc-new-window": "^0.1.4",
"rc-tabs": "^11.7.3"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@types/classnames": "^2.2.11",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.25",
"@types/prismjs": "^1.16.2",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/shelljs": "^0.8.8",
"less": "^4.1.1",
"parcel": "^1.12.4",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0",
"typedoc": "^0.20.23",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"resolutions": {
"**/marked": "^2.0.0",
"**/minimist": "^1.2.5",
"**/node-forge": "^0.10.0"
},
"scripts": {
"example": "parcel example/*.html --open --out-dir temp --no-source-maps --no-hmr",
"build-less": "lessc style/index.less dist/rc-dock.css",
"build-doc": "typedoc",
"build-www": "ts-node tool/build-www"
}
}