UNPKG

react-timekeeper

Version:

Time picker based on the style of the Google Keep app

104 lines (103 loc) 3.13 kB
{ "name": "react-timekeeper", "version": "2.2.1", "description": "Time picker based on the style of the Google Keep app", "main": "./lib/index.js", "types": "./lib/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/catc/react-timekeeper.git" }, "homepage": "https://catc.github.io/react-timekeeper/", "keywords": [ "react", "time", "time picker", "picker", "hour", "24 hour", "minute", "react spring" ], "author": "Catalin Covic <catalin.covic@gmail.com>", "license": "MIT", "scripts": { "install-all": "yarn install && yarn add -P react react-dom", "docs:dev": "node ./bin/dev.js", "docs:build": "node ./bin/build.js", "_clean": "rimraf lib && mkdir lib", "_build": "NODE_ENV=production babel src --extensions '.tsx' --extensions '.ts' -d lib --ignore '**/__tests__/'", "_types": "NODE_ENV=production tsc --emitDeclarationOnly -d --outDir lib --esModuleInterop --jsx react-jsx src/index.ts", "lib": " npm run _clean && npm run _build & npm run _types", "eslint": "eslint src/ docs/", "ts:compile": "tsc --noEmit -p tsconfig.json", "tests:watch": "NODE_ENV=test jest --watch", "tests": "NODE_ENV=test jest" }, "devDependencies": { "@babel/cli": "^7.16.0", "@babel/core": "^7.16.5", "@babel/plugin-transform-runtime": "^7.16.5", "@babel/preset-env": "^7.16.5", "@babel/preset-react": "^7.16.5", "@babel/preset-typescript": "^7.16.5", "@emotion/babel-preset-css-prop": "^11.2.0", "@emotion/eslint-plugin": "^11.7.0", "@hot-loader/react-dom": "^16.13.0", "@testing-library/react": "^12.1.2", "@types/jest": "^24.0.15", "@types/lodash.debounce": "^4.0.6", "@types/react": "^17.0.38", "@types/react-dom": "^17.0.11", "@typescript-eslint/eslint-plugin": "5.8.0", "@typescript-eslint/parser": "5.8.0", "autoprefixer": "^9.7.4", "babel-loader": "^8.2.3", "css-loader": "^3.0.0", "cssnano": "^4.1.10", "eslint": "^8.5.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-react": "^7.14.2", "eslint-plugin-react-hooks": "^4.3.0", "highlight.js": "^9.15.10", "jest": "^24.8.0", "jest-watch-typeahead": "^0.4.2", "mini-css-extract-plugin": "^0.7.0", "node-sass": "^4.12.0", "postcss-loader": "^3.0.0", "prettier": "^2.5.1", "react-hot-loader": "^4.11.1", "rimraf": "^2.6.3", "sass-loader": "^7.1.0", "style-loader": "^0.23.1", "typescript": "^4.5.4", "webpack": "^4.35.0", "webpack-dev-server": "^3.7.2" }, "engines": { "node": ">=12.16.2" }, "peerDependencies": { "react": "^17.0.2", "react-dom": "^17.0.2" }, "dependencies": { "@emotion/react": "^11.7.1", "lodash.debounce": "^4.0.8", "react-spring": "^9.3.3" }, "eslintIgnore": [ "lib/", "docs/build/", "node_modules/" ], "jest": { "rootDir": "src", "testRegex": ".*\\.test\\.tsx?$", "watchPlugins": [ "jest-watch-typeahead/filename", "jest-watch-typeahead/testname" ] } }