-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.75 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
{
"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": "snowpack dev",
"demo:build": "snowpack build"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"tsconfig": "tsconfig.build.json"
}
],
[
"@pika/plugin-build-web"
]
]
},
"dependencies": {
"d3-selection": "^3.0.0",
"d3-hierarchy": "^3.0.1",
"d3-zoom": "^3.0.0",
"d3-shape": "^3.0.1",
"lodash.truncate": "^4.4.2"
},
"devDependencies": {
"@ctrl/eslint-config": "2.0.11",
"@fullhuman/postcss-purgecss": "4.0.3",
"@pika/pack": "0.5.0",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-ts-standard-pkg": "0.9.2",
"@snowpack/plugin-webpack": "3.0.0",
"@types/d3-hierarchy": "3.0.2",
"@types/d3-selection": "3.0.0",
"@types/d3-shape": "3.0.2",
"@types/d3-zoom": "3.0.1",
"@types/lodash.truncate": "4.4.6",
"@types/node": "16.4.10",
"@types/react": "17.0.15",
"eslint-config-xo-react": "0.25.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"performant-array-to-tree": "1.9.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"snowpack": "3.8.3",
"snowpack-plugin-hash": "0.16.0",
"typescript": "4.3.5"
},
"publishConfig": {
"access": "public"
},
"release": {
"branch": "master"
}
}