{ "name": "@metafam/backend", "private": true, "version": "0.2.0", "description": "", "author": "MetaFam", "license": "ISC", "type": "module", "main": "dist/index.js", "scripts": { "start": "node --trace-warnings dist/index.js", "build": "yarn generate && tsc -b", "dev": "tsc --build && concurrently 'tsc --watch --preserveWatchOutput' nodemon 'yarn generate # --watch'", "typecheck": "yarn build", "precommit": "yarn lint-staged", "generate": "graphql-codegen && export OUT=src/lib/autogen/daohaus-sdk.ts && awk '!/MolochVersion = .molochVersion/' $OUT > $OUT.filtered && mv $OUT.filtered $OUT", "lintfix": "eslint --fix", "test": "jest --passWithNoTests" }, "dependencies": { "@ceramicnetwork/common": "^2.18.0", "@ceramicnetwork/http-client": "^2.15.0", "@ceramicnetwork/stream-caip10-link": "^2.13.0", "@datamodels/identity-accounts-web": "^0.2.0", "@datamodels/identity-profile-basic": "^0.2.0", "@glazed/datamodel": "^0.3.1", "@glazed/devtools": "^0.2.0", "@glazed/did-datastore": "^0.3.2", "@glazed/tile-loader": "^0.2.1", "@graphql-tools/schema": "8.3.2", "@metafam/discord-bot": "0.1.0", "@metafam/utils": "1.0.1", "@self.id/3box-legacy": "^0.3.0", "@types/react-redux": "^7.1.24", "bluebird": "3.7.2", "body-parser": "1.19.2", "bottleneck": "^2.19.5", "cors": "2.8.5", "discord.js": "13.6.0", "dotenv": "16.0.0", "ethers": "5.6.9", "express": "^4.18.2", "express-graphql": "0.12.0", "graphql": "16.3.0", "graphql-request": "4.0.0", "graphql-tag": "2.12.6", "imgix-core-js": "2.3.2", "node-fetch": "3.2.1", "reflect-metadata": "0.1.13", "showdown": "^2.1.0", "sourcecred": "0.11.0", "tsconfig-paths": "^4.1.0", "uuid": "8.3.2", "web3.storage": "3.5.6" }, "devDependencies": { "@types/bluebird": "3.5.36", "@types/body-parser": "1.19.2", "@types/cors": "2.8.12", "@types/node-fetch": "2.5.10", "@types/showdown": "^2.0.0", "@types/uuid": "8.3.0", "nock": "13.2.4", "nodemon": "^2.0.20", "ts-node": "^10.9.1" }, "resolutions": { "typescript": "4.8.4" }, "nodemonConfig": { "exec": "node --inspect=0.0.0.0:4322 --loader ts-node/esm src/index.ts", "watch": [ ".", "../discord-bot", "../utils" ], "ext": "ts" } }