-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "logging",
"version": "0.1.0",
"private": true,
"dependencies": {
"lodash": "^4.17.21"
},
"scripts": {
"start": "PORT=8005 react-scripts start",
"start:kyma": ". ../scripts/load-cluster-config.sh && BROWSER=none HOST=console-dev.kyma.local PORT=8005 react-scripts start",
"start:kyma:api": ". ../scripts/load-cluster-config.sh && REACT_APP_LOCAL_API=true BROWSER=none HOST=console-dev.kyma.local PORT=8005 react-scripts start",
"build": "INLINE_RUNTIME_CHUNK=false ../node_modules/.bin/react-scripts build",
"test": "../node_modules/.bin/react-scripts test",
"eject": "../node_modules/.bin/react-scripts eject"
},
"devDependencies": {
"enzyme-to-json": "^3.4.0",
"jsdom-worker-fix": "^0.1.8",
"live-server": "^1.2.1",
"ncp": "^2.0.0",
"node-fetch": "^2.6.1",
"react-test-renderer": "^16.8.6",
"waait": "^1.0.5",
"wait-on": "^3.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}