package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "react-photo-view",
  3. "version": "0.1.1",
  4. "description": "React photo preview",
  5. "keywords": [
  6. "react",
  7. "react-component",
  8. "react-photo-view",
  9. "photo"
  10. ],
  11. "scripts": {
  12. "watch-tsc": "rc-tools run watch-tsc",
  13. "dist": "rc-tools run dist",
  14. "build": "rc-tools run build",
  15. "gh-pages": "rc-tools run gh-pages",
  16. "start": "rc-tools run server",
  17. "compile": "rc-tools run compile --babel-runtime",
  18. "pub": "rc-tools run pub --babel-runtime",
  19. "lint": "rc-tools run lint",
  20. "karma": "rc-test run karma",
  21. "saucelabs": "rc-test run saucelabs",
  22. "test": "rc-test run test",
  23. "prepublish": "rc-tools run guard",
  24. "chrome-test": "rc-test run chrome-test",
  25. "coverage": "rc-test run coverage"
  26. },
  27. "config": {
  28. "port": 8001
  29. },
  30. "files": [
  31. "lib"
  32. ],
  33. "main": "./lib",
  34. "module": "./es",
  35. "author": "LMY",
  36. "license": "MIT",
  37. "devDependencies": {
  38. "@types/react": "^16.4.6",
  39. "@types/react-dom": "^16.0.6",
  40. "babel-polyfill": "^6.23.0",
  41. "prettier": "^1.13.7",
  42. "rc-test": "^6.0.9",
  43. "rc-tools": "^8.1.1",
  44. "react": "^16.4.1",
  45. "react-dom": "^16.4.1"
  46. },
  47. "dependencies": {
  48. "lodash.throttle": "^4.1.1",
  49. "lodash.uniqueid": "^4.0.1",
  50. "react-motion": "^0.5.2",
  51. "styled-components": "^3.0.1"
  52. }
  53. }