forked from RedHatInsights/tasks-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.66 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
{
"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"
],
"roots": [
"<rootDir>/src/"
],
"transformIgnorePatterns": [
"/node_modules/(?!@redhat-cloud-services)",
"/node_modules/(?!@patternfly)"
],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"testEnvironment": "jest-environment-jsdom",
"moduleDirectories": [
"node_modules",
"./src"
]
},
"scripts": {
"build": "webpack --config config/prod.webpack.config.js",
"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",
"start": "npm run start:proxy",
"start:beta": "npm run start:proxy:beta",
"start:proxy": "NODE_ENV=development webpack serve --config config/dev.webpack.config.js",
"start:proxy:beta": "NODE_ENV=development BETA=true webpack serve --config config/dev.webpack.config.js",
"stage": "NODE_ENV=development webpack serve --config config/dev.stage.webpack.config.js",
"test": "jest --verbose --env=jsdom",
"travis:build": "NODE_ENV=production webpack --config config/prod.webpack.config.js",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/react-core": "^4.202.16",
"@patternfly/react-icons": "4.53.16",
"@patternfly/react-table": "^4.111.4",
"@redhat-cloud-services/frontend-components": "^3.8.7",
"@redhat-cloud-services/frontend-components-notifications": "^3.2.5",
"@redhat-cloud-services/frontend-components-utilities": "^3.5.0",
"axios": "^0.27.0",
"classnames": "^2.3.1",
"moment": "2.29.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.8",
"react-router-dom": "5.2.0",
"redux": "4.1.2",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.3",
"@redhat-cloud-services/frontend-components-config": "^4.7.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "27.5.1",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "8.13.0",
"eslint-loader": "4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"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",
"webpack-bundle-analyzer": "4.5.0"
},
"insights": {
"appname": "tasks"
}
}