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 8
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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": "@lfai/egeria-ui-core",
"version": "4.3.5",
"description": "Core library that includes generic reactjs components used across the user interface.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/odpi/egeria-ui-core.git"
},
"files": [
"dist"
],
"main": "./dist/esm/main.js",
"module": "./dist/esm/main.js",
"types": "./dist/types/main.d.ts",
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"build:demo": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint .",
"start": "react-scripts start",
"test": "react-scripts test --watchAll=false --passWithNoTests"
},
"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": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/serialize": "^1.1.1",
"@lfai/egeria-js-commons": "4.3.7",
"@mantine/core": "^5.6.3",
"@mantine/hooks": "^5.6.3",
"@mantine/notifications": "^5.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"tabler-icons-react": "^1.51.0",
"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": "^13.5.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.5",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@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"
}
}