1
0

package.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "description": "UI for consuming Joystream - a user governed video platform",
  3. "license": "GPL-3.0",
  4. "workspaces": [
  5. "packages/*"
  6. ],
  7. "private": true,
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/Joystream/atlas.git"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/Joystream/atlas/issues"
  14. },
  15. "scripts": {
  16. "atlas:dev": "yarn workspace @joystream/atlas dev",
  17. "atlas:build": "yarn workspace @joystream/atlas build",
  18. "atlas:lint": "yarn workspace @joystream/atlas lint",
  19. "atlas:storybook": "yarn workspace @joystream/atlas storybook",
  20. "atlas:build-storybook": "yarn workspace @joystream/atlas build-storybook",
  21. "atlas:test": "yarn workspace @joystream/atlas test",
  22. "atlas:test:dev": "yarn workspace @joystream/atlas test:dev",
  23. "atlas:tokens": "yarn workspace @joystream/atlas tokens",
  24. "atlas:tokens:fetch": "yarn workspace @joystream/atlas tokens:fetch",
  25. "atlas:tokens:build": "yarn workspace @joystream/atlas tokens:build",
  26. "atlas:graphql": "yarn workspace @joystream/atlas graphql",
  27. "atlas:svgs": "yarn workspace @joystream/atlas svgs",
  28. "atlas:svgs:illustrations": "yarn workspace @joystream/atlas svgs:illustrations",
  29. "atlas:svgs:icons": "yarn workspace @joystream/atlas svgs:icons",
  30. "atlas:svgs:logos": "yarn workspace @joystream/atlas svgs:logos",
  31. "meta-server:build": "yarn workspace @joystream/atlas-meta-server build",
  32. "avatar-service:build": "yarn workspace @joystream/atlas-avatar-service build",
  33. "docker:atlas": "ci/build-docker-atlas.sh",
  34. "docker:meta-server": "ci/build-docker-meta-server.sh",
  35. "docker:avatar-service": "ci/build-docker-avatar-service.sh",
  36. "lint-staged": "lint-staged",
  37. "postinstall": "husky install",
  38. "atlas:madge:circular": "yarn workspace @joystream/atlas madge:circular"
  39. },
  40. "lint-staged": {
  41. "*.{tsx,ts}": [
  42. "eslint --cache --fix",
  43. "prettier --write",
  44. "stylelint --fix"
  45. ]
  46. },
  47. "devDependencies": {
  48. "@emotion/eslint-plugin": "^11.10.0",
  49. "@joystream/prettier-config": "^1.0.0",
  50. "@stylelint/postcss-css-in-js": "^0.38.0",
  51. "@trivago/prettier-plugin-sort-imports": "^4.0.0",
  52. "@types/node": "^16.18.8",
  53. "@typescript-eslint/eslint-plugin": "^5.46.1",
  54. "@typescript-eslint/parser": "^5.46.1",
  55. "eslint": "^8.29.0",
  56. "eslint-config-prettier": "^8.5.0",
  57. "eslint-plugin-jest-dom": "^4.0.3",
  58. "eslint-plugin-react": "^7.31.11",
  59. "eslint-plugin-react-hooks": "^4.6.0",
  60. "eslint-plugin-unused-imports": "^2.0.0",
  61. "husky": "^8.0.2",
  62. "lint-staged": "^13.1.0",
  63. "prettier": "~2.8.1",
  64. "stylelint": "^14.16.0",
  65. "stylelint-config-prettier": "^9.0.4",
  66. "stylelint-config-standard": "^29.0.0",
  67. "typescript": "4.9.4"
  68. },
  69. "resolutions": {
  70. "@polkadot/api": "8.9.1",
  71. "@polkadot/keyring": "9.5.1",
  72. "@polkadot/types": "8.9.1",
  73. "@polkadot/util": "9.5.1",
  74. "@polkadot/util-crypto": "9.5.1",
  75. "@polkadot/networks": "9.5.1",
  76. "@polkadot/x-fetch": "9.5.1",
  77. "@polkadot/x-global": "9.5.1",
  78. "@polkadot/x-ws": "9.5.1",
  79. "bn.js": "5.2.1",
  80. "blake3": "patch:blake3@npm:2.1.7#.yarn/patches/blake3-npm-2.1.7-7bf40c44b4"
  81. },
  82. "engines": {
  83. "node": "^18"
  84. },
  85. "packageManager": "yarn@3.2.1"
  86. }