package.json 962 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@polkadot/portal",
  3. "version": "0.1.0",
  4. "description": "A Portal into the Polkadot network",
  5. "main": "src/index.js",
  6. "repository": "https://github.com/polkadot-js/portal.git",
  7. "author": "Jaco Greeff <jacogr@gmail.com>",
  8. "license": "ISC",
  9. "private": false,
  10. "scripts": {
  11. "build": "react-scripts build",
  12. "check": "stylelint 'src/**/*.css' && eslint src && flow check",
  13. "start": "react-scripts start",
  14. "test": "react-scripts test --env=jsdom --coverage"
  15. },
  16. "devDependencies": {
  17. "@polkadot/content-testing": "^0.1.0",
  18. "@polkadot/ui-react": "^0.9.10",
  19. "i18next": "^11.1.1",
  20. "i18next-browser-languagedetector": "^2.2.0",
  21. "i18next-xhr-backend": "^1.5.1",
  22. "react": "^16.3.1",
  23. "react-dom": "^16.3.1",
  24. "react-i18next": "^7.5.1",
  25. "react-remarkable": "^1.1.3",
  26. "react-router-dom": "^4.2.2",
  27. "semantic-ui-css": "^2.3.1",
  28. "semantic-ui-react": "^0.79.1"
  29. },
  30. "dependencies": {}
  31. }