forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.58 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": "catalog-ui",
"description": "Catalog UI",
"version": "0.7.0",
"private": true,
"dependencies": {
"@kyma-project/react-components": "0.0.39",
"@kyma-project/luigi-client": "0.3.2",
"ajv": "^6.0.0",
"apollo-boost": "^0.1.3",
"deep-copy": "^1.4.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"graphql": "^0.13.2",
"graphql-tag": "^2.8.0",
"moment": "^2.22.0",
"prop-types": "^15.6.2",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-app-rewired": "^1.5.2",
"react-dom": "^16.2.0",
"react-jsonschema-form": "^1.0.3",
"react-modal": "^3.4.1",
"react-moment": "^0.7.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"styled-components": "^3.3.3",
"styled-components-grid": "^2.1.0",
"swagger-ui-dist": "^3.17.3"
},
"devDependencies": {
"mkdirp": "^0.5.1",
"safe-buffer": "5.1.2"
},
"scripts": {
"start": "echo `` > public/config/config.js && PORT=8000 react-app-rewired start",
"start:kyma": "npm run copy-config && BROWSER=none HOST=console-dev.kyma.local PORT=8000 react-app-rewired start",
"start:kyma:api": "npm run copy-config && REACT_APP_LOCAL_API=true BROWSER=none HOST=console-dev.kyma.local PORT=8000 react-app-rewired start",
"build": "REACT_APP_ENV=production react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"copy-config": "cp ../config.js public/config/config.js",
"analyze": "source-map-explorer build/static/js/main.*"
}
}