Files
TheGame/package.json
vidvidvid 29ef8db2e0 Dependabot updates December (#958)
* chore: bump dids from 2.4.0 -> 2.4.3

* Upgrade Typescript to latest

* chore: bump @storybook/addon-links  6.3.2 -> 6.4.9

* chore: bump opensea-js from 1.2.1 -> 1.2.7

* chore: react 16 -> 17

* chore: upgrade jsdom 16 -> 19

* fix: yarn.lock

* chore: upgrade eslint-config-airbnb 0.0.1 -> 0.0.2

* chore: add versioning strategy to dependabot

so the package.json files will also increase the version instead of just package.lock in some cases

* fix: ss rendered page trying to access an unavailable component

from design system

Co-authored-by: Firat Tale <firat.tale@auto1.com>
2022-02-28 20:28:28 -08:00

91 lines
3.5 KiB
JSON

{
"name": "@metafam/the-game",
"version": "0.1.0",
"license": "GPL-3.0",
"engines": {
"node": ">=12"
},
"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",
"web:dev": "lerna run dev --parallel --scope @metafam/web --include-dependencies",
"web:build": "lerna run build --scope @metafam/web --include-dependencies --stream",
"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",
"hasura:migrate:init": "yarn hasura migrate create \"init\" --from-server",
"hasura:seed-local-db": "node hasura/seed-local-db.js",
"test": "lerna run test --parallel --",
"generate": "lerna run generate --parallel --",
"test:full": "yarn lint && yarn typecheck && yarn test",
"clean": "lerna clean",
"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": "2.0.2",
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-graphql-request": "3.2.0",
"@graphql-codegen/typescript-operations": "1.17.16",
"@graphql-codegen/typescript-react-apollo": "2.2.4",
"@graphql-codegen/typescript-resolvers": "1.19.1",
"@graphql-codegen/typescript-urql": "2.0.6",
"@types/jsdom": "^16.2.13",
"@types/node": "15.6.1",
"@types/react": "17.0.6",
"@types/react-dom": "17.0.5",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "5.4.0",
"env-cmd": "10.1.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "19.0.2",
"eslint-config-airbnb-typescript": "13.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"get-graphql-schema": "2.1.2",
"graphql": "15.5.0",
"hasura-cli": "1.3.3",
"husky": "6.0.0",
"jest": "26.6.3",
"lerna": "4.0.0",
"lint-staged": "11.0.0",
"prettier": "2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsdx": "0.14.1",
"standard-version": "9.3.2",
"typescript": "4.5.4",
"wait-on": "5.3.0"
},
"resolutions": {
"bcrypto": "5.2.0"
},
"dependencies": {}
}