debian-image-builder-frontend/package.json
regexowl ece2e1a9da Remove babel
After migrating to typescript and later to vitest, babel is no longer needed. This removes its config and all dependencies that are no longer necessary.
2024-07-29 19:20:14 +02:00

105 lines
3.3 KiB
JSON

{
"name": "image-builder",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"@patternfly/patternfly": "5.3.1",
"@patternfly/react-code-editor": "5.3.4",
"@patternfly/react-core": "5.3.4",
"@patternfly/react-table": "5.3.4",
"@redhat-cloud-services/frontend-components": "4.2.13",
"@redhat-cloud-services/frontend-components-notifications": "4.1.0",
"@redhat-cloud-services/frontend-components-utilities": "4.0.14",
"@reduxjs/toolkit": "2.2.6",
"@scalprum/react-core": "0.8.0",
"@unleash/proxy-client-react": "4.3.0",
"classnames": "2.5.1",
"lodash": "4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"react-router-dom": "6.25.1",
"redux": "5.0.1",
"redux-promise-middleware": "6.2.0"
},
"devDependencies": {
"@patternfly/react-icons": "5.3.2",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "2.0.4",
"@redhat-cloud-services/frontend-components-config": "6.1.2",
"@redhat-cloud-services/tsc-transform-imports": "1.0.16",
"@rtk-query/codegen-openapi": "1.2.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-redux": "7.1.33",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"@vitejs/plugin-react": "4.3.1",
"@vitest/coverage-v8": "2.0.4",
"chart.js": "4.4.3",
"chartjs-adapter-moment": "1.0.1",
"chartjs-plugin-annotation": "3.0.1",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest-dom": "5.4.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-redux": "4.1.0",
"eslint-plugin-testing-library": "6.2.2",
"git-revision-webpack-plugin": "5.0.0",
"history": "5.3.0",
"identity-obj-proxy": "3.0.0",
"jsdom": "24.1.1",
"moment": "2.30.1",
"msw": "2.3.2",
"npm-run-all": "4.1.5",
"postcss-scss": "4.0.9",
"react-chartjs-2": "5.2.0",
"redux-mock-store": "1.5.4",
"sass": "1.77.8",
"sass-loader": "15.0.0",
"stylelint": "15.11.0",
"stylelint-config-recommended-scss": "13.1.0",
"ts-node": "10.9.2",
"ts-patch": "3.2.0",
"typescript": "5.5.4",
"uuid": "10.0.0",
"vitest": "2.0.4",
"vitest-canvas-mock": "0.3.3",
"webpack-bundle-analyzer": "4.10.2",
"whatwg-fetch": "3.6.20"
},
"scripts": {
"lint": "npm-run-all lint:*",
"lint:js": "eslint src",
"lint:js:fix": "eslint src --fix",
"start": "fec dev",
"start:msw": "MSW=TRUE fec dev",
"test": "TZ=UTC vitest run",
"test:watch": "TZ=UTC vitest",
"test:coverage": "TZ=UTC vitest run --coverage",
"build": "fec build",
"api": "npm-run-all api:pull api:generate",
"api:generate": "bash api/codegen.sh",
"api:pull": "bash api/pull.sh",
"verify": "npm-run-all build lint test",
"postinstall": "ts-patch install"
},
"insights": {
"appname": "image-builder"
},
"msw": {
"workerDirectory": "src"
}
}