forked from unicef/react-org-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "@unicef/react-org-chart",
"version": "0.3.4",
"description": "Simple, high-performance react component for d3 org chart",
"main": "dist/index.js",
"directories": {
"example": "src/examples"
},
"files": [
"dist/index.js"
],
"homepage": "https://unicef.github.io/react-org-chart",
"repository": {
"type": "git",
"url": "git+https://github.com/unicef/react-org-chart.git"
},
"scripts": {
"start": "webpack --watch --mode production",
"build": "webpack --mode production",
"clean": "rimraf dist",
"deploy": "cd examples && npm run deploy"
},
"keywords": [],
"author": "UNICEF, based on work of Fouad Matin <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"faker": "^4.1.0",
"glob": "^7.1.2",
"lodash": "^4.17.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.0"
},
"peerDependencies": {
"d3": ">= 3.x < 4",
"react": ">= 15.x",
"react-dom": ">= 15.x"
},
"babel": {
"presets": [
"env",
"stage-2"
]
},
"dependencies": {
"d3-save-svg": "0.0.2",
"jspdf": "^1.5.3"
}
}