nx/packages/next/package.json

58 lines
1.8 KiB
JSON

{
"name": "@nx/next",
"version": "0.0.1",
"private": false,
"description": "The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides:\n\n\n- Scaffolding for creating, building, serving, linting, and testing Next.js applications.\n\n- Integration with building, serving, and exporting a Next.js application.\n\n- Integration with React libraries within the workspace. \n\nWhen using Next.js in Nx, you get the out-of-the-box support for TypeScript, Cypress, and Jest. No need to configure anything: watch mode, source maps, and typings just work.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/next"
},
"keywords": [
"Monorepo",
"Node",
"Next",
"Jest",
"Cypress",
"CLI"
],
"main": "./index",
"typings": "./index.d.ts",
"author": "Victor Savkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"homepage": "https://nx.dev",
"schematics": "./generators.json",
"builders": "./executors.json",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json"
},
"peerDependencies": {
"next": ">=13.0.0"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.22.7",
"@svgr/webpack": "^8.0.1",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^10.2.4",
"fs-extra": "^11.1.0",
"ignore": "^5.0.4",
"semver": "7.5.3",
"url-loader": "^4.1.1",
"tslib": "^2.3.0",
"webpack-merge": "^5.8.0",
"@nx/devkit": "file:../devkit",
"@nx/js": "file:../js",
"@nx/linter": "file:../linter",
"@nx/react": "file:../react",
"@nx/web": "file:../web",
"@nx/workspace": "file:../workspace"
},
"publishConfig": {
"access": "public"
}
}