forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.85 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
{
"name": "@kyma-project/compass-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@luigi-project/core": "1.2.3",
"@luigi-project/plugin-auth-oidc": "1.2.3",
"asyncapi-converter": "^0.4.2",
"file-saver": "^1.3.8",
"jsoneditor": "^9.5.6",
"lodash": "^4.17.21",
"react-ace": "^7.0.4",
"sanitize-html": "^1.22.1",
"xml-js": "^1.6.11"
},
"scripts": {
"start-live-server": "../node_modules/.bin/live-server --host=compass-dev.${REACT_APP_domain} --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": "echo 'Compass unit tests are disabled'",
"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": {
"ncp": "^2.0.0",
"node-fetch": "^2.6.1"
},
"config": {
"unsafe-perm": true
}
}