Files
TheGame/packages/web/package.json
δυς 81883f940e Miscellaneous changes pulled from #1078 (#1115)
​#1078 is at about 4,000 lines changed and includes both code implementing features and unrelated functional and stylistic changes. This set of changes is about ⅓ of the total and should be largely independent.

These changes include:

* have Dependabot ignore `patch` version changes
* switch the cache invalidation Hasura action to asynchronous
* add a uniqueness constraint on the combination of player and skill ids
* print a comprehensible error message in the db seeding script on network errors
* add a mutex on the account creation process & allow it to happen only once *(subsequent runs were failing b/c of the uniqueness constraint on the ETH address & returning `null` (closes #1098))
* adds some more profile editing related types
* renames `HighLow7dType` to `HighLowType`
* refactors the `ColorBar` component to include links to a color explanation
* replaces `fake-tag`'s `gql` string identifier with the dependency-free `/* GraphQL */`
* rename `lib/hooks/useUserXp.ts` to `useUserXP.ts`
* fixed some typings to remove `any`s
* bumped some library versions & fixed the version numbers of some others
2022-02-08 06:01:06 -05:00

82 lines
2.3 KiB
JSON

{
"name": "@metafam/web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next\" \"yarn generate --watch\"",
"build": "next build",
"start": "next start",
"typecheck": "tsc",
"precommit": "yarn lint-staged",
"generate": "graphql-codegen --config=codegen.yml",
"prepare": "yarn generate"
},
"dependencies": {
"@3id/connect": "0.2.5",
"@ceramicnetwork/3id-did-resolver": "1.4.9",
"@ceramicnetwork/http-client": "1.5.7",
"@ceramicnetwork/stream-caip10-link": "1.2.2",
"@datamodels/identity-profile-basic": "0.1.2",
"@glazed/devtools": "0.1.3",
"@glazed/did-datastore": "0.2.1",
"@glazed/tile-loader": "0.1.2",
"@metafam/ds": "0.1.0",
"@metafam/utils": "1.0.1",
"@react-spring/web": "9.3.0",
"@types/draft-js": "0.11.3",
"@types/draftjs-to-html": "0.8.1",
"@types/react": "17.0.6",
"@types/react-draft-wysiwyg": "1.13.2",
"@types/react-grid-layout": "1.1.3",
"@urql/exchange-retry": "0.2.1",
"@walletconnect/web3-provider": "1.5.2",
"busboy": "0.3.1",
"cids": "1.1.9",
"classnames": "2.3.1",
"copy-to-clipboard": "3.3.1",
"dids": "2.4.3",
"draft-js": "0.11.7",
"draftjs-to-html": "0.9.1",
"ethers": "5.5.3",
"fake-tag": "3.0.0",
"graphql": "15.8.0",
"html-metadata-parser": "2.0.4",
"html-react-parser": "1.2.8",
"isomorphic-unfetch": "3.1.0",
"jotai": "1.5.3",
"jsdom": "19.0.0",
"moment": "2.29.1",
"next": "10.2.3",
"next-images": "1.7.0",
"next-transpile-modules": "9.0.0",
"next-urql": "3.3.2",
"node-fetch": "2.6.1",
"opensea-js": "1.2.7",
"react": "17.0.2",
"react-container-query": "0.12.0",
"react-dom": "17.0.2",
"react-draft-wysiwyg": "1.14.7",
"react-grid-layout": "1.3.0",
"react-hook-form": "7.21.0",
"react-icons": "4.2.0",
"react-qr-svg": "2.3.0",
"react-resizable": "3.0.4",
"react-vis": "1.11.7",
"rss-to-json": "2.0.2",
"sourcecred": "0.9.0",
"swr": "1.0.1",
"urql": "2.0.2",
"web3.storage": "3.5.0",
"web3modal": "1.9.4"
},
"devDependencies": {
"@types/busboy": "0.3.1",
"@types/react": "17.0.6",
"@types/react-grid-layout": "1.1.3",
"@types/react-vis": "1.11.10"
},
"resolutions": {
"typescript": "4.5.4"
}
}