-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
159 lines (159 loc) · 5.17 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"private": true,
"license": "Apache-2.0",
"name": "@kyma-project/busola",
"version": "0.0.1-rc.8",
"type": "module",
"scripts": {
"postinstall": "cd backend && npm install",
"start": "concurrently -c cyan,green npm:busola npm:backend",
"busola": "npm run copy-themes; BROWSER=none GENERATE_SOURCEMAP=false vite",
"backend": "cd backend && npm run start",
"eslint-check": "eslint src/ backend/",
"lint-check": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --check '**/*.{ts,tsx,js,jsx,json,html,css,yaml,md}'",
"lint-fix": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write '**/*.{ts,tsx,js,jsx,json,html,css,yaml,md}'",
"lint-staged": "lint-staged --concurrent=false",
"test": "vitest",
"build": "npm run copy-themes; INLINE_RUNTIME_CHUNK=false GENERATE_SOURCEMAP=false NODE_OPTIONS=--max-old-space-size=8192 vite build",
"build:docker": "npm run copy-themes; INLINE_RUNTIME_CHUNK=false GENERATE_SOURCEMAP=false NODE_OPTIONS=--max-old-space-size=8192 IS_DOCKER=true vite build",
"copy-themes": "cp node_modules/@sap-theming/theming-base-content/content/Base/baseLib/sap_horizon/css_variables.css public/themes/@sap-theming/default.css; for theme in hcb dark hcw ; do cp node_modules/@sap-theming/theming-base-content/content/Base/baseLib/sap_horizon_$theme/css_variables.css public/themes/@sap-theming/$theme.css ; done"
},
"eslintConfig": {
"extends": "react-app",
"rules": {},
"ignorePatterns": "tests/*",
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"@typescript-eslint/no-unused-vars": "warn"
}
}
],
"globals": {
"vi": "readonly"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"unsafe-perm": true
},
"dependencies": {
"@datasert/cronjs-parser": "^1.1.0",
"@openapi-contrib/openapi-schema-to-json-schema": "^3.1.1",
"@peculiar/x509": "^1.6.0",
"@sap-theming/theming-base-content": "^11.1.28",
"@sentry/react": "^6.17.4",
"@sentry/tracing": "^6.12.0",
"@stoplight/json-ref-resolver": "^3.1.3",
"@types/jsonpath": "^0.2.0",
"@types/pluralize": "^0.0.29",
"@ui-schema/ui-schema": "^0.4.5",
"@ui5/webcomponents": "^1.24.0",
"@ui5/webcomponents-base": "^1.24.0",
"@ui5/webcomponents-fiori": "^1.24.0",
"@ui5/webcomponents-icons": "^1.24.0",
"@ui5/webcomponents-icons-tnt": "^1.24.0",
"@ui5/webcomponents-react": "~1.28.1",
"@ui5/webcomponents-react-base": "^1.28.1",
"@ui5/webcomponents-react-charts": "^1.28.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"core-js": "^3.3.6",
"cronstrue": "^1.114.0",
"didyoumean": "^1.2.2",
"file-saver": "^2.0.2",
"graphviz-react": "^1.2.5",
"http-status-codes": "^2.2.0",
"i18next": "^22.0.4",
"i18next-http-backend": "^1.3.2",
"immutable": "^4.0.0",
"js-yaml": "^4.1.0",
"jsonata": "^1.8.7",
"jsonpath": "^1.1.1",
"jsonschema": "^1.4.1",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.19",
"monaco-editor": "^0.33.0",
"monaco-yaml": "^4.0.4",
"oidc-client-ts": "^2.4.0",
"p-queue": "^7.3.4",
"pako": "^2.0.4",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.18.6",
"react-router-dom": "^6.3.0",
"react-tippy": "^1.4.0",
"recoil": "^0.7.5",
"resize-observer-polyfill": "^1.5.1",
"rfc6902": "^5.0.1",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^12.1.3",
"@types/didyoumean": "^1.2.0",
"@types/enzyme": "^3.10.12",
"@types/file-saver": "^2.0.5",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.186",
"@types/node": "^18.8.5",
"@types/pluralize": "^0.0.29",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^9.0.0",
"@vitejs/plugin-react": "^4.3.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-polyfill": "^6.26.0",
"babel-preset-vite": "^1.1.3",
"concurrently": "^7.6.0",
"enzyme": "^3.10.0",
"enzyme-to-json": "^3.4.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^2.4.1",
"jsdom-worker-fix": "^0.1.8",
"lint-staged": "^10.4.0",
"prettier": "^1.18.2",
"sass": "^1.77.8",
"sass-loader": "^13.3.2",
"typescript": "^4.8.4",
"uuid": "^9.0.0",
"vite": "^5.4.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-static-copy": "^1.0.6",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
},
"lint-staged": {
"src/i18n/*.yaml": "yaml-sort --lineWidth=-1 -i ",
"*.{ts,tsx,js,jsx,json,html,css,scss,yaml,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"overrides": {
"oidc-client-ts": {
"crypto-js": "4.2.0"
},
"d3-color": "^3.1.0"
}
}