package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "query-node-mappings",
  3. "version": "0.1.0",
  4. "description": "Mappings for hydra-processor",
  5. "main": "lib/mappings/src/index.js",
  6. "license": "MIT",
  7. "scripts": {
  8. "build": "rm -rf lib && tsc --build tsconfig.json && yarn copy-types",
  9. "copy-types": "cp ../../types/augment/all/defs.json lib/generated/types/typedefs.json",
  10. "clean": "rm -rf lib",
  11. "lint": "eslint . --quiet --ext .ts",
  12. "checks": "prettier ./ --check && yarn lint",
  13. "format": "prettier ./ --write ",
  14. "postinstall": "yarn ts-node ./scripts/postInstall.ts",
  15. "postHydraCLIInstall": "yarn ts-node ./scripts/postHydraCLIInstall.ts",
  16. "bootstrap-data:fetch:members": "yarn ts-node ./bootstrap-data/scripts/fetchMembersData.ts",
  17. "bootstrap-data:fetch:categories": "yarn ts-node ./bootstrap-data/scripts/fetchCategories.ts",
  18. "bootstrap-data:fetch:workingGroups": "yarn ts-node ./bootstrap-data/scripts/fetchWorkingGroupsData.ts",
  19. "bootstrap-data:fetch": "yarn bootstrap-data:fetch:members && yarn bootstrap-data:fetch:workingGroups && yarn bootstrap-data:fetch:categories"
  20. },
  21. "dependencies": {
  22. "@polkadot/types": "5.9.1",
  23. "@joystream/hydra-common": "3.1.0-alpha.13",
  24. "@joystream/hydra-db-utils": "3.1.0-alpha.13",
  25. "@joystream/metadata-protobuf": "^1.0.0",
  26. "@joystream/sumer-types": "npm:@joystream/types@^0.16.0",
  27. "@joystream/types": "^0.17.0",
  28. "@joystream/warthog": "2.39.0",
  29. "@apollo/client": "^3.2.5"
  30. },
  31. "devDependencies": {
  32. "prettier": "^2.2.1",
  33. "ts-node": "^10.2.1",
  34. "typescript": "^4.4.3"
  35. }
  36. }