package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "atlas-app",
  3. "version": "1.0.0",
  4. "description": "A user governed video platform",
  5. "homepage": "https://github.com/Joystream/joystream/tree/init_atlas/atlas",
  6. "license": "ISC",
  7. "main": "../../dist/app.html",
  8. "directories": {
  9. "src": "src",
  10. "test": "__tests__"
  11. },
  12. "files": [
  13. "src"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/Joystream/joystream.git"
  18. },
  19. "scripts": {
  20. "start": "parcel public/index.html",
  21. "build": "parcel build public/index.html",
  22. "dev": "parcel public/index.html",
  23. "storybook": "start-storybook -p 6006 --quiet -c src/shared/.storybook",
  24. "build-storybook": "build-storybook -c src/shared/.storybook",
  25. "test": "echo \"Error: run tests from root\" && exit 1",
  26. "chromatic": "chromatic --project-token=qq8aetz26u"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/Joystream/joystream/issues"
  30. },
  31. "dependencies": {
  32. "@emotion/core": "^10.0.28",
  33. "@parcel/transformer-svg-react": "2.0.0-beta.1",
  34. "@parcel/transformer-svgo": "2.0.0-beta.1",
  35. "@reach/router": "^1.3.3",
  36. "@types/reach__router": "^1.3.5",
  37. "@types/react": "^16.9.36",
  38. "@types/react-dom": "^16.9.8",
  39. "@types/react-redux": "^7.1.9",
  40. "@types/redux": "^3.6.0",
  41. "chromatic": "^4.0.3",
  42. "emotion-normalize": "^10.1.0",
  43. "parcel": "2.0.0-beta.1",
  44. "react": "^16.13.1",
  45. "react-dom": "^16.13.1",
  46. "react-player": "^2.2.0",
  47. "react-redux": "^7.2.0",
  48. "react-spring": "^8.0.27",
  49. "redux": "^4.0.5",
  50. "use-resize-observer": "^6.1.0"
  51. },
  52. "alias": {
  53. "components": "./src/components",
  54. "shared": "./src/shared",
  55. "store": "./src/store",
  56. "theme": "./src/theme",
  57. "views": "./src/views"
  58. }
  59. }