forked from RedHatInsights/ros-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 4.23 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
{
"name": "ros-frontend",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "webpack --config config/prod.webpack.config.js",
"build:prod": "NODE_ENV=production webpack --config config/prod.webpack.config.js",
"deploy": "npm-run-all build:prod 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",
"nightly": "npm run deploy",
"prod": "NODE_ENV=production webpack serve --config config/dev.webpack.config.js",
"server:ctr": "node src/server/generateServerKey.js",
"start": "NODE_ENV=development webpack serve --config config/dev.webpack.config.js",
"start:beta": "NODE_ENV=development BETA=true webpack serve --config config/dev.webpack.config.js",
"start:prod": "NODE_ENV=development ENVIRONMENT=prod webpack serve --config config/dev.webpack.config.js",
"start:prod:beta": "NODE_ENV=development BETA=true ENVIRONMENT=prod webpack serve --config config/dev.webpack.config.js",
"local": "NODE_ENV=development webpack serve --config config/dev.local.webpack.config.js",
"test": "TZ=UTC jest --verbose --no-cache",
"verify": "npm-run-all build lint test"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/stories/*"
],
"coverageDirectory": "./coverage/",
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(@patternfly/react-core/|@patternfly/react-tokens/|@patternfly/react-icons/|@redhat-cloud-services)).*$"
],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy",
"PFReactCore": "@patternfly/react-core",
"PFReactTable": "@patternfly/react-table"
},
"roots": [
"<rootDir>/src/"
],
"setupFiles": [
"<rootDir>/config/setupTests.js"
]
},
"transformIgnorePatterns": [
"/node_modules/(?!@redhat-cloud-services)"
],
"dependencies": {
"@babel/runtime": "7.10.0",
"@patternfly/patternfly": "4.171.1",
"@patternfly/react-charts": "^6.55.16",
"@patternfly/react-core": "^4.239.0",
"@patternfly/react-icons": "^4.43.15",
"@patternfly/react-styles": "4.42.15",
"@patternfly/react-table": "^4.108.0",
"@redhat-cloud-services/frontend-components": "3.8.12",
"@redhat-cloud-services/frontend-components-config": "^4.7.3",
"@redhat-cloud-services/frontend-components-notifications": "3.2.5",
"@redhat-cloud-services/frontend-components-utilities": "^3.5.0",
"babel-plugin-transform-imports": "^2.0.0",
"classnames": "2.2.6",
"moment": "^2.29.4",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-redux": "^7.2.0",
"react-router-dom": "5.2.0",
"redux": "^4.0.5",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2"
},
"devDependencies": {
"@babel/core": "7.10.0",
"@babel/plugin-proposal-object-rest-spread": "7.10.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.10.0",
"@babel/preset-env": "7.10.0",
"@babel/preset-flow": "7.9.0",
"@babel/preset-react": "7.10.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"babel-plugin-dual-import": "1.2.1",
"babel-plugin-lodash": "3.3.4",
"cross-fetch": "3.1.5",
"css-loader": "3.5.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.5.0",
"eslint": "7.1.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",
"good-guy-http": "^1.13.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.0.1",
"npm-run-all": "4.1.5",
"postcss": "^7.0.36",
"prop-types": "15.7.2",
"react-test-renderer": "^17.0.2",
"sass": "^1.36.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "^3.19.0",
"webpack": "^5.76.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1"
},
"insights": {
"appname": "ros"
}
}