forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.06 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
{
"name": "@kyma-project/content-ui",
"private": true,
"license": "Apache-2.0",
"scripts": {
"start": "echo `` > public/config/config.js && PORT=8003 ../node_modules/.bin/react-app-rewired start",
"start:kyma": "npm run copy-config && BROWSER=none HOST=console-dev.kyma.local PORT=8003 ../node_modules/.bin/react-app-rewired start",
"start:kyma:api": "npm run copy-config && REACT_APP_LOCAL_API=true BROWSER=none HOST=console-dev.kyma.local PORT=8003 ../node_modules/.bin/react-app-rewired start",
"build": "REACT_APP_ENV=production ../node_modules/.bin/react-app-rewired build",
"test": "../node_modules/.bin/react-app-rewired test --passWithNoTests --env=jsdom",
"eject": "../node_modules/.bin/react-app-rewired eject",
"type-check": "tsc --noEmit",
"copy-config": "cp ../config.js public/config/config.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}