package.json 953 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "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": "concurrently \"yarn start\" \"yarn storybook\" ",
  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. "@emotion/core": "^10.0.28",
  36. "react": "^16.13.1",
  37. "react-dom": "^16.13.1"
  38. }
  39. }