{ "description": "React Navigation", "private": true, "workspaces": { "packages": [ "example", "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", "prerelease": "yarn lerna run clean", "release": "yarn lerna publish", "example": "yarn --cwd example" }, "devDependencies": { "@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/plugin-proposal-optional-chaining": "^7.8.3", "@babel/preset-env": "^7.8.7", "@babel/preset-react": "^7.8.3", "@babel/preset-typescript": "^7.8.3", "@babel/runtime": "^7.8.7", "@commitlint/config-conventional": "^8.3.4", "@types/jest": "^25.1.4", "commitlint": "^8.3.5", "core-js": "^3.6.4", "eslint": "^6.8.0", "eslint-config-satya164": "^3.1.5", "husky": "^4.2.1", "jest": "^25.1.0", "lerna": "^3.20.2", "prettier": "^2.0.1", "typescript": "~3.7.5" }, "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" } }