UNPKG

react-sled

Version:

react-sled is a carousel made with react-spring.

86 lines (85 loc) 2.96 kB
{ "name": "react-sled", "version": "2.0.4", "description": "react-sled is a carousel made with react-spring.", "author": "AndreasFaust", "license": "MIT", "repository": "AndreasFaust/react-sled", "homepage": "https://react-sled.andreasfaust.com/", "files": [ "/dist" ], "main": "./dist/index.js", "module": "./dist/index.es.js", "jsnext:main": "./dist/index.es.js", "types": "./dist/index.d.ts", "engines": { "node": ">=8", "npm": ">=5" }, "dependencies": {}, "devDependencies": { "@rollup/plugin-commonjs": "^11.0.1", "@rollup/plugin-node-resolve": "^6.1.0", "@rollup/plugin-url": "^4.0.0", "@types/node": "^13.1.4", "@types/react": "^16.9.17", "@typescript-eslint/eslint-plugin": "2.14.0", "@typescript-eslint/parser": "2.14.0", "@zeit/next-css": "^1.0.1", "babel-eslint": "^10.0.3", "csstype": "^2.6.8", "eslint": "6.8.0", "eslint-config-react-app": "^5.1.0", "eslint-plugin-flowtype": "4.5.3", "eslint-plugin-import": "2.19.1", "eslint-plugin-jsx-a11y": "6.x", "eslint-plugin-react": "7.17.0", "eslint-plugin-react-hooks": "2.3.0", "generate-changelog": "^1.8.0", "gh-pages": "^2.1.1", "lodash": "^4.17.15", "next": "9.1.7", "prop-types": "^15.7.2", "rc-slider": "^8.7.1", "react": "16.12.0", "react-burger-menu": "^2.6.13", "react-dom": "^16.12.0", "react-select": "^3.0.8", "react-spring": "^9.0.0-beta.34", "react-toggle": "^4.1.1", "react-use-gesture": "^7.0.1", "rollup": "^1.28.0", "rollup-plugin-css-only": "^2.0.0", "rollup-plugin-peer-deps-external": "^2.2.0", "rollup-plugin-typescript2": "^0.25.3", "typescript": "^3.7.4" }, "peerDependencies": { "react": "^16.8.5", "react-dom": "^16.8.5", "react-spring": "^9.0.0-beta.34", "react-use-gesture": "^7.0.0" }, "keywords": [ "React", "Viewpager", "Carousel", "Gallery", "Slideshow", "Slider", "Spring", "Animation", "react-spring", "react-use-gesture" ], "scripts": { "dev": "next dev", "build": "rollup -c", "release:major": "yarn build && git add . && changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish", "release:minor": "yarn build && git add . && changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish", "release:patch": "yarn build && git add . && changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish", "deploy-files": "rsync -vrtu --delete -e ssh ./out/ box@finlay.uberspace.de:/var/www/virtual/box/html/react-sled.andreasfaust.com", "deploy": "next build && next export && yarn deploy-files" } }