forked from odpi/egeria-ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.27 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
79
80
{
"name": "@lfai/egeria-ui-components",
"version": "4.3.6",
"description": "Encapsulated reactjs components with business logic inside.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/odpi/egeria-ui-components.git"
},
"files": [
"dist",
"src/**/**.scss"
],
"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",
"copy:assets": "cpx 'src/**/**.scss' 'dist/esm/'",
"eject": "react-scripts eject",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"lint": "eslint .",
"postbuild": "npm run copy:assets",
"start": "react-scripts start",
"test": "react-scripts test --watchAll=false --passWithNoTests --transformIgnorePatterns 'node_modules/(?!@lfai)/'"
},
"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",
"@lfai/egeria-ui-core": "^4.3.5",
"@lfai/happi-graph": "^4.3.1",
"@mantine/core": "^5.6.3",
"@mantine/hooks": "^5.6.3",
"@mantine/notifications": "^5.6.4",
"ag-grid-community": "^28.1.1",
"ag-grid-react": "^28.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tabler-icons-react": "1.56.0",
"web-vitals": "3.1.1",
"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.4",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"cpx": "^1.5.0",
"eslint": "^8.39.0",
"node-sass": "^7.0.1",
"react-scripts": "^5.0.1",
"typescript": "^4.8.4"
}
}