package.json 814 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "joystream-testing",
  3. "version": "0.1.0",
  4. "license": "GPL-3.0-only",
  5. "scripts": {
  6. "build": "tsc --build tsconfig.json",
  7. "test": "mocha -r ts-node/register src/tests/*",
  8. "lint": "tslint --project tsconfig.json",
  9. "prettier": "prettier --write ./src"
  10. },
  11. "dependencies": {
  12. "@joystream/types": "^0.7.0",
  13. "@polkadot/api": "^0.96.1",
  14. "@polkadot/keyring": "^1.7.0-beta.5",
  15. "@types/bn.js": "^4.11.5",
  16. "bn.js": "^4.11.8",
  17. "dotenv": "^8.2.0",
  18. "uuid": "^7.0.3"
  19. },
  20. "devDependencies": {
  21. "@polkadot/ts": "^0.3.14",
  22. "@types/chai": "^4.2.11",
  23. "@types/mocha": "^7.0.2",
  24. "@types/uuid": "^7.0.2",
  25. "chai": "^4.2.0",
  26. "mocha": "^7.1.1",
  27. "prettier": "2.0.2",
  28. "ts-node": "^8.8.1",
  29. "tslint": "^6.1.0",
  30. "typescript": "^3.8.3"
  31. }
  32. }