package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. },
  15. "dependencies": {
  16. "@apollo/client": "^3.2.5",
  17. "@joystream/types": "^0.15.0",
  18. "@polkadot/api": "^2.4.1",
  19. "@polkadot/keyring": "^3.6.1",
  20. "@types/async-lock": "^1.1.2",
  21. "@types/bn.js": "^4.11.5",
  22. "@types/lowdb": "^1.0.9",
  23. "async-lock": "^1.2.0",
  24. "bn.js": "^4.11.8",
  25. "cross-fetch": "^3.0.6",
  26. "dotenv": "^8.2.0",
  27. "fs": "^0.0.1-security",
  28. "uuid": "^7.0.3"
  29. },
  30. "devDependencies": {
  31. "@polkadot/ts": "^0.3.14",
  32. "@types/chai": "^4.2.11",
  33. "@types/uuid": "^7.0.2",
  34. "chai": "^4.2.0",
  35. "prettier": "2.0.2",
  36. "ts-node": "^8.8.1",
  37. "typescript": "^3.8.3",
  38. "@graphql-codegen/cli": "^1.21.4",
  39. "@graphql-codegen/typescript": "^1.22.0",
  40. "@graphql-codegen/import-types-preset": "^1.18.1",
  41. "@graphql-codegen/typescript-operations": "^1.17.16",
  42. "@graphql-codegen/typescript-document-nodes": "^1.17.11"
  43. },
  44. "volta": {
  45. "extends": "../../package.json"
  46. }
  47. }