forked from kaoto-archive/kaoto-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 4.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "kaoto-ui",
"version": "0.1.0",
"private": true,
"federatedModuleName": "kaoto",
"engines": {
"node": ">=14.x"
},
"scripts": {
"start": "webpack serve --mode development --hot --progress --config webpack.dev.js ",
"prod": "webpack serve --mode production --port 8080 --allowed-hosts all --progress --config webpack.prod.js ",
"build": "webpack --mode production --config webpack.prod.js",
"build-storybook": "build-storybook -s public",
"chromatic": "npx chromatic",
"clean": "rimraf dist",
"e2e": "cypress open",
"e2e:headless": "cypress run",
"format": "prettier --check 'src'",
"format:fix": "prettier --write --ignore-unknown 'src'",
"lint": "eslint --ext .ts,.tsx,.js ./src",
"lint:fix": "yarn lint --fix",
"lint-staged": "yarn lint:fix && yarn format:fix",
"storybook": "start-storybook -p 6006 -s public",
"test": "jest src/**/*.test.ts*",
"test:coverage": "jest --coverage --watchAll=false",
"test:watch": "jest --watch"
},
"dependencies": {
"@patternfly/patternfly": "4.196.7",
"@patternfly/react-code-editor": "^4.62.3",
"@patternfly/react-core": "4.221.3",
"@patternfly/react-icons": "4.72.3",
"@rhoas/app-services-ui-shared": "^0.16.0",
"ajv": "^8.8.2",
"monaco-editor": "^0.33.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-error-boundary": "3.1.4",
"react-flow-renderer": "10.3.6",
"react-monaco-editor": "^0.48.0",
"react-router-dom": "5.3.3",
"react-router-last-location": "2.0.1",
"react-shadow": "19.0.3",
"uniforms": "^3.6.2",
"uniforms-bridge-json-schema": "^3.9.1",
"uniforms-patternfly": "^4.7.5",
"use-debounce": "8.0.1",
"uuid": "8.3.2",
"web-vitals": "2.1.4"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.0",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/node-logger": "^6.5.8",
"@storybook/react": "^6.5.9",
"@testing-library/dom": "^8.14.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.2.1",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.44",
"@types/react-dom": "18.0.3",
"@types/react-router-dom": "5.3.3",
"@types/testing-library__jest-dom": "5.14.5",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "5.29.0",
"chromatic": "^6.6.3",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^4.0.0",
"cypress": "9.7.0",
"dotenv-webpack": "7.1.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "4.0.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "5.5.1",
"file-loader": "^6.2.0",
"file-selector": "^0.6.0",
"html-webpack-plugin": "5.5.0",
"jest": "27.5.1",
"jest-environment-jsdom": "^27.5.1",
"lint-staged": "12.4.3",
"mini-css-extract-plugin": "2.6.1",
"null-loader": "^4.0.1",
"prettier": "2.7.1",
"prop-types": "15.8.1",
"rimraf": "3.0.2",
"source-map-loader": "4.0.0",
"style-loader": "3.3.1",
"ts-jest": "27.1.4",
"ts-loader": "9.3.0",
"tsconfig-paths-webpack-plugin": "3.5.2",
"tslib": "^2.3.1",
"typescript": "4.4.4",
"url-loader": "4.1.1",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.2",
"webpack-merge": "^5.8.0",
"whatwg-fetch": "^3.6.2",
"yaml-loader": "0.8.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{tsx,ts}": "prettier --write",
"*.tsx": "eslint --ext .tsx"
},
"resolutions": {
"@types/react": "17.0.44"
}
}