generated from RedHatInsights/frontend-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
119 lines (119 loc) · 4.07 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": "registration-assistant",
"version": "1.0.0",
"private": false,
"scripts": {
"build": "fec build",
"build:prod": "npm run build",
"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": "fec dev",
"start:proxy": "PROXY=true fec dev",
"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",
"travis:build": "npm run build",
"travis:verify": "npm-run-all travis:build lint test",
"verify": "npm-run-all build lint test",
"postinstall": "ts-patch install"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/stories/*",
"!src/**/*.fixtures.js"
],
"coverageDirectory": "./coverage/",
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"roots": [
"<rootDir>/src/"
],
"setupFiles": [
"<rootDir>/config/setupTests.js"
],
"testPathIgnorePatterns": [
"<rootDir>/.+fixtures.+"
],
"transformIgnorePatterns": [
"node_modules/(?!(uuid))"
]
},
"dependencies": {
"@babel/runtime": "^7.25.7",
"@data-driven-forms/pf4-component-mapper": "^3.22.3",
"@data-driven-forms/react-form-renderer": "^3.22.3",
"@patternfly/patternfly": "^5.4.1",
"@patternfly/react-core": "^5.4.1",
"@patternfly/react-icons": "^5.4.0",
"@patternfly/react-table": "^5.4.13",
"@redhat-cloud-services/frontend-components": "^4.2.16",
"@redhat-cloud-services/frontend-components-notifications": "^4.1.1",
"@redhat-cloud-services/frontend-components-translations": "^3.2.9",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.17",
"@sentry/webpack-plugin": "^3.1.1",
"@unleash/proxy-client-react": "^3.5.0",
"axios": "^1.7.7",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^6.8.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0",
"redux-promise-middleware": "6.2.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/preset-flow": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@formatjs/cli": "^6.2.1",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.4",
"@redhat-cloud-services/frontend-components-config": "^6.3.3",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.16",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"babel-core": "^6.26.3",
"babel-eslint": "10.1.0",
"babel-jest": "^29.7.0",
"babel-plugin-dual-import": "1.2.1",
"babel-plugin-react-intl": "8.2.25",
"babel-plugin-transform-imports": "2.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.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",
"react-helmet": "6.1.0",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-scss": "^6.8.0",
"ts-patch": "^3.1.2",
"typescript": "^5.3.3",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
},
"insights": {
"appname": "registration"
},
"routes": {
"registration": "/insights/registration"
}
}