-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.18 KB
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
{
"name": "ui",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "PORT=3001 HTTPS=true NODE_OPTIONS=--openssl-legacy-provider EXTEND_ESLINT=true vite",
"build": "NODE_OPTIONS=--openssl-legacy-provider EXTEND_ESLINT=true vite build",
"test": "echo 'Someone should write some tests'",
"lint-check": "npm-run-all lint-check:*",
"lint-check:non-src": "prettier --check '**/*.{md,css,json}'",
"lint-check:src": "eslint --ext .js,.jsx,.ts,.tsx ./",
"lint": "npm-run-all lint:*",
"lint:non-src": "prettier --write '**/*.{md,css,json}'",
"lint:src": "yarn lint-check:src --fix",
"gen:src": "./scripts/generate-client.sh"
},
"dependencies": {
"@patternfly/patternfly": "^6.1.0",
"@patternfly/react-core": "^6.0.0",
"@patternfly/react-icons": "^6.0.0",
"@tanstack/react-query": "^5.66.9",
"axios": "^0.21.4",
"eslint": "^7.11.0",
"formik": "^2.4.2",
"history": "^5.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"random-words": "^2.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.0",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.29.0",
"yup": "^1.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.1",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.195",
"@types/node": "^24.9.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.14",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prettier": "^3.4.1",
"http-proxy-middleware": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"typescript": "~5.1.6",
"vite": "^6.1.0",
"vite-tsconfig-paths": "^4.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}