Files
TheGame/package.json
Sero 1345015cbd Eas - ethers compat issues between dependencies (#1748)
* eh

* dashboard layout

* t

* t

* ethers issues identified

* `/me` is loading & linting without error 🍞

* fixing an `import`s order error 🛼

* Update useEAS.ts

* eas

* attestations working

* get attestations

* attest

* chore: improve design

* chore: size

* change design

* fix: update schema

* chore

* eas

* eas

---------

Co-authored-by: dysbulic <dys@dhappy.org>
Co-authored-by: Udit Takkar <udit222001@gmail.com>
2024-04-29 07:38:35 -04:00

120 lines
5.1 KiB
JSON
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "@metafam/the-game",
"version": "0.2.0",
"license": "GPL-3.0",
"type": "module",
"engines": {
"node": ">=20"
},
"private": true,
"scripts": {
"pass": "echo ¡Passing‼",
"update-schema": "env-cmd -x rover graph introspect http://localhost:8080/v1/graphql --header \"x-hasura-admin-secret:\\$HASURA_GRAPHQL_ADMIN_SECRET\" --output 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": "DOCKER_BUILDKIT=1 docker compose up --build",
"build": "lerna run --concurrency 1 --stream 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 --concurrency 1 --stream build --scope @metafam/utils --scope @metafam/ds",
"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-disabled": "lerna run prepare && husky install",
"precommit": "yarn generate && lerna run --concurrency 1 --stream precommit && yarn lint-staged",
"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",
"composedb:create-composite": "composedb composite:create packages/utils/schema/user-profile.graphql -o packages/utils/schema/user-profile-composite.json",
"composedb:create-definition": "composedb composite:compile packages/utils/schema/user-profile-composite.json packages/utils/schema/user-profile-definition.json",
"composedb:graphql-generate": "composedb composite:compile packages/utils/schema/user-profile-composite.json packages/utils/src/graphql/composeDBDefinition.ts",
"composedb:graphql-server": "composedb graphql:server --graphiql packages/utils/schema/user-profile-definition.json"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@apollo/rover": "^0.18.0",
"@composedb/cli": "^0.4.4",
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@types/jest": "^29.2.1",
"@types/node": "^20.8.6",
"@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": "^6.6.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",
"hasura-cli": "2.23.0",
"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": "^5.0.0",
"wait-on": "6.0.1"
},
"resolutions": {
"@ceramicnetwork/common": "2.31.1",
"did-resolver": "4.1.0",
"dids": "4.0.4",
"graphql": "16.5.0",
"multihashes": "4.0.3",
"node-gyp": "10.0.1",
"better-sqlite3": "9.4.5",
"nan": "2.18.0"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"dag-jose": "^4.0.0",
"tslib": "^2.4.0",
"uuid": "8.3.2"
},
"packageManager": "yarn@1.19.0"
}