{ "name": "@react-select/monorepo", "private": true, "version": "1.0.0", "description": "A Select control built with and for ReactJS", "author": "Jed Watson", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/JedWatson/react-select.git" }, "dependencies": { "@babel/core": "^7.19.6", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/plugin-proposal-private-methods": "^7.13.0", "@babel/plugin-transform-runtime": "^7.12.0", "@babel/polyfill": "^7.12.1", "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.12.1", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.12.0", "@changesets/cli": "^2.17.0", "@changesets/get-github-info": "^0.5.0", "@emotion/babel-plugin": "^11.10.2", "@emotion/jest": "^11.1.0", "@manypkg/cli": "^0.19.2", "@preconstruct/cli": "^2.6.2", "@testing-library/dom": "8.19.0", "@testing-library/jest-dom": "5.1.1", "@testing-library/react": "12.1.4", "@testing-library/user-event": "^10.0.0", "@types/copy-webpack-plugin": "^5.0.2", "@types/html-webpack-plugin": "^3.2.4", "@types/jest-in-case": "^1.0.6", "@types/node": "^16.11.68", "@types/pretty-proptypes": "^1.1.0", "@types/react": "^16.14.60", "@types/react-dom": "^16.9.10", "@types/react-transition-group": "^4.4.0", "@typescript-eslint/eslint-plugin": "^4.14.0", "@typescript-eslint/parser": "^4.14.0", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.1.0", "babel-jest": "^23.6.0", "babel-loader": "^8.2.5", "concurrently": "^7.5.0", "copy-webpack-plugin": "^5.0.3", "coveralls": "^3.1.1", "cross-env": "^7.0.3", "css-loader": "^0.28.7", "cypress": "^5.0.0", "dotenv": "^16.0.3", "eslint": "^7.18.0", "eslint-plugin-react": "^7.22.0", "eslint-plugin-react-hooks": "^4.2.0", "gh-pages": "^1.1.0", "jest": "^25.1.0", "jest-in-case": "^1.0.2", "prettier": "^2.2.1", "style-loader": "^0.23.1", "typescript": "^4.1.3", "user-agent-data-types": "^0.4.2" }, "scripts": { "build": "preconstruct build", "watch": "preconstruct watch", "coveralls": "cat coverage/lcov.info | coveralls", "prettify": "prettier --write .", "prettier:check": "prettier --check .", "lint": "eslint . --ext .js,.jsx,.ts,.tsx", "start": "cd docs && yarn start", "start:test": "cd docs && yarn start:test", "build:docs": "yarn --cwd=docs build:docs && yarn --cwd=storybook build && cp -r storybook/storybook-static docs/dist/storybook", "fresh": "rm -rf node_modules && yarn install", "test": "npm run test:jest && npm run test:cypress", "test:jest": "jest --coverage", "e2e": "concurrently --kill-others --success=first --names 'SERVER,E2E' 'yarn start:test' 'yarn test:cypress'", "type-check": "tsc --build packages/react-select/tsconfig.json && tsc --build packages/react-select/src/__tests__/tsconfig.json && tsc --build docs/tsconfig.json && tsc --build cypress/tsconfig.json", "precommit": "yarn run type-check", "postinstall": "preconstruct dev && manypkg check", "test:cypress": "yarn test:cypress:chrome && yarn test:cypress:firefox", "test:cypress:chrome": "cypress run --browser chrome", "test:cypress:firefox": "cypress run --browser firefox", "test:cypress:watch": "node ./node_modules/.bin/cypress open", "changeset": "changeset", "version-packages": "changeset version", "release": "yarn build && changeset publish" }, "files": [ "dist", "src" ], "keywords": [ "combobox", "form", "input", "multiselect", "react", "react-component", "select", "ui" ], "jest": { "modulePathIgnorePatterns": [ "./node_modules" ], "testRegex": "src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(ts|js)x?)$", "setupFilesAfterEnv": [ "./test-setup.js" ], "snapshotSerializers": [ "@emotion/jest/serializer" ] }, "workspaces": [ "packages/*", "docs", "storybook" ], "preconstruct": { "packages": [ "packages/*", "docs/generate-magical-types" ], "exports": { "importConditionDefaultExport": "default" } }, "resolutions": { "csstype": "^3.0.2" } }