123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "query-node-mappings",
- "version": "0.1.0",
- "description": "Mappings for hydra-processor",
- "main": "lib/mappings/src/index.js",
- "license": "MIT",
- "scripts": {
- "build": "rm -rf lib && tsc --build tsconfig.json && yarn copy-types",
- "copy-types": "cp ../../types/augment/all/defs.json lib/generated/types/typedefs.json",
- "clean": "rm -rf lib",
- "lint": "eslint . --quiet --ext .ts",
- "checks": "prettier ./ --check && yarn lint",
- "format": "prettier ./ --write ",
- "bootstrap-data:fetch:members": "yarn ts-node ./bootstrap-data/scripts/fetchMembersData.ts",
- "bootstrap-data:fetch:categories": "yarn ts-node ./bootstrap-data/scripts/fetchCategories.ts",
- "bootstrap-data:fetch:workingGroups": "yarn ts-node ./bootstrap-data/scripts/fetchWorkingGroupsData.ts",
- "bootstrap-data:fetch": "yarn bootstrap-data:fetch:members && yarn bootstrap-data:fetch:workingGroups && yarn bootstrap-data:fetch:categories"
- },
- "dependencies": {
- "@polkadot/types": "5.9.1",
- "@joystream/hydra-common": "3.1.0-alpha.16",
- "@joystream/hydra-db-utils": "3.1.0-alpha.16",
- "@joystream/metadata-protobuf": "^1.0.0",
- "@joystream/types": "^0.17.2",
- "@joystream/warthog": "2.41.2",
- "@apollo/client": "^3.2.5"
- },
- "devDependencies": {
- "prettier": "^2.2.1",
- "ts-node": "^10.2.1",
- "typescript": "^4.4.3"
- }
- }
|