generated from RedHatInsights/frontend-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
116 lines (116 loc) · 3.75 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
{
"name": "tasks-frontend",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"sassIncludes": {
"patternfly": "node_modules/patternfly/dist/sass",
"bootstrap": "node_modules/patternfly/node_modules/bootstrap-sass/assets/stylesheets",
"fontAwesome": "node_modules/patternfly/node_modules/font-awesome-sass/assets/stylesheets"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.js",
"!<rootDir>/src/**/index.js",
"!<rootDir>/src/**/stories/*",
"!<rootDir>/src/*.js",
"!<rootDir>/src/**/__fixtures__/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/.+fixtures.+"
],
"setupFilesAfterEnv": [
"<rootDir>/config/setupTests.js",
"jest-canvas-mock"
],
"roots": [
"<rootDir>/src/"
],
"transformIgnorePatterns": [],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"testEnvironment": "jsdom",
"moduleDirectories": [
"node_modules",
"./src"
]
},
"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": "curl -sSL https://raw.githubusercontent.com/RedHatInsights/insights-proxy/master/scripts/patch-etc-hosts.sh -o - | sudo sh -",
"start": "fec dev",
"start:proxy": "PROXY=true fec dev",
"test": "jest --verbose --env=jsdom",
"travis:build": "NODE_ENV=production fec build",
"verify": "npm-run-all build lint test",
"postinstall": "ts-patch install"
},
"dependencies": {
"@patternfly/react-core": "^5.4.0",
"@patternfly/react-icons": "5.4.1",
"@patternfly/react-log-viewer": "^5.3.0",
"@patternfly/react-table": "^5.4.3",
"@patternfly/react-tokens": "^5.4.0",
"@redhat-cloud-services/frontend-components": "^4.2.15",
"@redhat-cloud-services/frontend-components-notifications": "^4.1.0",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.17",
"@unleash/proxy-client-react": "^4.2.2",
"axios": "^0.27.0",
"classnames": "^2.3.1",
"jest-canvas-mock": "^2.5.2",
"moment": "2.30.1",
"p-all": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.7",
"react-redux": "^7.2.9",
"react-router-dom": "^6.26.1",
"redux": "^4.2.0",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.2.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.3",
"@redhat-cloud-services/frontend-components-config": "^6.3.1",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.16",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "29.7.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "8.57.0",
"eslint-loader": "4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "4.1.5",
"prop-types": "15.8.1",
"redux-mock-store": "^1.5.4",
"stylelint": "14.6.1",
"stylelint-config-recommended-scss": "6.0.0",
"stylelint-scss": "4.2.0",
"ts-patch": "^3.2.1",
"typescript": "^5.5.3",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "tasks"
}
}