forked from scttcper/react-orgchart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
{
"name": "@ctrl/react-orgchart",
"version": "0.0.0-placeholder",
"description": "Vx orgchart module",
"author": "Scott Cooper <[email protected]>",
"license": "MIT",
"repository": "scttcper/react-orgchart",
"sideEffects": false,
"keywords": [
"org chart"
],
"scripts": {
"lint": "eslint --ext .js,.ts, .",
"lint:fix": "eslint --fix --ext .js,.ts, .",
"prepare": "npm run build",
"build": "pika build",
"demo:watch": "parcel serve demo/index.html --open",
"demo:build": "parcel build demo/index.html",
"test": "jest",
"test:update": "jest --update-snapshot",
"test:watch": "jest --watch",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"tsconfig": "tsconfig.build.json"
}
],
[
"@pika/plugin-build-web"
]
]
},
"dependencies": {
"d3-selection": "^2.0.0",
"d3-hierarchy": "^2.0.0",
"d3-zoom": "^2.0.0",
"d3-shape": "^2.0.0",
"lodash.truncate": "^4.4.2"
},
"devDependencies": {
"@ctrl/eslint-config": "1.2.6",
"@fullhuman/postcss-purgecss": "3.0.0",
"@pika/pack": "0.5.0",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-ts-standard-pkg": "0.9.2",
"@testing-library/jest-dom": "5.11.5",
"@testing-library/react": "11.1.1",
"@types/d3-selection": "2.0.0",
"@types/d3-hierarchy": "2.0.0",
"@types/d3-zoom": "2.0.0",
"@types/d3-shape": "2.0.0",
"@types/node": "14.14.6",
"@types/react": "16.9.55",
"@types/lodash.truncate": "4.4.6",
"eslint-config-xo-react": "0.23.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"parcel": "1.12.4",
"performant-array-to-tree": "1.7.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"typescript": "4.0.5"
},
"publishConfig": { "registry": "https://npm.pkg.github.com/" }
"release": {
"branch": "master"
}
}