-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
90 lines (90 loc) · 2.87 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
90
{
"name": "awesome-react-org-chart",
"version": "0.0.0-semantic-release",
"description": "Renders large organization charts with multiple compaction/packing techniques to improve readability and accessibility.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15"
},
"dependencies": {
"react-transition-group": "^4.0.0"
},
"files": [
"dist"
],
"keywords": [
"awesome",
"react",
"org",
"chart",
"pack",
"packing",
"compact",
"compaction",
"relationship"
],
"scripts": {
"test": "npx ts-mocha ./spec/**/*.spec.ts",
"start": "node register.js",
"build": "export NODE_ENV=production; npm run build-lib; npm run build-app",
"watch": "export NODE_ENV=development; npx npm-run-all --parallel watch-app watch-lib",
"build-app": "export NODE_ENV=production; rm -r ./public/scripts; npx webpack --config webpack.config.js",
"build-lib": "export NODE_ENV=production; rm -r ./dist; npx tsc",
"watch-app": "export NODE_ENV=development; npx webpack --config webpack.config.js",
"watch-lib": "export NODE_ENV=development; rm -r ./dist; npx tsc-watch"
},
"author": "Mathew Kurian",
"license": "MIT",
"repository": {
"url": "https://github.com/mathew-kurian/awesome-react-org-chart.git"
},
"bugs": {
"url": "https://github.com/mathew-kurian/awesome-react-org-chart/issues"
},
"homepage": "https://github.com/mathew-kurian/awesome-react-org-chart#readme",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/faker": "^4.1.12",
"@types/jquery": "^3.5.1",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-transition-group": "^4.0.0",
"awesome-esbuild-loader": "^1.0.3",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.0",
"css-loader": "^4.2.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^5.0.13",
"mocha": "^8.1.0",
"npm-run-all": "^4.1.5",
"react": "latest",
"react-animation-components": "^3.0.0",
"react-bootstrap": "^1.3.0",
"react-dom": "latest",
"react-fast-grid": "^2.1.7",
"react-icons": "^3.10.0",
"react-jss": "^10.3.0",
"react-transition-group": "^4.0.0",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.8",
"ts-mocha": "^7.0.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}