forked from strimzi/strimzi-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 5.66 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
{
"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/",
"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-dev-server --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",
"apollo-link-http": "^1.5.17",
"compression-webpack-plugin": "^4.0.0",
"express": "^4.17.1",
"express-static-gzip": "^2.0.8",
"graphql": "^15.4.0",
"helmet": "^4.1.1",
"html-webpack-plugin": "^4.3.0",
"http-proxy": "^1.18.1",
"lodash.merge": "^4.6.2",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"react": "^16.13.1",
"pino": "^6.7.0",
"pino-filter": "^1.0.0",
"pino-http": "^5.3.0",
"pino-pretty": "^4.3.0",
"sass": "^1.26.10",
"subscriptions-transport-ws": "^0.9.18",
"terser-webpack-plugin": "^3.0.7",
"typescript": "^4.0.3",
"webpack": "^4.43.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.0.22",
"@storybook/addon-essentials": "^6.0.22",
"@storybook/addon-knobs": "^6.0.22",
"@storybook/addon-links": "^6.0.22",
"@storybook/addon-storysource": "^6.0.22",
"@storybook/react": "^6.0.22",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.0.4",
"@types/cypress-cucumber-preprocessor": "^1.14.1",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/pino": "^6.3.2",
"@types/pino-http": "^5.0.5",
"@types/react-dom": "^16.9.9",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"commitlint": "^11.0.0",
"css-loader": "^3.6.0",
"cypress": "^5.3.0",
"cypress-cucumber-preprocessor": "^2.5.5",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jest-cucumber-fusion": "^0.6.11",
"license-check-and-add": "^3.0.4",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"sass-loader": "^9.0.2",
"storybook": "^6.0.22",
"storybook-readme": "^5.0.8",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"supertest": "^5.0.0",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.2"
}
}