{ "name": "market-depth", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "libs/market-depth/src", "projectType": "library", "tags": [], "targets": { "build": { "executor": "@nx/rollup:rollup", "outputs": ["{options.outputPath}"], "options": { "outputPath": "dist/libs/market-depth", "tsConfig": "libs/market-depth/tsconfig.lib.json", "project": "libs/market-depth/package.json", "entryFile": "libs/market-depth/src/index.ts", "external": ["react/jsx-runtime"], "rollupConfig": "@nx/react/plugins/bundle-rollup", "compiler": "babel", "assets": [ { "glob": "libs/market-depth/README.md", "input": ".", "output": "." } ] } }, "lint": { "executor": "@nx/linter:eslint", "outputs": ["{options.outputFile}"], "options": { "lintFilePatterns": ["libs/market-depth/**/*.{ts,tsx,js,jsx}"] } }, "test": { "executor": "@nx/jest:jest", "outputs": ["{workspaceRoot}/coverage/libs/market-depth"], "options": { "jestConfig": "libs/market-depth/jest.config.ts", "passWithNoTests": true }, "configurations": { "ci": { "ci": true, "codeCoverage": true } } }, "storybook": { "executor": "@nx/storybook:storybook", "options": { "port": 4400, "configDir": "libs/market-depth/.storybook" }, "configurations": { "ci": { "quiet": true } } }, "build-storybook": { "executor": "@nx/storybook:build", "outputs": ["{options.outputDir}"], "options": { "configDir": "libs/market-depth/.storybook", "outputDir": "dist/storybook/market-depth" }, "configurations": { "ci": { "quiet": true } } }, "build-spec": { "executor": "nx:run-commands", "outputs": [], "options": { "command": "yarn tsc --project ./libs/market-depth/tsconfig.spec.json" } } } }