This repository was archived by the owner on Dec 4, 2023. It is now read-only.
forked from coreseekdev/react-org-chart
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "@keymastervn/react-org-chart-next",
"version": "0.2.1",
"description": "Simple, high-performance react component for d3 org chart",
"repository": "https://github.com/keymastervn/react-org-chart-next.git",
"main": "dist/index.js",
"directories": {
"example": "src/examples"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "webpack --mode production",
"build-vendor": "webpack --mode production --config webpack.vendor.config.js",
"clean": "rimraf dist",
"dev": "npm run build-vendor && webpack-dev-server --mode development --config webpack.dev.config.js"
},
"keywords": [],
"author": "Fouad Matin <m@fouad.org>",
"license": "MIT",
"dependencies": {
"d3": "^3.5.17"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"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.37.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.1.0"
},
"peerDependencies": {
"d3": ">= 3.x < 4",
"react": ">= 15.x",
"react-dom": ">= 15.x"
}
}