{ "name": "twenty-website-new", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/twenty-website-new/src", "projectType": "application", "tags": ["scope:website"], "targets": { "build": { "executor": "nx:run-commands", "cache": true, "inputs": ["production", "^production"], "outputs": ["{projectRoot}/.next"], "options": { "cwd": "{projectRoot}", "command": "npx next build" }, "dependsOn": ["^build"] }, "dev": { "executor": "nx:run-commands", "cache": false, "options": { "cwd": "{projectRoot}", "command": "npx next dev" } }, "start": { "executor": "nx:run-commands", "cache": false, "dependsOn": ["build"], "options": { "cwd": "{projectRoot}", "command": "npx next start" } }, "lint": {}, "lint:diff-with-main": {}, "typecheck": {}, "test": { "executor": "@nx/jest:jest", "outputs": ["{projectRoot}/coverage"], "options": { "jestConfig": "{projectRoot}/jest.config.mjs", "silent": true, "coverage": true, "coverageReporters": ["text-summary"], "cacheDirectory": "../../.cache/jest/{projectRoot}" }, "configurations": { "ci": { "ci": true, "maxWorkers": 1 }, "coverage": { "coverageReporters": ["lcov", "text"] }, "watch": { "watch": true } } }, "fmt": { "options": { "files": "." }, "configurations": { "fix": {} } } } }