package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "cd-schemas",
  3. "version": "0.1.0",
  4. "description": "JSON schemas, inputs and related tooling for Joystream content directory 2.0",
  5. "author": "Joystream contributors",
  6. "scripts": {
  7. "validate": "ts-node ./scripts/validate.ts",
  8. "generate:types": "ts-node --files ./scripts/schemasToTS.ts",
  9. "generate:entity-schemas": "ts-node ./scripts/inputSchemasToEntitySchemas.ts",
  10. "generate:all": "yarn generate:entity-schemas && yarn generate:types",
  11. "initialize:alice-as-lead": "ts-node ./scripts/devInitAliceLead.ts",
  12. "initialize:content-dir": "ts-node ./scripts/initializeContentDir.ts",
  13. "initialize:dev": "yarn initialize:alice-as-lead && yarn initialize:content-dir"
  14. },
  15. "dependencies": {
  16. "ajv": "6.12.5",
  17. "@joystream/prettier-config": "*",
  18. "@polkadot/api": "1.26.1",
  19. "@joystream/types": "^0.14.0"
  20. },
  21. "devDependencies": {
  22. "ts-node": "^8.8.2",
  23. "typescript": "^3.9.7",
  24. "json-schema-to-typescript": "^9.1.1"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/Joystream/joystream.git"
  29. },
  30. "license": "GPL-3.0-only",
  31. "bugs": {
  32. "url": "https://github.com/Joystream/joystream/issues"
  33. },
  34. "homepage": "https://github.com/Joystream/joystream"
  35. }