-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "@latticehr/react-org-chart",
"version": "0.1.1",
"description": "Simple, high-performance react component for d3 org chart",
"repository": "https://github.com/latticehr/react-org-chart.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",
"deploy": "npm run build-vendor && now",
"deploy-prod": "npm run deploy && now alias"
},
"keywords": [],
"author": "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.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"peerDependencies": {
"d3": ">= 3.x < 4",
"react": ">= 15.x",
"react-dom": ">= 15.x"
},
"babel": {
"presets": [
"env",
"stage-2"
]
}
}