Files
TheGame/packages/backend/package.json
δυς 2921a47ef0 Review: meTokens ₍wᵢₜₕ gᵣₐₙᵤₗₐᵣ 𝄴ₒₘₘᵢₜₛ₎ (#1552)
* linting 🃡

* removing MetaMask specificity 🃢

* moving `StrictMode` to Next.js 🃣

* compressing & commafying 🃤

* upgrading eslint 👘

* removing preface from guild name 🃥

* removing unnecessary ESLint `no-console` directives 🌂

* fixing a typo in a comment 🃦

* updating GraphQL codegen for paid subgraph 🦏

* replacing Discord invite link 📌

* passing through The Graph API token to Docker ♾

* setting Docker ARG to set ENV 📟

* missed a file rename in frontend Docker config 🦀

* adding ts-node to fix Docker build issue ⸙

* trying to narrow down the 500 error's source in the test instance 

* exposing The Graph API token on Cloud Run 🦃

* more logging to try & find server error 🐠

* more logging 🧱

* trying to run Node.js in development mode on Cloud Run 🎁

* reconfiguring frontend Dockerfile to also run the dev environment 🌿

* dev mode seems to function 🧨

* 768MiB wasn't enough memory 🍁

* 1GiB wasn't enough memory 🔱

* 1.5GiB was interpreted as 1GiB 🥃

* 1536MiB wasn't enough memory 👾

* 2GiB wasn't enough memory 🧲

* 3GiB wasn't enough memory 🆎

* 4GiB might have been enough, but it still doesn't load 🧻

* 5GiB requires two CPUs 📝

* giving up on dev server; unexplained HTTP 429s 🎨

* disabling Honeybadger in test instances 📮

* trying an `ErrorBoundary` to gather more info 🕷

* setting GraphQL endpoint 🇲🇰

* exposing environment variables ⛈

* trying to expose `` 📻

* the Next compiled version still references `node_modules` 🦢

* removing Alchemy API key from sources 

* trying a different Docker build action 💉

* removing logging 🍿

* switching to Docker Buildx 👠

* missed an escaped newline 🗿

* trying a newer gcloud setup action 🦝

* hopefully fixing authentication 📴

* bunch of changes to the meTokens profile section 🦜

* need credentials file 🐆

* hunting for layout load error & pushing debug statements to testing 🥁

* updating eslint 💓

* trying to debug the missing Breadchain Coop 🧀

* apparently chose the wrong changeset 🐚

* removing logging 🥀
2023-05-15 09:12:03 -06:00

80 lines
2.3 KiB
JSON

{
"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"
}
}