forked from RedHatInsights/insights-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.81 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
{
"name": "insights-dashboard",
"version": "1.0.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/RedHatInsights/insights-dashboard"
},
"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-fix": "eslint config src --fix",
"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-dev-server --config config/dev.webpack.config.js",
"server:ctr": "node src/server/generateServerKey.js",
"start": "NODE_ENV=development webpack-dev-server --config config/dev.webpack.config.js",
"test": "jest --verbose",
"translations:compile": "npm run build; node node_modules/@redhat-cloud-services/frontend-components-utilities/files/mergeMessages.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"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js|jsx}",
"!src/**/stories/*"
],
"coverageDirectory": "./coverage/",
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"roots": [
"<rootDir>/src/"
],
"setupFiles": [
"<rootDir>/config/setupTests.js"
]
},
"dependencies": {
"@babel/runtime": "7.10.2",
"@patternfly/react-charts": "5.3.21",
"@patternfly/react-core": "3.158.1",
"@patternfly/react-icons": "3.15.17",
"@patternfly/react-table": "2.28.47",
"@patternfly/react-tokens": "2.8.14",
"@redhat-cloud-services/frontend-components": "2.0.6",
"@redhat-cloud-services/frontend-components-charts": "2.0.3",
"@redhat-cloud-services/frontend-components-translations": "2.0.4",
"@redhat-cloud-services/frontend-components-utilities": "2.0.4",
"classnames": "2.2.6",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-intl": "4.6.9",
"react-redux": "5.0.7",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2",
"seamless-immutable": "7.1.4",
"urijs": "1.19.2"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-proposal-object-rest-spread": "7.10.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-flow": "7.10.1",
"@babel/preset-react": "7.10.1",
"@redhat-cloud-services/frontend-components-config": "2.0.3",
"axios": "0.19.2",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"babel-plugin-dual-import": "1.2.1",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-react-intl": "7.5.20",
"babel-polyfill": "6.26.0",
"css-loader": "3.5.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "7.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-loader": "4.0.2",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"file-loader": "6.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.0.1",
"moment": "2.26.0",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"sass-loader": "8.0.2",
"style-loader": "1.2.1",
"stylelint": "13.6.0",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.17.2",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.11"
},
"insights": {
"appname": "dashboard"
}
}