package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "integration-tests",
  3. "version": "0.1.0",
  4. "license": "GPL-3.0-only",
  5. "scripts": {
  6. "build": "tsc --noEmit",
  7. "test": "./run-tests.sh",
  8. "run-test-scenario": "./run-test-scenario.sh",
  9. "node-ts-strict": "node -r ts-node/register --unhandled-rejections=strict",
  10. "lint": "eslint . --quiet --ext .ts",
  11. "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
  12. "format": "prettier ./ --write",
  13. "generate:graphql-types": "graphql-codegen",
  14. "generate:all": "yarn generate:graphql-types"
  15. },
  16. "dependencies": {
  17. "@apollo/client": "^3.2.5",
  18. "@joystream/types": "^0.18.0",
  19. "@polkadot/api": "5.3.2",
  20. "@polkadot/keyring": "^7.1.1",
  21. "@types/async-lock": "^1.1.2",
  22. "@types/bn.js": "^4.11.5",
  23. "@types/lowdb": "^1.0.9",
  24. "async-lock": "^1.2.0",
  25. "bn.js": "^4.11.8",
  26. "cross-fetch": "^3.0.6",
  27. "dotenv": "^8.2.0",
  28. "fs": "^0.0.1-security",
  29. "uuid": "^7.0.3"
  30. },
  31. "devDependencies": {
  32. "@polkadot/ts": "^0.4.4",
  33. "@types/chai": "^4.2.11",
  34. "@types/uuid": "^7.0.2",
  35. "chai": "^4.2.0",
  36. "prettier": "2.0.2",
  37. "ts-node": "^8.8.1",
  38. "typescript": "^4.3.5",
  39. "@graphql-codegen/cli": "^1.21.4",
  40. "@graphql-codegen/typescript": "^1.22.0",
  41. "@graphql-codegen/import-types-preset": "^1.18.1",
  42. "@graphql-codegen/typescript-operations": "^1.17.16",
  43. "@graphql-codegen/typescript-document-nodes": "^1.17.11"
  44. },
  45. "volta": {
  46. "extends": "../../package.json"
  47. }
  48. }