forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 5.48 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"private": true,
"license": "Apache-2.0",
"scripts": {
"bootstrap": "npm install && npm run install:libraries && npm run build:libraries && npm run install:apps && npm run append-hosts && npm run git-ignore-config",
"bootstrap:ci": "npm ci && npm run ci:libraries && npm run build:libraries",
"bootstrap:prod": "npm ci && npm run ci:libraries && npm run build:libraries",
"install:libraries": "gulp install:libraries",
"ci:libraries": "gulp ci:libraries",
"build:libraries": "gulp build:libraries",
"watch:libraries": "gulp watch:libraries",
"install:apps": "gulp install:apps",
"start": "./scripts/pre-start-warning.sh && lerna exec --parallel -- npm run start:kyma",
"start:api": "./scripts/pre-start-warning.sh && lerna exec --parallel -- npm run start:kyma:api",
"lint-check": "tslint -c ./tslint.json --project tsconfig.base.json --format verbose && prettier --config ./.prettierrc --ignore-path ./.prettierignore --check '**/*.{ts,tsx,js,jsx,json,html,css,yaml}'",
"lint-fix": "tslint -c ./tslint.json --project tsconfig.base.json --format verbose --fix && prettier --config ./.prettierrc --ignore-path ./.prettierignore --write '**/*.{ts,tsx,js,jsx,json,html,css,yaml}'",
"conflict-check": "tslint-config-prettier-check ./tslint.json",
"markdownlint": "markdownlint **/*.md",
"lint-staged": "lint-staged",
"git-ignore-config": "git update-index --assume-unchanged core/src/assets/config/config.js lambda/src/assets/config/config.js service-catalog-ui/catalog/public/config/config.js service-catalog-ui/instances/public/config/config.js service-catalog-ui/brokers/public/config/config.js content/public/config/config.js logging/public/config/config.js add-ons/public/config/config.js core-ui/public/config/config.js",
"append-host": "grep -qF '127.0.0.1 console-dev.kyma.local' '/etc/hosts' || (echo 'append: 127.0.0.1 console-dev.kyma.local >> /etc/hosts' && echo '127.0.0.1 console-dev.kyma.local' | sudo tee -a /etc/hosts > /dev/null)",
"append-compass-host": "grep -qF '127.0.0.1 compass-dev.kyma.local' '/etc/hosts' || (echo 'append: 127.0.0.1 compass-dev.kyma.local >> /etc/hosts' && echo '127.0.0.1 compass-dev.kyma.local' | sudo tee -a /etc/hosts > /dev/null)",
"append-host-ui-test": "sudo sed -i '' \"/ui-test-exposed-api.kyma.local/d\" '/etc/hosts' && (echo 'append: $(minikube ip) ui-test-exposed-api.kyma.local >> /etc/hosts' && echo $(minikube ip) ui-test-exposed-api.kyma.local | sudo tee -a /etc/hosts > /dev/null)",
"append-hosts": "npm run append-host && npm run append-host-ui-test && npm run append-compass-host"
},
"dependencies": {
"@apollo/react-hooks": "3.0.0",
"@apollo/react-testing": "^3.1.2",
"@kyma-project/common": "./common",
"@kyma-project/components": "./components/shared",
"@kyma-project/generic-documentation": "./components/generic-documentation",
"@kyma-project/luigi-client": "^0.6.3",
"@kyma-project/react-components": "./components/react",
"@reach/router": "^1.2.1",
"ajv": "^6.10.2",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-client-transform": "^0.1.0",
"apollo-link-context": "^1.0.18",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"apollo-link-state": "^0.4.2",
"apollo-utilities": "^1.3.2",
"click-outside-hook": "^1.1.0",
"constate": "^1.2.0",
"deep-copy": "^1.4.2",
"deep-equal": "^1.0.1",
"enzyme-to-json": "^3.4.0",
"fiori-fundamentals": "^1.7.1",
"fundamental-react": "^0.6.1",
"fundamental-styles": "^0.2.0",
"graphql": "^14.5.4",
"graphql-tag": "^2.10.1",
"lodash.clonedeep": "^4.5.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-apollo": "2.5.8",
"react-dom": "^16.8.6",
"react-moment": "^0.7.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-sticky": "^6.0.3",
"recompose": "^0.30.0",
"styled-components": "4.3.2",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@types/fundamental-react": "^0.5.0",
"@types/graphql": "^14.2.3",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/react-sticky": "^6.0.3",
"@types/styled-components": "^4.1.16",
"cli-color": "^1.4.0",
"concurrently": "^4.1.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.1",
"gulp-clean": "^0.4.0",
"gulp-watch": "^5.0.1",
"jest": "^24.8.0",
"jsdom-worker-fix": "^0.1.8",
"live-server": "^1.2.1",
"node-sass": "^4.12.0",
"react-app-rewired": "2.1.3",
"react-scripts": "^3.1.0",
"react-test-renderer": "^16.9.0",
"tslib": "^1.10.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "^2.1.1",
"typescript": "^3.5.3",
"waait": "^1.0.5",
"wait-on": "^3.3.0",
"webpack-cli": "^3.3.5"
},
"optionalDependencies": {
"lint-staged": "^8.2.1",
"husky": "^2.4.1",
"lerna": "^3.15.0",
"markdownlint-cli": "^0.17.0",
"prettier": "^1.18.2"
},
"lint-staged": {
"linters": {
"**/*.{ts,tsx,js,jsx,json,html,css,yaml}": [
"prettier --write",
"git add"
],
"**/*.md": [
"markdownlint"
]
},
"ignore": [
"package.json",
"package-lock.json"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}