UNPKG

react-calendar-toolkit

Version:

React Calendar Toolkit is a set of React Components capable of rendering various calendars, datepickers etc.

141 lines (140 loc) 3.91 kB
{ "name": "react-calendar-toolkit", "version": "0.4.0", "license": "MIT", "engines": { "node": ">=10" }, "description": "React Calendar Toolkit is a set of React Components capable of rendering various calendars, datepickers etc.", "keywords": [ "react", "reactjs", "calendar", "datepicker", "datepicker-component", "date-fns", "date-range-picker", "datetimepicker" ], "repository": { "type": "git", "url": "https://github.com/morewings/react-calendar-toolkit", "directory": "/" }, "homepage": "https://react-calendar-toolkit.netlify.com", "bugs": { "url": "https://github.com/morewings/react-calendar-toolkit/issues" }, "main": "lib/index.cjs.js", "module": "lib/index.esm.js", "browser": "lib/index.js", "style": "style/default.css", "files": [ "lib", "style", "types" ], "types": "types/index.d.ts", "sideEffects": false, "dependencies": { "classnames": "^2.2.6", "css-vars-hook": "^0.2.5", "date-fns": "^2.16.1", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", "react-tiny-popover": "^5.1.0" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=jest-environment-jsdom-sixteen", "eject": "react-scripts eject", "build:lib": "npx rollup -c", "fix:js": "npx eslint --fix ./src/", "lint:js": "npx eslint ./src/", "lint:style": "npx stylelint ./src/", "fix:style": "npx stylelint ./src/ --fix", "start:docs": "docz dev", "build:docs": "docz build" }, "eslintConfig": { "extends": "react-app" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all", "Firefox ESR", "IE 11" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "CI=true yarn test --passWithNoTests" } }, "devDependencies": { "@babel/cli": "7.12.10", "@babel/core": "^7.12.10", "@babel/preset-env": "7.12.11", "@babel/preset-react": "^7.12.10", "@babel/runtime": "^7.12.5", "@rollup/plugin-babel": "5.2.2", "@rollup/plugin-commonjs": "17.0.0", "@rollup/plugin-node-resolve": "11.0.1", "@testing-library/jest-dom": "5.11.6", "@testing-library/react": "11.2.2", "@testing-library/react-hooks": "3.7.0", "@testing-library/user-event": "12.6.0", "autoprefixer": "9.8.6", "babel-eslint": "^10.1.0", "docz": "2.3.1", "eslint-config-airbnb": "18.2.1", "eslint-config-prettier": "7.1.0", "eslint-config-react-app": "6.0.0", "eslint-plugin-fp": "2.3.0", "eslint-plugin-import": "2.22.1", "eslint-plugin-jsx-a11y": "6.4.1", "eslint-plugin-prettier": "3.3.0", "eslint-plugin-react": "7.21.5", "eslint-plugin-react-hooks": "4.2.0", "husky": "4.3.6", "jest-environment-jsdom-sixteen": "1.0.3", "lint-staged": "10.5.3", "npm-run-all": "4.1.5", "postcss-custom-properties": "10.0.0", "postcss-preset-env": "6.7.0", "prettier": "2.2.1", "react-scripts": "3.4.4", "react-test-renderer": "17.0.1", "recursive-copy": "2.0.11", "rimraf": "3.0.2", "rollup": "2.35.1", "rollup-plugin-eslint": "7.0.0", "rollup-plugin-filesize": "9.1.0", "rollup-plugin-includepaths": "0.2.4", "rollup-plugin-peer-deps-external": "2.2.4", "rollup-plugin-postcss": "3.1.8", "rollup-plugin-stylelint": "1.0.0", "rollup-plugin-terser": "7.0.2", "stylelint": "13.8.0", "stylelint-config-standard": "20.0.0", "stylelint-order": "4.1.0" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0", "date-fns": "2" }, "jest": { "globalSetup": "<rootDir>/globalSetup.js" } }