forked from RedHatInsights/insights-advisor-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.9 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
130
131
132
{
"name": "advisor-frontend",
"version": "2.0.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/RedHatInsights/insights-advisor-frontend.git"
},
"license": "Apache-2.0",
"author": "Red Hat",
"scripts": {
"analyze": "NODE_ENV=production webpack --config config/dev.webpack.config.js --env.prod=true --env.analyze=true --mode production",
"build": "webpack --config config/prod.webpack.config.js",
"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",
"nightly": "npm run travis:verify",
"prod": "NODE_ENV=production webpack serve --config config/dev.webpack.config.js",
"server:ctr": "node src/server/generateServerKey.js",
"start:beta": "NODE_ENV=development PROXY=true BETA=true webpack serve --config config/dev.webpack.config.js",
"start": "NODE_ENV=development webpack serve --config config/dev.webpack.config.js",
"start:proxy": "NODE_ENV=development PROXY=true webpack serve --config config/dev.webpack.config.js",
"test": "jest --verbose --passWithNoTests",
"translations": "npm-run-all translations:*",
"translations:extract": "npx formatjs extract ./src/*.js --out-file ./build/messages/src/Messages.json",
"translations:compile": "npx formatjs compile ./build/messages/src/Messages.json --out-file ./locales/translations.json",
"translations:datafile": "node scripts/createDataJson.js",
"travis:build": "NODE_ENV=production webpack --config config/prod.webpack.config.js",
"travis:verify": "npm-run-all travis:build lint test",
"verify": "npm-run-all build lint test"
},
"sassIncludes": {
"patternfly": "node_modules/patternfly/dist/sass"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/stories/*"
],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"roots": [
"<rootDir>/src/"
],
"setupFiles": [
"<rootDir>/config/setupTests.js"
]
},
"dependencies": {
"@babel/runtime": "7.15.4",
"@patternfly/patternfly": "4.132.2",
"@patternfly/react-core": "4.152.4",
"@patternfly/react-icons": "4.11.14",
"@patternfly/react-table": "4.29.58",
"@patternfly/react-tokens": "4.12.15",
"@react-pdf/renderer": "2.0.19",
"@redhat-cloud-services/frontend-components": "3.4.1",
"@redhat-cloud-services/frontend-components-charts": "3.2.1",
"@redhat-cloud-services/frontend-components-notifications": "3.2.4",
"@redhat-cloud-services/frontend-components-pdf-generator": "2.6.7",
"@redhat-cloud-services/frontend-components-remediations": "3.2.7",
"@redhat-cloud-services/frontend-components-translations": "3.2.3",
"@redhat-cloud-services/frontend-components-utilities": "3.2.3",
"@reduxjs/toolkit": "1.6.1",
"classnames": "2.3.1",
"dot": "1.1.3",
"marked": "3.0.3",
"react": "17.0.2",
"react-content-loader": "6.0.3",
"react-dom": "17.0.2",
"react-intl": "5.20.10",
"react-markdown": "7.0.1",
"react-redux": "7.2.5",
"react-router-dom": "5.3.0",
"redux": "4.1.1",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-decorators": "7.15.4",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-async-to-generator": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.4",
"@babel/preset-flow": "7.14.5",
"@babel/preset-react": "7.14.5",
"@formatjs/cli": "4.2.33",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "1.2.1",
"@redhat-cloud-services/frontend-components-config": "4.3.5",
"axios": "0.21.4",
"babel-eslint": "10.1.0",
"babel-jest": "27.1.1",
"babel-loader": "8.2.2",
"babel-plugin-dual-import": "1.2.1",
"babel-plugin-lodash": "3.3.4",
"commander": "8.1.0",
"copy-webpack-plugin": "9.0.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-loader": "4.0.2",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"file-loader": "6.2.0",
"glob": "7.1.7",
"identity-obj-proxy": "3.0.0",
"jest": "27.1.1",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"qs": "6.10.1",
"rehype-raw": "6.1.0",
"rehype-sanitize": "5.0.0",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.3.0",
"stylelint-scss": "3.20.1",
"typescript": "4.4.2",
"webpack": "5.52.0",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.8.0"
},
"insights": {
"appname": "advisor"
}
}