forked from strimzi/strimzi-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 6.51 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
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "strimzi-ui",
"private": true,
"version": "0.0.1",
"description": "Strimzi UI provides a way for managing Strimzi and Kafka clusters (+ other components) deployed by it using a graphical user interface.",
"scripts": {
"clean": "rm -rf dist/ && rm -rf js/ && rm -rf .out/ && rm -rf generated/ && rm -rf coverage/ && npx jest --clear-cache",
"start": "npm-run-all --parallel --race start:client start:server start:mockadminserver",
"start:builtserver": "configPath=utils/dev_config/server.e2e.config.js node dist/server/main.js",
"start:client": "webpack serve --config build/webpack.client.dev.js",
"start:server": "configPath=utils/dev_config/server.dev.config.js npm run server",
"start:mockadminserver": "serverName=mockadminserver configPath=utils/dev_config/mockadmin.config.js npm run server",
"start:e2eserver": "npm-run-all --parallel start:builtserver start:mockadminserver",
"server": "npx nodemon --exec 'ts-node -r tsconfig-paths/register --project server/tsconfig.json' server/main.ts",
"build": "webpack --config build/webpack.client.prod.js && webpack --config build/webpack.server.prod.js",
"dockerbuild": "docker build -t strimzi-ui:latest -f ./build/dockerfile .",
"pretest": "npm-run-all --parallel licence:check && prettier --config ./linting/prettier.config.js --check .",
"storybook": "start-storybook --port 6006",
"storybook:build": "build-storybook -o .out",
"test": "npm-run-all test:jest test:e2e",
"test:jest": "npm-run-all \"test:jest:* -- {1}\" --",
"test:jest:client": "jest --collectCoverage --config client/jest.config.js",
"test:jest:server": "jest --collectCoverage --config server/jest.config.js",
"test:e2e": "npm-run-all clean build --parallel --race start:e2eserver cy:closed",
"test:e2e:open": "npm-run-all clean build --parallel --race start:e2eserver cy:open",
"licence:check": "license-check-and-add --f ./linting/license-check-and-add.config.json check",
"licence:add": "license-check-and-add --f ./linting/license-check-and-add.config.json add",
"lint": "npm-run-all 'lint:allfiles -- .' 'lint:src -- .' 'lint:styling -- \"**/*.(s)css\"' 'lint:format -- .'",
"lint:allfiles": "npm-run-all 'licence:add -- {1}' --",
"lint:src": "eslint --config ./linting/eslint.config.js --fix --max-warnings 0 --ignore-path ./linting/.eslintignore",
"lint:styling": "stylelint --config ./linting/stylelint.config.js --fix --max-warnings 0",
"lint:format": "prettier --config ./linting/prettier.config.js --write",
"cy:open": "cypress open --config-file e2e/cypress.json",
"cy:closed": "cypress run --config-file e2e/cypress.json",
"addDevCerts": "./utils/tooling/generateCerts.sh"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/strimzi/strimzi-ui.git"
},
"license": "Apache-2.0",
"bugs": {},
"homepage": "https://github.com/strimzi/strimzi-ui#readme",
"dependencies": {
"@apollo/client": "^3.2.5",
"@apollo/react-hooks": "^4.0.0",
"@walmartlabs/json-to-simple-graphql-schema": "^2.0.3",
"@types/express-session": "^1.17.2",
"apollo-link-http": "^1.5.17",
"apollo-server-express": "^2.18.2",
"compression-webpack-plugin": "^6.0.5",
"css-minimizer-webpack-plugin": "^1.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-static-gzip": "^2.1.0",
"fromentries": "^1.3.2",
"graphql": "^15.4.0",
"helmet": "^4.2.0",
"html-webpack-plugin": "^5.0.0-alpha.14",
"http-proxy": "^1.18.1",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.0.1",
"lodash.get": "^4.4.2",
"lodash.keyby": "^4.6.0",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"mini-css-extract-plugin": "^1.2.1",
"mustache": "^4.0.1",
"pino": "^6.7.0",
"pino-filter": "^1.0.0",
"pino-http": "^5.3.0",
"pino-pretty": "^4.3.0",
"react": "^16.13.1",
"react-i18next": "^11.7.3",
"sass": "^1.29.0",
"subscriptions-transport-ws": "^0.9.18",
"terser-webpack-plugin": "^5.0.0",
"typescript": "^4.0.3",
"uuid": "^8.3.1",
"webpack": "^5.4.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-knobs": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/addon-storysource": "^6.0.28",
"@storybook/react": "^6.0.28",
"@testing-library/dom": "^7.28.1",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.2.2",
"@types/cypress-cucumber-preprocessor": "^4.0.0",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/mustache": "^4.0.1",
"@types/node": "^14.14.6",
"@types/pino": "^6.3.3",
"@types/pino-http": "^5.0.5",
"@types/react-dom": "^16.9.9",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.2.7",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"commitlint": "^11.0.0",
"css-loader": "^5.0.1",
"cypress": "^5.5.0",
"cypress-cucumber-preprocessor": "^4.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-i18next": "^5.0.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-cucumber-fusion": "^0.6.11",
"license-check-and-add": "^3.0.4",
"lint-staged": "^10.5.1",
"mock-socket": "^9.0.3",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"react-test-renderer": "^16.14.0",
"sass-loader": "^10.0.5",
"storybook": "^6.0.28",
"storybook-readme": "^5.0.8",
"style-loader": "^2.0.0",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"supertest": "^6.0.1",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.9",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.2"
}
}