-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.91 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
{
"name": "frontend-starter-app",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "fec build",
"deploy": "npm-run-all build lint test",
"lint": "eslint --ext js,ts,tsx config src --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"patch:hosts": "fec patch-etc-hosts",
"start": "fec dev",
"test": "jest --verbose",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/react-core": "^4.206.2",
"@patternfly/react-table": "^4.75.2",
"@redhat-cloud-services/frontend-components": "^3.8.12",
"@redhat-cloud-services/frontend-components-notifications": "^3.2.5",
"@redhat-cloud-services/frontend-components-utilities": "^3.2.16",
"@redhat-cloud-services/insights-common-typescript": "^4.12.1",
"@testing-library/dom": "^8.13.0",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"classnames": "^2.3.1",
"eslint-config-prettier": "^8.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.1",
"react-router-dom": "^5.3.0",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.1.1",
"typescript": "^4.6.4"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@redhat-cloud-services/frontend-components-config": "^4.6.11",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "14.1.1",
"@types/jest": "^27.5.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"babel-jest": "^28.0.3",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^8.14.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"insights-common-typescript-dev": "^0.1.21",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"npm-run-all": "^4.1.5",
"prop-types": "^15.8.1",
"stylelint": "^14.8.2",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-scss": "^4.2.0",
"ts-jest": "^28.0.1",
"webpack-bundle-analyzer": "^4.5.0"
},
"insights": {
"appname": "starter"
}
}