143 lines
4.0 KiB
JSON
143 lines
4.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, Playwright, 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",
|
|
"Front-end"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"type": "commonjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
"typings",
|
|
"migrations.json",
|
|
"executors.json",
|
|
"generators.json"
|
|
],
|
|
"typesVersions": {
|
|
"*": {
|
|
"babel": [
|
|
"dist/babel.d.ts"
|
|
],
|
|
"plugin": [
|
|
"dist/plugin.d.ts"
|
|
],
|
|
"tailwind": [
|
|
"dist/tailwind.d.ts"
|
|
],
|
|
"plugins/*": [
|
|
"dist/plugins/*.d.ts"
|
|
],
|
|
"typings/*.d.ts": [
|
|
"dist/typings/*.d.ts"
|
|
],
|
|
"src/utils/deprecation": [
|
|
"dist/src/utils/deprecation.d.ts"
|
|
],
|
|
"src/utils/config": [
|
|
"dist/src/utils/config.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",
|
|
"supportsOptionalMigrations": true
|
|
},
|
|
"peerDependencies": {
|
|
"next": ">=14.0.0 <17.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@nx/devkit": "workspace:*",
|
|
"@babel/plugin-proposal-decorators": "^7.22.7",
|
|
"@svgr/webpack": "catalog:",
|
|
"copy-webpack-plugin": "^14.0.0",
|
|
"ignore": "^7.0.5",
|
|
"semver": "catalog:",
|
|
"tslib": "catalog:typescript",
|
|
"webpack-merge": "^5.8.0",
|
|
"@nx/js": "workspace:*",
|
|
"@nx/eslint": "workspace:*",
|
|
"@nx/react": "workspace:*",
|
|
"@nx/web": "workspace:*",
|
|
"@nx/webpack": "workspace:*",
|
|
"@phenomnomnominal/tsquery": "catalog:typescript"
|
|
},
|
|
"devDependencies": {
|
|
"@nx/cypress": "workspace:*",
|
|
"@nx/playwright": "workspace:*",
|
|
"nx": "workspace:*"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"@nx/nx-source": "./index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./migrations.json": "./migrations.json",
|
|
"./generators.json": "./generators.json",
|
|
"./executors.json": "./executors.json",
|
|
"./babel": {
|
|
"@nx/nx-source": "./babel.ts",
|
|
"types": "./dist/babel.d.ts",
|
|
"default": "./dist/babel.js"
|
|
},
|
|
"./plugin": {
|
|
"@nx/nx-source": "./plugin.ts",
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
},
|
|
"./tailwind": {
|
|
"@nx/nx-source": "./tailwind.ts",
|
|
"types": "./dist/tailwind.d.ts",
|
|
"default": "./dist/tailwind.js"
|
|
},
|
|
"./plugins/*": {
|
|
"@nx/nx-source": "./plugins/*.ts",
|
|
"types": "./dist/plugins/*.d.ts",
|
|
"default": "./dist/plugins/*.js"
|
|
},
|
|
"./typings/*.d.ts": {
|
|
"@nx/nx-source": "./typings/*.d.ts",
|
|
"types": "./dist/typings/*.d.ts",
|
|
"default": "./dist/typings/*.d.ts"
|
|
},
|
|
"./src/utils/deprecation": {
|
|
"@nx/nx-source": "./src/utils/deprecation.ts",
|
|
"types": "./dist/src/utils/deprecation.d.ts",
|
|
"default": "./dist/src/utils/deprecation.js"
|
|
},
|
|
"./src/utils/config": {
|
|
"@nx/nx-source": "./src/utils/config.ts",
|
|
"types": "./dist/src/utils/config.d.ts",
|
|
"default": "./dist/src/utils/config.js"
|
|
}
|
|
}
|
|
}
|