-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
142 lines (142 loc) · 5.39 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
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"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 generate-cluster-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",
"test-shared-lib": "cd shared && jest",
"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-hosts": "npm run append-host && npm run append-compass-host",
"generate-cluster-config": "[ ! -r .clusterConfig.gen ] && ./scripts/setClusterConfig.sh local || :"
},
"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/react-components": "./components/react",
"@luigi-project/client": "^1.4.0",
"@monaco-editor/react": "^3.6.3",
"@reach/router": "^1.2.1",
"@types/classnames": "^2.2.9",
"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",
"classnames": "^2.2.6",
"click-outside-hook": "^1.1.0",
"constate": "^1.2.0",
"copy-to-clipboard": "^3.2.0",
"core-js": "^3.3.6",
"deep-copy": "^1.4.2",
"deep-equal": "^1.0.1",
"dompurify": "^2.0.17",
"exec-sh": "^0.3.4",
"file-saver": "^2.0.2",
"fiori-fundamentals": "^1.7.1",
"fundamental-react": "0.8.0-rc.12",
"fundamental-styles": "^0.5.0",
"graphql": "^14.5.4",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"merge": "2.1.1",
"moment": "^2.24.0",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"property-expr": "^2.0.4",
"react": "16.12.0",
"react-apollo": "3.0.0",
"react-dom": "16.12.0",
"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",
"ua-parser-js": "^0.7.24"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@types/fundamental-react": "^0.5.0",
"@types/graphql": "^14.2.3",
"@types/jest": "^24.0.23",
"@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": "^5.0.0",
"elliptic": ">=6.5.3",
"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",
"handlebars": "^4.7.3",
"jest": "^24.8.0",
"jsdom-worker-fix": "^0.1.8",
"kind-of": "^6.0.3",
"live-server": "^1.2.1",
"node-sass": "^4.12.0",
"react-app-rewired": "2.1.3",
"react-scripts": "3.4.0",
"react-test-renderer": "^16.9.0",
"swagger-ui-dist": "^3.23.11",
"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": {
"husky": "^2.4.1",
"lerna": "^3.15.0",
"lint-staged": "^10.4.0",
"markdownlint-cli": "^0.17.0",
"prettier": "^1.18.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,html,css,yaml}": [
"prettier --write",
"git add"
],
"**/*.md": [
"markdownlint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}