-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
89 lines (89 loc) · 2.26 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
{
"name": "react-organizational-chart",
"version": "2.2.1",
"description": "Simple react hierarchy tree - any React children accepted for nodes",
"author": "daniel-hauser",
"license": "MIT",
"homepage": "https://daniel-hauser.github.io/react-organizational-chart",
"repository": "daniel-hauser/react-organizational-chart",
"main": "dist/index.js",
"source": "src/index.tsx",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"test": "jest ./src",
"test:watch": "jest ./src --watch",
"build": "microbundle build --jsx React.createElement --external react",
"start": "microbundle watch",
"prepare": "npm run build",
"prettier": "prettier --write 'src/**/*.ts[x]'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --docs"
},
"dependencies": {
"@emotion/css": "^11.7.1"
},
"peerDependencies": {
"react": ">= 16.12.0",
"react-dom": ">= 16.12.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@storybook/addon-actions": "^6.4.13",
"@storybook/addon-essentials": "^6.4.13",
"@storybook/addon-links": "^6.4.13",
"@storybook/react": "^6.4.13",
"@testing-library/react": "^11.2.7",
"@types/jest": "^25.1.1",
"@types/react": "^18.0.20",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"gh-pages": "^2.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-emotion": "^10.0.27",
"microbundle": "^0.13.3",
"prettier": "^2.5.1",
"pretty-quick": "^2.0.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"typescript": "^3.9.10"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
},
"prettier": {
"printWidth": 80,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"react",
"organizational",
"organizational-chart",
"react-organizational-chart",
"org-chart",
"react-org-chart",
"tree",
"family",
"family-tree"
],
"files": [
"dist"
]
}