console/package.json
2023-03-07 10:45:14 +02:00

121 lines
4.5 KiB
JSON

{
"name": "graphql-hive",
"version": "0.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-hive"
},
"author": {
"email": "contact@the-guild.dev",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"private": true,
"packageManager": "pnpm@7.29.0",
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"scripts": {
"build": "pnpm turbo build --color",
"build:libraries": "pnpm graphql:generate && pnpm turbo build --filter=./packages/libraries/* --color",
"build:services": "pnpm turbo build --filter=./packages/services/**/* --color",
"build:web": "pnpm turbo build --filter=./packages/web/* --color",
"cargo:fix": "bash ./scripts/fix-symbolic-link.sh",
"docker:build": "docker buildx bake -f docker/docker.hcl --load build",
"env:sync": "tsx scripts/sync-env-files.ts",
"generate": "pnpm --filter @hive/storage db:generate && pnpm graphql:generate",
"graphql:generate": "graphql-codegen --config codegen.cjs",
"lint": "eslint --cache --ignore-path .gitignore \"{packages,cypress}/**/*.{ts,tsx}\"",
"lint:env-template": "tsx scripts/check-env-template.ts",
"lint:fix": "pnpm lint --fix",
"lint:prettier": "prettier --cache --check .",
"local:setup": "docker-compose -f ./docker/docker-compose.dev.yml up -d --remove-orphans && pnpm --filter @hive/migrations db:init",
"postinstall": "node ./scripts/patch-manifests.js && pnpm env:sync && node ./scripts/turborepo-cleanup.js && node ./scripts/turborepo-setup.js && pnpm cargo:fix",
"pre-commit": "exit 0 && lint-staged",
"prepare": "husky install",
"prerelease": "pnpm build:libraries",
"prettier": "prettier --cache --write --list-different .",
"release": "pnpm build:libraries && changeset publish",
"seed": "tsx scripts/seed-local-env.ts",
"test": "vitest .",
"test:e2e": "CYPRESS_BASE_URL=$HIVE_APP_BASE_URL cypress run",
"typecheck": "pnpm turbo typecheck --color",
"upload-sourcemaps": "./scripts/upload-sourcemaps.sh",
"workspace": "pnpm run --filter $1 $2"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"@graphql-codegen/add": "4.0.1",
"@graphql-codegen/cli": "3.2.1",
"@graphql-codegen/client-preset": "2.1.0",
"@graphql-codegen/graphql-modules-preset": "3.1.0",
"@graphql-codegen/typed-document-node": "3.0.1",
"@graphql-codegen/typescript": "3.0.1",
"@graphql-codegen/typescript-operations": "3.0.1",
"@graphql-codegen/typescript-resolvers": "3.1.0",
"@graphql-inspector/cli": "3.4.6",
"@manypkg/get-packages": "2.1.0",
"@next/eslint-plugin-next": "13.2.1",
"@sentry/cli": "2.14.4",
"@swc/core": "1.3.38",
"@theguild/eslint-config": "0.8.0",
"@theguild/prettier-config": "1.1.2",
"@types/node": "18.14.6",
"bob-the-bundler": "5.0.1",
"cypress": "12.7.0",
"dotenv": "16.0.3",
"eslint": "8.35.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-hive": "file:./rules",
"eslint-plugin-tailwindcss": "3.10.1",
"graphql": "16.6.0",
"husky": "8.0.3",
"jest-snapshot-serializer-raw": "1.2.0",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"prettier-plugin-tailwindcss": "0.2.4",
"pretty-quick": "3.1.3",
"rimraf": "4.3.1",
"ts-node": "10.9.1",
"tsup": "6.6.3",
"tsx": "3.12.3",
"turbo": "1.8.3",
"typescript": "4.9.5",
"vitest": "0.29.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"pretty-quick --staged"
],
"**/*.{js,cjs,mjs,ts,tsx}": [
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"@trivago/prettier-plugin-sort-imports>@babel/parser": "^7.20.7",
"tsup": "6.5.0"
},
"patchedDependencies": {
"@tgriesser/schemats@7.0.1": "patches/@tgriesser__schemats@7.0.1.patch",
"@theguild/buddy@0.1.0": "patches/@theguild__buddy@0.1.0.patch",
"mjml-core@4.13.0": "patches/mjml-core@4.13.0.patch",
"@oclif/core@1.23.0": "patches/@oclif__core@1.23.0.patch",
"oclif@3.7.0": "patches/oclif@3.7.0.patch",
"@slonik/migrator@0.11.3": "patches/@slonik__migrator@0.11.3.patch",
"@graphql-inspector/core@4.0.0": "patches/@graphql-inspector__core@4.0.0.patch",
"@apollo/federation@0.38.1": "patches/@apollo__federation@0.38.1.patch",
"@octokit/webhooks-methods@3.0.1": "patches/@octokit__webhooks-methods@3.0.1.patch",
"bullmq@3.10.0": "patches/bullmq@3.10.0.patch"
}
}
}