console/package.json

134 lines
5.2 KiB
JSON
Raw Normal View History

2022-05-18 07:26:57 +00:00
{
"name": "graphql-hive",
"version": "0.0.0",
2022-05-18 07:26:57 +00:00
"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@9.5.0",
"engines": {
2024-06-21 10:42:02 +00:00
"node": ">=22",
"pnpm": ">=9.4.0"
},
2022-05-18 07:26:57 +00:00
"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",
"dev:integration": "cd integration-tests && pnpm dev:integration",
"docker:build": "docker buildx bake -f docker/docker.hcl --load build",
"docker:override-up": "docker compose -f ./docker/docker-compose.override.yml up -d --remove-orphans",
"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,graphql}\"",
"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",
2023-03-07 09:34:59 +00:00
"prettier": "prettier --cache --write --list-different --ignore-unknown \"**/*\"",
"release": "pnpm build:libraries && changeset publish",
"seed": "tsx scripts/seed-local-env.ts",
"start": "pnpm run local:setup",
"test": "vitest",
"test:e2e": "CYPRESS_BASE_URL=$HIVE_APP_BASE_URL cypress run",
"test:integration": "cd integration-tests && pnpm test:integration",
"typecheck": "pnpm run -r --filter '!@hive/deployment' typecheck",
2022-12-02 09:04:48 +00:00
"upload-sourcemaps": "./scripts/upload-sourcemaps.sh",
"workspace": "pnpm run --filter $1 $2"
2022-05-18 07:26:57 +00:00
},
"devDependencies": {
"@0no-co/graphqlsp": "1.12.12",
"@actions/core": "1.10.1",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@eddeee888/gcg-typescript-resolver-files": "0.10.4",
"@graphql-codegen/add": "5.0.3",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.3.3",
"@graphql-codegen/graphql-modules-preset": "4.0.9",
"@graphql-codegen/typescript": "4.0.9",
"@graphql-codegen/typescript-operations": "4.2.3",
"@graphql-codegen/typescript-resolvers": "4.2.1",
"@graphql-codegen/urql-introspection": "3.0.0",
"@graphql-eslint/eslint-plugin": "3.20.1",
"@graphql-inspector/cli": "4.0.3",
"@manypkg/get-packages": "2.2.2",
"@next/eslint-plugin-next": "14.2.4",
"@parcel/watcher": "2.4.1",
"@sentry/cli": "2.33.1",
"@swc/core": "1.6.13",
"@theguild/eslint-config": "0.11.10",
"@theguild/prettier-config": "2.0.7",
"@types/node": "20.14.15",
"bob-the-bundler": "7.0.1",
"cypress": "13.13.2",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-plugin-cypress": "3.3.0",
"eslint-plugin-hive": "file:rules",
"eslint-plugin-tailwindcss": "3.17.4",
"fs-extra": "11.2.0",
"graphql": "16.9.0",
"husky": "9.0.11",
"jest-snapshot-serializer-raw": "2.0.0",
"lint-staged": "15.2.7",
"pg": "8.12.0",
"prettier": "3.3.3",
"prettier-plugin-sql": "0.18.1",
"prettier-plugin-tailwindcss": "0.6.5",
"pretty-quick": "4.0.0",
"rimraf": "4.4.1",
"ts-node": "10.9.2",
"tsup": "8.1.0",
"tsx": "4.16.2",
"turbo": "1.13.4",
"typescript": "5.5.4",
2024-04-07 08:57:03 +00:00
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.3"
2022-05-18 07:26:57 +00:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"pretty-quick --staged"
],
New redesign (#4) * New redesign * Use latest nextjs and bob It fixes the start command * fix: text overflow issue in the organization switcher dropdown (#14) * fix: text overflow issue in the organization switcher dropdown * feat: strict children typings * Force dark mode (#15) If somebody used the light mode before, Hive App displays light version of tailwind classes * Fix dev, GH app optional, project type instead of Connected (#16) * Make Github integration optional * Show project type instead of Connected * Fix dev command * Small changes to the version card (#17) * Small changes to the version card * Apply suggestions from code review * Polish (#18) * Make the design a bit more clean * Add a bit of separation * Apply suggestions from code review Co-authored-by: Dimitri POSTOLOV <en3m@ya.ru> Co-authored-by: Dimitri POSTOLOV <en3m@ya.ru> * fix: do not access properties on potential undefined variable (#33) * fix: renaming not being added during rebase (#32) * feat: add Mutation.createToken validation (#30) * Remove `#` from organization pages, polish subcription page (#34) * Remove `#` from project/target pages (#38) * fix: add missing service names for multi service projects (#35) * Re-design subscription (#40) * Missing list of changes in the schema diff view (#41) * Missing list of changes in the schema diff view Closes #19 * Apply suggestions from code review Co-authored-by: Dimitri POSTOLOV <en3m@ya.ru> * Move titleMap outside of the component Co-authored-by: Dimitri POSTOLOV <en3m@ya.ru> * Blurred fixed header + new `404` page + use `@theguild/prettier-config` (#44) * fix header * make things amazing * Update packages/web/app/pages/404.tsx * fix build * remove unused styles * Add --fix to lint-staged (#43) * Fix access (#45) * Fix access on organization level * Fix access on project level * Fix access on target level * Align with main * Bring back schema view (#49) * Add missing Mark as Valid button (#50) * Update the design of the operations view (#51) * Update doc link Co-authored-by: Dotan Simha <dotansimha@gmail.com> Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
2022-05-24 07:41:53 +00:00
"**/*.{js,cjs,mjs,ts,tsx}": [
"eslint --fix"
2022-05-18 07:26:57 +00:00
]
},
"pnpm": {
"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",
"@apollo/federation@0.38.1": "patches/@apollo__federation@0.38.1.patch",
"@theguild/editor@1.2.5": "patches/@theguild__editor@1.2.5.patch",
"eslint@8.57.0": "patches/eslint@8.57.0.patch",
"@graphql-eslint/eslint-plugin@3.20.1": "patches/@graphql-eslint__eslint-plugin@3.20.1.patch",
"got@14.4.1": "patches/got@14.4.1.patch",
2024-05-23 09:33:53 +00:00
"slonik@30.4.4": "patches/slonik@30.4.4.patch",
"@oclif/core@3.26.6": "patches/@oclif__core@3.26.6.patch",
"oclif@4.13.6": "patches/oclif@4.13.6.patch",
"graphiql@3.3.2": "patches/graphiql@3.3.0.patch"
}
}
2022-05-18 07:26:57 +00:00
}