{
  "name": "@n3/react-date-picker",
  "version": "3.3.2",
  "description": "DatePicker component for react application",
  "main": "lib/index.js",
  "module": "es/index.js",
  "typings": "ts/index.d.ts",
  "files": [
    "/dist",
    "/es",
    "/lib",
    "/ts"
  ],
  "scripts": {
    "build": "yarn test && yarn run build:js && yarn run build:css",
    "build:js": "yarn run build:es && yarn run build:cjs && yarn run build:ts",
    "build:es": "cross-env BABEL_ENV=es babel --extensions '.ts,.tsx' src/js --out-dir es --ignore \"**.test.ts\"",
    "build:cjs": "cross-env BABEL_ENV=cjs babel --extensions '.ts,.tsx' src/js --out-dir lib --ignore \"**.test.ts\"",
    "build:css": "postcss src/css/n3-date-picker.css --dir dist",
    "build:ts": "tsc --declaration --emitDeclarationOnly",
    "watch": "npm-run-all --parallel watch:**",
    "watch:js": "yarn run build:cjs --watch --verbose",
    "watch:css": "yarn run build:css --watch --verbose",
    "lint:js": "eslint src/js --ext .js,.jsx,.ts,.tsx",
    "lint:css": "stylelint src/css/**/*.css",
    "lint": "yarn run lint:js",
    "test": "yarn lint && yarn test:ts && yarn test:unit",
    "test:ts": "tsc -p ./tsconfig.validate.json --noEmit",
    "test:unit": "cross-env BABEL_ENV=test jest",
    "test:unit:watch": "cross-env BABEL_ENV=test jest --watchAll",
    "prepublishOnly": "yarn run lint && yarn build"
  },
  "keywords": [
    "react",
    "reactjs",
    "datepicker"
  ],
  "author": "Viktor Voloshin <v.voloshin@netrika.ru>",
  "license": "MIT",
  "peerDependencies": {
    "react": "^17.0.0 || ^18.0.0",
    "react-dom": "^17.0.0 || ^18.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.8.6",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/plugin-transform-runtime": "^7.8.3",
    "@babel/preset-env": "^7.8.6",
    "@babel/preset-react": "^7.8.3",
    "@babel/preset-typescript": "^7.18.6",
    "@mnajdova/enzyme-adapter-react-18": "^0.2.0",
    "@n3/eslint-config": "^0.14.0",
    "@types/enzyme": "^3.10.12",
    "@types/jest": "^29.1.1",
    "@types/react-portal": "^4.0.4",
    "@types/react-test-renderer": "^18.0.0",
    "babel-jest": "^29.1.2",
    "babel-plugin-module-resolver": "^4.0.0",
    "core-js": "^3.6.4",
    "cross-env": "^7.0.0",
    "enzyme": "^3.11.0",
    "eslint-import-resolver-babel-module": "^5.1.2",
    "jest": "^29.1.2",
    "jsdom": "^20.0.1",
    "jsdom-global": "^3.0.2",
    "lodash.omit": "^4.5.0",
    "npm-run-all": "^4.1.5",
    "postcss-cli": "^7.1.0",
    "postcss-color-mod-function": "^3.0.3",
    "postcss-import": "^12.0.0",
    "postcss-url": "^8.0.0",
    "precss": "^4.0.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-test-renderer": "^18.2.0",
    "stylelint": "^14.13.0",
    "ts-jest": "^29.0.3",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "@babel/runtime": "^7.19.0",
    "classnames": "^2.3.2",
    "date-fns": "^2.29.3",
    "react-overlays": "^5.2.1",
    "react-portal": "^4.2.2"
  }
}
