nx/packages/next/package.json
2023-05-26 15:31:48 +03:00

63 lines
2.0 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.14.5",
"@svgr/webpack": "^8.0.1",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^10.2.4",
"dotenv": "~10.0.0",
"express": "^4.18.1",
"fs-extra": "^11.1.0",
"http-proxy-middleware": "^2.0.6",
"ignore": "^5.0.4",
"semver": "7.3.4",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.2",
"tsconfig-paths-webpack-plugin": "4.0.0",
"url-loader": "^4.1.1",
"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"
}
}