-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
80 lines (80 loc) · 2.03 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
{
"name": "rc-dock",
"version": "3.3.0",
"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",
"module": "es/index",
"types": "lib/index.d.ts",
"license": "Apache-2.0",
"dependencies": {
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"rc-dropdown": "~4.0.1",
"rc-menu": "~9.8.4",
"rc-new-window": "^0.1.13",
"rc-tabs": "~11.16.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@types/classnames": "^2.3.1",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.9",
"@types/prismjs": "^1.16.6",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/shelljs": "^0.8.11",
"deasync": "0.1.29",
"node-gyp": "^10.1.0",
"parcel": "1.12.4",
"prismjs": "^1.26.0",
"sass": "^1.77.8",
"shelljs": "^0.8.4",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0",
"typedoc": "0.20.37",
"typescript": "4.2.4"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"scripts": {
"example": "parcel example/*.html --open --out-dir temp --no-source-maps --no-hmr",
"build-style": "sass --no-source-map style/index-light.scss dist/rc-dock.css & sass --no-source-map style/index-dark.scss dist/rc-dock-dark.css",
"build-doc": "typedoc",
"build-www": "ts-node tool/build-www",
"build-es": "tsc --module es2020 --outDir ./es",
"build-lib": "tsc --outDir ./lib"
}
}