-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.72 KB
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
{
"name": "hac-infra",
"version": "0.0.1",
"description": "HAC Infrastructure Plugin",
"scripts": {
"analyze": "NODE_ENV=production webpack --config config/prod.webpack.config.js --env analyze=true",
"build": "NODE_ENV=production webpack --config config/prod.webpack.config.js",
"coverage": "jest --coverage --runInBand --detectOpenHandles --forceExit",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:ts": "eslint . --ext .js,.jsx,.ts,.tsx --color",
"lint:ts:fix": "npm run lint:ts -- --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json --allow-empty-input",
"start": "webpack serve --config config/dev.webpack.config.js",
"start:beta": "BETA=true npm start",
"start:federated": "BETA=true fec static --config config/dev.webpack.config.js",
"start:prod": "ENVIRONMENT=prod npm run start",
"start:prod:beta": "ENVIRONMENT=prod npm run start:beta",
"test": "jest",
"verify": "npm-run-all build lint coverage"
},
"dependencies": {
"@patternfly/react-core": "^4.192.15",
"@redhat-cloud-services/frontend-components": "^3.9.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@openshift/dynamic-plugin-sdk": "^1.0.0-alpha16",
"@openshift/dynamic-plugin-sdk-utils": "^1.0.0",
"@openshift/dynamic-plugin-sdk-webpack": "^1.0.0-alpha10",
"@patternfly/react-table": "^4.93.1",
"@patternfly/react-virtualized-extension": "^4.53.2",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.1",
"@redhat-cloud-services/frontend-components-config": "^4.5.6",
"@redhat-cloud-services/frontend-components-config-utilities": "^1.5.9",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/jest-axe": "^3.5.4",
"@types/react": "^17.0.39",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.2",
"jest-axe": "^6.0.0",
"npm-run-all": "4.1.5",
"react-redux": "^7.2.2",
"react-router-dom": "^6.3.0",
"react-virtualized": "^9.22.3",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.19.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-bundle-analyzer": "^4.5.0"
},
"insights": {
"appname": "hac-infra"
},
"license": "Apache-2.0",
"private": true
}