-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
{
"name": "@fortunabmc/retool-org-chart",
"version": "0.2.0",
"private": true,
"description": "Retool Custom Component Wrapper for https://github.com/bumbeishvili/org-chart",
"repository": {
"type": "git",
"url": "https://github.com/fortunabmc/retool-org-chart"
},
"license": "MIT",
"author": {
"name": "Kevin Hill",
"email": "kevin.hill@fortuanbmc.com"
},
"scripts": {
"build": "npx retool-ccl build",
"deploy": "npx retool-ccl deploy",
"dev": "npx retool-ccl dev",
"generate:options": "node ./scripts/manifest-to-markdown.mjs",
"prod": "npm run deploy",
"readme": "node ./scripts/build-readme.mjs",
"start": "npm run dev"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@tryretool/custom-component-support": "latest",
"d3": "^7.9.0",
"d3-org-chart": "^3.1.1",
"mustache": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^5.0.0",
"styled-components": "^6.1.14"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/d3-org-chart": "^3.1.2",
"@types/mustache": "^4.2.5",
"@types/node": "^22.10.5",
"@types/react": "^18.2.55",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"postcss-modules": "^6.0.0",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=20.0.0"
},
"retoolCustomComponentLibraryConfig": {
"name": "ReactOrgChart",
"label": "ReactOrgChart",
"description": "Display a heirarchy of users and managers.",
"entryPoint": "src/index.tsx",
"outputPath": "dist"
}
}