-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.96 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.96 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
{
"name": "tree-graph-react",
"author": "xujie <jyoketsu@gmail.com>",
"description": "Tree graph for React / React树状思维导图组件",
"version": "2.4.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jyoketsu/tree-graph-react"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "gh-pages -d storybook-static"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@size-limit/preset-small-lib": "^5.0.1",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.3.4",
"@storybook/addons": "^6.3.4",
"@storybook/react": "^6.3.4",
"@types/lodash": "^4.14.202",
"@types/luxon": "^1.27.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.2",
"gh-pages": "^3.2.3",
"husky": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rollup-plugin-postcss": "^4.0.1",
"size-limit": "^5.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"keywords": [
"react",
"component",
"tree",
"tree-graph",
"tree-menu",
"mind"
],
"dependencies": {
"jspdf": "^2.5.1",
"lodash": "^4.17.21",
"react-tooltip": "^4.2.21",
"screenfull": "^5.1.0",
"tree-graph-react": "file:"
}
}