forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.85 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.85 KB
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
{
"name": "brokers-ui",
"description": "Brokers UI",
"version": "0.5.0",
"private": true,
"dependencies": {
"@kyma-project/luigi-client": "0.4.4",
"@kyma-project/react-components": "0.0.43",
"ajv": "^6.0.0",
"apollo-cache-inmemory": "^1.3.7",
"apollo-client": "^2.4.4",
"apollo-client-transform": "^0.1.0",
"apollo-link": "^1.2.3",
"apollo-link-context": "^1.0.9",
"apollo-link-error": "^1.1.7",
"apollo-link-http": "^1.5.5",
"apollo-link-state": "^0.4.2",
"apollo-utilities": "^1.0.24",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"moment": "^2.22.2",
"react": "^16.7.0",
"react-apollo": "^2.2.4",
"react-dom": "^16.3.1",
"react-modal": "^3.4.1",
"react-moment": "^0.7.0",
"react-router": "^4.2.0",
"react-router-dom": "4.2.2",
"styled-components": "^3.3.3",
"styled-components-grid": "^2.1.0",
"swagger-ui-dist": "^3.13.4"
},
"devDependencies": {
"mkdirp": "^0.5.1",
"react-app-rewired": "^2.0.1",
"react-scripts": "^2.1.3",
"safe-buffer": "5.1.2",
"source-map-explorer": "^1.6.0"
},
"scripts": {
"start": "echo `` > public/config/config.js && PORT=8002 react-app-rewired start",
"start:kyma": "npm run copy-config && BROWSER=none HOST=console-dev.kyma.local PORT=8002 react-app-rewired start",
"start:kyma:api": "npm run copy-config && REACT_APP_LOCAL_API=true BROWSER=none HOST=console-dev.kyma.local PORT=8002 react-app-rewired start",
"build": "REACT_APP_ENV=production react-app-rewired build",
"test": "react-app-rewired test --passWithNoTests --env=jsdom",
"eject": "react-app-rewired eject",
"copy-config": "cp ../config.js public/config/config.js",
"analyze": "source-map-explorer build/static/js/main.*"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}