forked from provectus/kafka-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.65 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
{
"name": "kafka-ui",
"version": "0.4.0",
"homepage": "./",
"private": true,
"dependencies": {
"@floating-ui/react": "^0.19.2",
"@fontsource/inter": "^4.5.15",
"@fontsource/roboto-mono": "^4.5.10",
"@hookform/error-message": "^2.0.0",
"@hookform/resolvers": "^2.7.1",
"@microsoft/fetch-event-source": "^2.0.1",
"@reduxjs/toolkit": "^1.8.3",
"@szhsin/react-menu": "^3.1.1",
"@tanstack/react-query": "^4.0.5",
"@tanstack/react-table": "^8.5.10",
"@testing-library/react": "^14.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"ace-builds": "^1.7.1",
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"classnames": "^2.2.6",
"fetch-mock": "^9.11.0",
"jest": "29.5.0",
"jest-watch-typeahead": "^2.2.2",
"json-schema-faker": "^0.5.0-rcv.44",
"jsonpath-plus": "^7.2.0",
"lodash": "^4.17.21",
"pretty-ms": "7.0.1",
"react": "^18.1.0",
"react-ace": "^10.1.0",
"react-datepicker": "^4.10.0",
"react-dom": "^18.1.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "7.43.1",
"react-hot-toast": "^2.4.0",
"react-is": "^18.2.0",
"react-multi-select-component": "^4.3.3",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"sass": "^1.52.3",
"styled-components": "^5.3.1",
"use-debounce": "^9.0.3",
"vite": "^4.0.0",
"vite-tsconfig-paths": "^4.0.2",
"whatwg-fetch": "^3.6.2",
"yup": "^1.0.0",
"zustand": "^4.1.1"
},
"scripts": {
"start": "vite",
"dev": "vite",
"gen:sources": "rimraf src/generated-sources && openapi-generator-cli generate",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .tsx,.ts src/",
"lint:fix": "eslint --ext .tsx,.ts src/ --fix",
"lint:CI": "eslint --ext .tsx,.ts src/ --max-warnings=0",
"test": "jest --watch",
"test:coverage": "jest --watchAll --coverage",
"test:CI": "CI=true pnpm test:coverage --ci --testResultsProcessor=\"jest-sonar-reporter\" --watchAll=false",
"tsc": "tsc --pretty --noEmit",
"deadcode": "ts-prune -i src/generated-sources"
},
"devDependencies": {
"@jest/types": "^29.4.3",
"@openapitools/openapi-generator-cli": "^2.5.2",
"@swc/core": "^1.3.36",
"@swc/jest": "^0.2.24",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/eventsource": "^1.1.8",
"@types/lodash": "^4.14.172",
"@types/node": "^16.4.13",
"@types/react": "^18.0.9",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^18.0.3",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.13",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"dotenv": "^16.0.1",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.2.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.5.0",
"jest-environment-jsdom": "^29.4.3",
"jest-sonar-reporter": "^2.0.0",
"jest-styled-components": "^7.1.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"typescript": "^4.7.4",
"vite-plugin-ejs": "^1.6.4"
},
"engines": {
"node": "v16.15.0",
"pnpm": "^7.4.0"
}
}