Files
TheGame/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

108 lines
4.2 KiB
JSON

{
"name": "@metafam/the-game",
"version": "0.2.0",
"license": "GPL-3.0",
"engines": {
"node": ">=16"
},
"private": true,
"scripts": {
"update-schema": "env-cmd -x get-graphql-schema -h x-hasura-admin-secret=\\$HASURA_GRAPHQL_ADMIN_SECRET http://localhost:8080/v1/graphql > schema.graphql",
"docker:start": "docker-compose up -d",
"docker:build": "docker-compose up --build -d",
"docker:stop": "docker-compose down",
"docker:clean": "docker-compose down -v",
"docker:dev": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose up --build",
"build": "lerna run build",
"web:dev": "lerna run dev --parallel --scope @metafam/web --include-dependencies",
"web:build": "lerna run build --scope @metafam/web --include-dependencies --stream",
"web:deps:build": "lerna run build --scope @metafam/ds --scope @metafam/utils",
"backend:dev": "lerna run dev --parallel --scope @metafam/backend",
"backend:build": "lerna run build --scope @metafam/backend --include-dependencies --stream",
"hasura": "hasura --project ./hasura",
"hasura:console": "yarn hasura console --no-browser --skip-update-check",
"hasura:migrate:init": "yarn hasura migrate create \"init\" --from-server",
"hasura:seed-db": "node hasura/seed-db.mjs",
"generate": "lerna run generate --parallel --",
"test": "lerna run test --parallel --",
"test:full": "yarn lint && yarn typecheck && yarn test",
"clean": "lerna clean",
"clean:libndist": "CMD='rm -rf node_modules/ packages/*/node_modules/ packages/*/dist/ packages/web/.next/' && echo \"$CMD\" && eval $CMD",
"clean:autogen": "find -type d -name autogen -exec rm -rfv '{}' \\; || true",
"clean:full": "yarn clean:libndist && yarn clean:autogen",
"format": "prettier --write \"{*,**/*}.{ts,tsx,js,jsx,json,yml,yaml,md}\"",
"lint": "eslint --ignore-path .gitignore \"./packages/**/*.{ts,tsx,js,jsx}\"",
"typecheck": "lerna run typecheck",
"prepare": "lerna run prepare && husky install",
"precommit": "lerna run --concurrency 1 --stream precommit && yarn lint-staged",
"prepush": "yarn typecheck",
"discord-bot": "yarn --cwd packages/discord-bot/",
"backend": "yarn --cwd packages/backend/",
"utils": "yarn --cwd packages/utils/",
"web": "yarn --cwd packages/web/",
"ds": "yarn --cwd packages/design-system/",
"release": "standard-version"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@graphql-codegen/add": "3.1.1",
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.5",
"@graphql-codegen/typescript-graphql-request": "4.3.7",
"@graphql-codegen/typescript-operations": "2.3.2",
"@graphql-codegen/typescript-react-apollo": "3.2.8",
"@graphql-codegen/typescript-resolvers": "2.5.2",
"@graphql-codegen/typescript-urql": "3.5.3",
"@types/jest": "^29.2.1",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"caniuse-lite": "^1.0.30001383",
"concurrently": "7.0.0",
"env-cmd": "10.1.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"get-graphql-schema": "2.1.2",
"graphql": "16.3.0",
"hasura-cli": "1.3.3",
"husky": "7.0.4",
"jest": "^29.2.2",
"lerna": "4.0.0",
"lint-staged": "12.3.5",
"prettier": "2.7.1",
"standard-version": "9.3.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"wait-on": "6.0.1"
},
"resolutions": {
"@ceramicnetwork/common": "2.18.0",
"ethers": "5.7.0",
"multihashes": "4.0.3"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"tslib": "^2.4.0",
"uuid": "8.3.2"
},
"packageManager": "yarn@1.19.0"
}