This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2 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
{
"name": "@lfai/happi-graph",
"version": "4.3.1",
"description": "Generic graph rendering solution.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/odpi/happi-graph.git"
},
"files": [
"dist",
"src/components/HappiGraph/happi-graph.scss"
],
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"start": "react-scripts start",
"build:demo": "react-scripts build",
"build": "tsc -p tsconfig.lib.json",
"lint": "eslint .",
"test": "react-scripts test --watchAll=false --passWithNoTests",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@capaj/pluralize": "1.0.4",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/serialize": "^1.1.1",
"@lfai/egeria-js-commons": "^4.3.1",
"@mantine/core": "^5.6.3",
"@mantine/hooks": "^5.6.3",
"d3": "7.6.1",
"elkjs": "^0.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"vis-network": "^9.1.2",
"web-vitals": "3.1.0",
"web-worker": "1.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/d3": "^7.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/uuid": "^8.3.4",
"@types/vis": "^4.21.24",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"node-sass": "^7.0.1",
"react-scripts": "^5.0.1",
"typescript": "^4.8.4"
}
}