mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
128 lines
5 KiB
JSON
128 lines
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@8.6.3",
|
|
"engines": {
|
|
"node": ">=18",
|
|
"pnpm": ">=8.6.0"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm turbo build --color",
|
|
"build:libraries": "pnpm prebuild && pnpm graphql:generate && pnpm turbo build --filter=./packages/libraries/* --color",
|
|
"build:services": "pnpm prebuild && pnpm turbo build --filter=./packages/services/**/* --filter=./packages/migrations --color",
|
|
"build:web": "pnpm prebuild && 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.mts",
|
|
"integration:prepare": "cd integration-tests && ./local.sh",
|
|
"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 && pnpm cargo:fix",
|
|
"pre-commit": "exit 0 && lint-staged",
|
|
"prebuild": "rimraf deploy-tmp && rimraf packages/**/deploy-tmp",
|
|
"prepare": "husky install",
|
|
"prerelease": "pnpm build:libraries",
|
|
"prettier": "prettier --cache --write --list-different --ignore-unknown \"**/*\"",
|
|
"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",
|
|
"test:integration": "cd integration-tests && pnpm test:integration",
|
|
"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.2",
|
|
"@graphql-codegen/add": "5.0.0",
|
|
"@graphql-codegen/cli": "4.0.1",
|
|
"@graphql-codegen/client-preset": "4.0.1",
|
|
"@graphql-codegen/graphql-modules-preset": "4.0.1",
|
|
"@graphql-codegen/typed-document-node": "5.0.1",
|
|
"@graphql-codegen/typescript": "4.0.1",
|
|
"@graphql-codegen/typescript-operations": "4.0.1",
|
|
"@graphql-codegen/typescript-resolvers": "4.0.1",
|
|
"@graphql-inspector/cli": "3.4.19",
|
|
"@manypkg/get-packages": "2.2.0",
|
|
"@next/eslint-plugin-next": "13.4.11",
|
|
"@sentry/cli": "2.19.4",
|
|
"@swc/core": "1.3.70",
|
|
"@theguild/eslint-config": "0.11.0",
|
|
"@theguild/prettier-config": "1.2.0",
|
|
"@types/node": "18.16.19",
|
|
"bob-the-bundler": "7.0.1",
|
|
"cypress": "12.17.2",
|
|
"dotenv": "16.3.1",
|
|
"eslint": "8.43.0",
|
|
"eslint-plugin-cypress": "2.13.3",
|
|
"eslint-plugin-hive": "file:./rules",
|
|
"eslint-plugin-tailwindcss": "3.12.1",
|
|
"fs-extra": "11.1.1",
|
|
"graphql": "16.6.0",
|
|
"husky": "8.0.3",
|
|
"jest-snapshot-serializer-raw": "1.2.0",
|
|
"lint-staged": "13.2.3",
|
|
"pg": "^8.10.0",
|
|
"prettier": "2.8.8",
|
|
"prettier-plugin-sql": "0.15.1",
|
|
"prettier-plugin-tailwindcss": "0.4.1",
|
|
"pretty-quick": "3.1.3",
|
|
"rimraf": "4.4.1",
|
|
"ts-node": "10.9.1",
|
|
"tsup": "7.1.0",
|
|
"tsx": "3.12.7",
|
|
"turbo": "1.10.9",
|
|
"typescript": "5.1.6",
|
|
"vitest": "0.31.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*": [
|
|
"pretty-quick --staged"
|
|
],
|
|
"**/*.{js,cjs,mjs,ts,tsx}": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.cd77847.0"
|
|
},
|
|
"patchedDependencies": {
|
|
"@theguild/buddy@0.1.0": "patches/@theguild__buddy@0.1.0.patch",
|
|
"mjml-core@4.14.0": "patches/mjml-core@4.14.0.patch",
|
|
"oclif@3.9.1": "patches/oclif@3.9.1.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.15.8": "patches/bullmq@3.15.8.patch",
|
|
"@theguild/editor@1.2.5": "patches/@theguild__editor@1.2.5.patch",
|
|
"eslint@8.43.0": "patches/eslint@8.43.0.patch",
|
|
"@oclif/core@2.8.5": "patches/@oclif__core@2.8.5.patch",
|
|
"@theguild/components@4.6.5": "patches/@theguild__components@4.6.5.patch",
|
|
"nextra-theme-docs@2.7.0": "patches/nextra-theme-docs@2.7.0.patch",
|
|
"@graphql-eslint/eslint-plugin@3.20.1": "patches/@graphql-eslint__eslint-plugin@3.20.1.patch"
|
|
}
|
|
}
|
|
}
|