package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. {
  2. "name": "joystream",
  3. "private": true,
  4. "version": "0.1.0",
  5. "dependencies": {
  6. "@joystream/types": "^0.16.1",
  7. "@polkadot/api": "4.2.1",
  8. "@storybook/addon-backgrounds": "^5.1.9",
  9. "@storybook/addon-centered": "^5.1.9",
  10. "@storybook/addon-info": "^5.1.9",
  11. "@storybook/addon-viewport": "^5.1.9",
  12. "@svgr/webpack": "^4.3.0",
  13. "axios": "^0.21.1",
  14. "babel-jest": "^24.8.0",
  15. "babel-preset-gatsby": "^0.5.5",
  16. "classnames": "^2.2.6",
  17. "css-loader": "^3.0.0",
  18. "eslint-plugin-import": "^2.18.2",
  19. "gatsby": "^2.31.1",
  20. "gatsby-image": "^2.2.1",
  21. "gatsby-plugin-anchor-links": "^1.1.1",
  22. "gatsby-plugin-google-analytics": "^2.1.0",
  23. "gatsby-plugin-hotjar": "^1.0.1",
  24. "gatsby-plugin-manifest": "^2.2.0",
  25. "gatsby-plugin-offline": "^2.2.0",
  26. "gatsby-plugin-polyfill-io": "^1.1.0",
  27. "gatsby-plugin-react-helmet": "^3.1.0",
  28. "gatsby-plugin-react-i18next": "^1.1.1",
  29. "gatsby-plugin-sass": "^2.1.0",
  30. "gatsby-plugin-sharp": "^2.2.1",
  31. "gatsby-plugin-stylelint": "^3.2.0",
  32. "gatsby-plugin-svgr": "^2.0.2",
  33. "gatsby-source-filesystem": "^2.1.0",
  34. "gatsby-transformer-sharp": "^2.2.0",
  35. "get-value": "^3.0.1",
  36. "i18next": "^20.2.1",
  37. "identity-obj-proxy": "^3.0.0",
  38. "intersection-observer": "^0.7.0",
  39. "jest": "^24.8.0",
  40. "jsdom": "^15.1.1",
  41. "node-sass": "^4.12.0",
  42. "openpgp": "^4.10.10",
  43. "pre-commit": "^1.2.2",
  44. "prismjs": "^1.21.0",
  45. "prop-types": "^15.7.2",
  46. "pure-react-carousel": "^1.27.1",
  47. "rc-slider": "^8.7.1",
  48. "react": "^16.8.6",
  49. "react-anchor-link-smooth-scroll": "^1.0.12",
  50. "react-countdown-now": "^2.1.1",
  51. "react-dom": "^16.8.6",
  52. "react-helmet": "^5.2.1",
  53. "react-i18next": "^11.8.12",
  54. "react-intersection-observer": "^8.23.0",
  55. "react-loader-spinner": "^3.1.14",
  56. "react-markdown": "^4.1.0",
  57. "react-media": "^1.10.0",
  58. "react-modal": "^3.8.2",
  59. "react-player": "^2.6.0",
  60. "react-plx": "^1.3.13",
  61. "react-spring": "^8.0.27",
  62. "recharts": "^2.0.9",
  63. "sass-loader": "^7.1.0",
  64. "smoothscroll-polyfill": "^0.4.4",
  65. "stickybits": "^3.6.6",
  66. "style-loader": "^0.23.1",
  67. "stylelint": "^10.1.0",
  68. "stylelint-config-standard": "^18.3.0",
  69. "stylelint-order": "^3.0.0",
  70. "stylelint-scss": "^3.8.0",
  71. "stylelint-webpack-plugin": "^0.10.5",
  72. "url-loader": "^2.1.0"
  73. },
  74. "devDependencies": {
  75. "@babel/core": "^7.4.5",
  76. "@storybook/addon-actions": "^5.1.9",
  77. "@storybook/addon-links": "^5.1.9",
  78. "@storybook/addon-storysource": "^5.1.9",
  79. "@storybook/addons": "^5.1.9",
  80. "@storybook/react": "^5.1.9",
  81. "babel-loader": "^8.0.6",
  82. "babel-plugin-prismjs": "^2.0.1",
  83. "enzyme": "^3.10.0",
  84. "enzyme-adapter-react-16": "^1.14.0",
  85. "enzyme-to-json": "^3.3.5",
  86. "pre-commit": "^1.2.2",
  87. "prettier": "^1.18.2"
  88. },
  89. "keywords": [
  90. "gatsby"
  91. ],
  92. "license": "MIT",
  93. "scripts": {
  94. "lint": "eslint --ignore-path .gitignore . --ext js --ext jsx",
  95. "lint:fix": "yarn lint --fix",
  96. "stylelint": "stylelint \"src/**/*.scss\"",
  97. "build": "gatsby build",
  98. "develop": "gatsby develop",
  99. "format": "prettier --write src/**/*.{js,jsx}",
  100. "start": "yarn develop",
  101. "serve": "gatsby serve",
  102. "test": "jest",
  103. "fetch-assets-data": "node ./src/scripts/fetchAssetsData",
  104. "storybook": "NODE_ENV=production start-storybook -p 6006",
  105. "build-storybook": "gatsby build && NODE_ENV=production build-storybook -c .storybook --loglevel error --quiet"
  106. },
  107. "pre-commit": [
  108. "lint",
  109. "stylelint",
  110. "test"
  111. ]
  112. }