package.json 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@joystream/components",
  3. "version": "1.0.0",
  4. "description": "React Components for the Atlas Project",
  5. "homepage": "https://github.com/Joystream/atlas#readme",
  6. "license": "ISC",
  7. "main": "dist/index.cjs.js",
  8. "module": "dist/index.es.js",
  9. "types": "dist/types",
  10. "directories": {
  11. "src": "src",
  12. "test": "__tests__"
  13. },
  14. "files": [
  15. "src"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/Joystream/atlas.git"
  20. },
  21. "scripts": {
  22. "start": "rollup -wc",
  23. "dev": "yarn start",
  24. "index": "node scripts/build-index.js",
  25. "build": "rollup -c",
  26. "storybook": "start-storybook -p 6006",
  27. "build-storybook": "build-storybook",
  28. "now-build": "build-storybook",
  29. "test": "echo \"Error: run tests from root\" && exit 1"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/Joystream/atlas/issues"
  33. },
  34. "dependencies": {
  35. "react-player": "^2.2.0",
  36. "react-spring": "^8.0.27"
  37. },
  38. "peerDependencies": {
  39. "@babel/runtime": "^7.10.2",
  40. "@emotion/core": "^10.0.28",
  41. "react": "^16.13.1"
  42. }
  43. }