{ "name": "application", "factory": "./src/generators/application/application#detoxApplicationGenerator", "schema": { "$schema": "http://json-schema.org/schema", "title": "Create Detox Configuration for the workspace", "description": "Create Detox Configuration for the workspace.", "type": "object", "properties": { "appProject": { "type": "string", "description": "Name of the frontend project to be tested.", "$default": { "$source": "projectName" }, "x-prompt": "What is the name of the frontend project to test?" }, "e2eName": { "type": "string", "description": "Name of the E2E Project.", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "What name would you like to use for the E2E project?" }, "appName": { "type": "string", "description": "Name of the app to be tested if different from appProject" }, "appDisplayName": { "type": "string", "description": "Display name of the app to be tested if different from appProject" }, "framework": { "type": "string", "description": "App framework to test", "enum": ["react-native", "expo"], "x-prompt": "What app framework should detox test?" }, "e2eDirectory": { "type": "string", "description": "A directory where the project is placed relative to apps directory." }, "linter": { "description": "The tool to use for running lint checks.", "type": "string", "enum": ["eslint", "none"], "default": "eslint" }, "js": { "description": "Generate JavaScript files rather than TypeScript files.", "type": "boolean", "default": false }, "skipFormat": { "description": "Skip formatting files.", "type": "boolean", "default": false, "x-priority": "internal" }, "setParserOptionsProject": { "type": "boolean", "description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.", "default": false } }, "required": ["e2eName", "appProject", "framework"], "presets": [] }, "aliases": ["app"], "x-type": "application", "description": "Create a Detox application.", "implementation": "/packages/detox/src/generators/application/application#detoxApplicationGenerator.ts", "hidden": false, "path": "/packages/detox/src/generators/application/schema.json", "type": "generator" }