-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.63 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
{
"name": "acs",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "fec build",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:js": "eslint config src",
"lint:js:fix": "eslint config src --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"patch:hosts": "fec patch-etc-hosts",
"start": "HOT=true fec dev",
"start:mock-server": "NODE_OPTIONS='--max-http-header-size=100000' node mocks/db.server.js",
"test": "jest",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/react-core": "^5.1.0",
"@patternfly/react-table": "^5.1.0",
"@redhat-cloud-services/frontend-components": "^4.0.0",
"@redhat-cloud-services/frontend-components-notifications": "^4.0.0",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.0",
"classnames": "^2.3.1",
"json-server": "^0.17.0",
"qs": "^6.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-redux": "7.2.9",
"react-router-dom": "^6.3.0",
"redux": "4.2.0",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "7.14.0",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "^7.17.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.6",
"@redhat-cloud-services/frontend-components-config": "^6.2.3",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.4",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "27.0.5",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "8.18.0",
"identity-obj-proxy": "3.0.0",
"jest": "^27.0.5",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"rimraf": "^3.0.2",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.19.0",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2",
"webpack-bundle-analyzer": "4.4.2"
},
"insights": {
"appname": "acs"
}
}