This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.98 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
{
"name": "@kyma-project/compass-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@asyncapi/converter": "^0.6.1",
"@luigi-project/core": "1.19.0",
"@luigi-project/plugin-auth-oidc": "1.19.0",
"axios": "^0.24.0",
"file-saver": "^2.0.5",
"jsoneditor": "^9.5.5",
"jwt-decode": "^3.1.2",
"react-ace": "^7.0.5",
"react-infinite-scroll-component": "^6.1.0",
"sanitize-html": "2.7.1",
"xml-js": "^1.6.11"
},
"scripts": {
"start-live-server": "../node_modules/.bin/live-server --host=${REACT_APP_localDomain} --quiet --entry-file=index.html --mount=/luigi-core:./node_modules/@luigi-project/core public-luigi/",
"start": ". ../scripts/load-cluster-config.sh && ../node_modules/.bin/concurrently \"PORT=8888 ../node_modules/.bin/react-scripts start\" \"npm run buildConfig:watch\" \"../node_modules/.bin/wait-on http://localhost:8888/ && npm run start-live-server\" ",
"start:kyma": "echo 'This component is not ready yet to be served together with Console.'",
"start:kyma:api": "echo 'This component is not ready yet to be served together with Console.'",
"build": "npm run buildConfig && ../node_modules/.bin/react-scripts build && ncp 'node_modules/@luigi-project/core' 'public-luigi/luigi-core'",
"test": "../node_modules/.bin/react-scripts test",
"test-ci": "CI=true npm run test",
"eject": "../node_modules/.bin/react-scripts eject",
"buildConfig": "../node_modules/.bin/webpack --mode production --config webpack-generateConfig.config",
"buildConfig:watch": "../node_modules/.bin/webpack -d --config webpack-generateConfig.config --watch"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"json-loader": "^0.5.7",
"ncp": "^2.0.0",
"node-fetch": "^2.6.1"
},
"config": {
"unsafe-perm": true
}
}