nx/packages/webpack/package.json
Nicholas Cunningham b1dbf47aa2
feat(webpack): add convertConfigToWebpackPlugin (#26516)
This PR introduces functionality for users who currently use the
`withNx` and `withReact` plugins in their webpack configuration to
migrate to the `NxAppWebpackPlugin`.

The `nxUseLegacyPlugin` wraps the legacy style function so that it
continues to work with the standardized generated webpack config.

By implementing this change, the aim is to provide a consistent method
for users opting to transition to inferred targets. This ensures a
smoother migration process, offering better integration and reducing
potential configuration complexities.
2024-06-21 08:55:23 -04:00

75 lines
2.0 KiB
JSON

{
"name": "@nx/webpack",
"version": "0.0.1",
"private": false,
"description": "The Nx Plugin for Webpack contains executors and generators that support building applications using Webpack.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/webpack"
},
"keywords": [
"Monorepo",
"Webpack",
"Web",
"CLI",
"Front-end"
],
"main": "./index",
"typings": "./index.d.ts",
"author": "Victor Savkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"homepage": "https://nx.dev",
"generators": "./generators.json",
"executors": "./executors.json",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@phenomnomnominal/tsquery": "~5.0.1",
"ajv": "^8.12.0",
"autoprefixer": "^10.4.9",
"babel-loader": "^9.1.2",
"browserslist": "^4.21.4",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^5.0.0",
"fork-ts-checker-webpack-plugin": "7.2.13",
"less": "4.1.3",
"less-loader": "11.1.0",
"license-webpack-plugin": "^4.0.2",
"loader-utils": "^2.0.3",
"mini-css-extract-plugin": "~2.4.7",
"parse5": "4.0.0",
"postcss": "^8.4.38",
"postcss-import": "~14.1.0",
"postcss-loader": "^6.1.1",
"rxjs": "^7.8.0",
"sass": "^1.42.1",
"sass-loader": "^12.2.0",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.0",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "4.0.0",
"tslib": "^2.3.0",
"webpack": "^5.80.0",
"webpack-dev-server": "^4.9.3",
"webpack-node-externals": "^3.0.0",
"webpack-subresource-integrity": "^5.1.0",
"@nx/devkit": "file:../devkit",
"@nx/js": "file:../js"
},
"publishConfig": {
"access": "public"
}
}