{ "description": "React Navigation", "private": true, "workspaces": { "packages": [ "packages/*" ] }, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/react-navigation/react-navigation.git" }, "author": "Adam Miskiewicz , Eric Vicenti , Brent Vatne , Satyajit Sahoo ", "scripts": { "lint": "eslint --ext '.js,.ts,.tsx' .", "typescript": "tsc --noEmit", "test": "jest", "example": "yarn --cwd example" }, "devDependencies": { "@babel/plugin-proposal-class-properties": "^7.7.0", "@babel/plugin-proposal-optional-chaining": "^7.7.5", "@babel/preset-env": "^7.7.7", "@babel/preset-react": "^7.7.0", "@babel/preset-typescript": "^7.7.7", "@babel/runtime": "^7.7.7", "@commitlint/config-conventional": "^8.3.4", "@types/jest": "^24.0.25", "codecov": "^3.6.1", "commitlint": "^8.3.4", "core-js": "^3.6.2", "detox": "^15.0.0", "eslint": "^6.8.0", "eslint-config-satya164": "^3.1.5", "husky": "^4.0.1", "jest": "^24.9.0", "lerna": "^3.20.2", "prettier": "^1.19.1", "typescript": "^3.7.4" }, "resolutions": { "react": "~16.9.0", "react-native": "~0.61.5" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "yarn lint && yarn typescript && yarn test" } }, "jest": { "testEnvironment": "node", "testRegex": "/__tests__/.*\\.(test|spec)\\.(js|tsx?)$", "transform": { "^.+\\.(js|ts|tsx)$": "babel-jest" }, "setupFiles": [ "/jest/setup.js" ], "moduleNameMapper": { "@react-navigation/([^/]+)": "/packages/$1/src", "react-navigation-([^/]+)": "/packages/$1/src" }, "preset": "react-native" }, "prettier": { "tabWidth": 2, "useTabs": false, "singleQuote": true, "trailingComma": "es5" } }