forked from kyma-project/busola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
151 lines (151 loc) · 4.94 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
{
"private": true,
"license": "Apache-2.0",
"name": "@kyma-project/busola",
"version": "0.0.1-rc.8",
"scripts": {
"postinstall": "cd backend && npm install",
"start": "concurrently -c cyan,green npm:busola npm:backend",
"busola": "npm run copy-themes; PORT=8080 BROWSER=none GENERATE_SOURCEMAP=false react-app-rewired start",
"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": "react-app-rewired test",
"eject": "react-scripts eject",
"build": "npm run copy-themes; INLINE_RUNTIME_CHUNK=false GENERATE_SOURCEMAP=false react-app-rewired build",
"build:docker": "npm run copy-themes; INLINE_RUNTIME_CHUNK=false GENERATE_SOURCEMAP=false react-app-rewired build --env IS_DOCKER=true",
"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"
}
}
]
},
"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.0-beta.1",
"@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": {
"@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/jest": "^29.1.2",
"@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",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-polyfill": "^6.26.0",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
"enzyme": "^3.10.0",
"enzyme-to-json": "^3.4.0",
"husky": "^2.4.1",
"jest": "^29.7.0",
"jsdom-worker-fix": "^0.1.8",
"lint-staged": "^10.4.0",
"node-sass": "^9.0.0",
"prettier": "^1.18.2",
"react-app-rewired": "^2.2.1",
"react-scripts": "^5.0.0",
"sass-loader": "^13.3.2",
"typescript": "^4.8.4",
"uuid": "^9.0.0"
},
"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"
}
}