Add a `useProjectJson` option to project generators to allow users to opt in/out of generating the Nx configuration in a `project.json` file. ## Current Behavior ## Expected Behavior ## Related Issue(s) Fixes #
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "@nx/express",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"description": "The Nx Plugin for Express contains executors and generators for allowing your workspace to create powerful Express Node applications and APIs.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrwl/nx.git",
|
|
"directory": "packages/express"
|
|
},
|
|
"keywords": [
|
|
"Monorepo",
|
|
"Node",
|
|
"Express",
|
|
"Jest",
|
|
"Cypress",
|
|
"CLI",
|
|
"Backend"
|
|
],
|
|
"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",
|
|
"ng-update": {
|
|
"requirements": {},
|
|
"migrations": "./migrations.json"
|
|
},
|
|
"dependencies": {
|
|
"@nx/devkit": "file:../devkit",
|
|
"@nx/js": "file:../js",
|
|
"@nx/node": "file:../node",
|
|
"tslib": "^2.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"express": "^4.21.2"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"express": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|