2022-05-18 07:26:57 +00:00
|
|
|
{
|
|
|
|
|
"name": "graphql-hive",
|
2022-11-24 10:00:41 +00:00
|
|
|
"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",
|
2022-11-24 10:00:41 +00:00
|
|
|
"private": true,
|
2024-05-21 07:57:46 +00:00
|
|
|
"packageManager": "pnpm@9.1.2",
|
2022-11-24 10:00:41 +00:00
|
|
|
"engines": {
|
2024-02-28 09:41:46 +00:00
|
|
|
"node": ">=21.6",
|
2024-04-29 07:50:30 +00:00
|
|
|
"pnpm": ">=9.0.6"
|
2022-11-24 10:00:41 +00:00
|
|
|
},
|
2022-05-18 07:26:57 +00:00
|
|
|
"scripts": {
|
2022-12-20 14:34:46 +00:00
|
|
|
"build": "pnpm turbo build --color",
|
2023-07-17 15:19:08 +00:00
|
|
|
"build:libraries": "pnpm prebuild && pnpm graphql:generate && pnpm turbo build --filter=./packages/libraries/* --color",
|
2023-09-06 09:02:49 +00:00
|
|
|
"build:services": "pnpm prebuild && pnpm turbo build --filter=./packages/services/**/* --filter=./packages/migrations --color",
|
2023-07-17 15:19:08 +00:00
|
|
|
"build:web": "pnpm prebuild && pnpm turbo build --filter=./packages/web/* --color",
|
2023-01-31 10:05:36 +00:00
|
|
|
"cargo:fix": "bash ./scripts/fix-symbolic-link.sh",
|
2023-01-24 18:15:24 +00:00
|
|
|
"docker:build": "docker buildx bake -f docker/docker.hcl --load build",
|
2023-02-22 07:41:00 +00:00
|
|
|
"env:sync": "tsx scripts/sync-env-files.ts",
|
2022-11-24 10:00:41 +00:00
|
|
|
"generate": "pnpm --filter @hive/storage db:generate && pnpm graphql:generate",
|
2023-07-25 07:12:08 +00:00
|
|
|
"graphql:generate": "graphql-codegen --config codegen.mts",
|
2023-03-16 07:37:28 +00:00
|
|
|
"integration:prepare": "cd integration-tests && ./local.sh",
|
2023-10-04 18:45:04 +00:00
|
|
|
"lint": "eslint --cache --ignore-path .gitignore \"{packages,cypress}/**/*.{ts,tsx,graphql}\"",
|
2023-02-10 01:15:24 +00:00
|
|
|
"lint:env-template": "tsx scripts/check-env-template.ts",
|
2023-01-11 10:26:42 +00:00
|
|
|
"lint:fix": "pnpm lint --fix",
|
2022-11-24 10:00:41 +00:00
|
|
|
"lint:prettier": "prettier --cache --check .",
|
2023-01-24 18:15:24 +00:00
|
|
|
"local:setup": "docker-compose -f ./docker/docker-compose.dev.yml up -d --remove-orphans && pnpm --filter @hive/migrations db:init",
|
2023-07-17 15:19:08 +00:00
|
|
|
"postinstall": "node ./scripts/patch-manifests.js && pnpm env:sync && node ./scripts/turborepo-cleanup.js && pnpm cargo:fix",
|
2023-01-11 10:26:42 +00:00
|
|
|
"pre-commit": "exit 0 && lint-staged",
|
2023-07-17 15:19:08 +00:00
|
|
|
"prebuild": "rimraf deploy-tmp && rimraf packages/**/deploy-tmp",
|
2022-12-27 22:36:08 +00:00
|
|
|
"prepare": "husky install",
|
2022-11-01 00:11:53 +00:00
|
|
|
"prerelease": "pnpm build:libraries",
|
2023-03-07 09:34:59 +00:00
|
|
|
"prettier": "prettier --cache --write --list-different --ignore-unknown \"**/*\"",
|
2022-12-20 14:34:46 +00:00
|
|
|
"release": "pnpm build:libraries && changeset publish",
|
2023-02-22 07:41:00 +00:00
|
|
|
"seed": "tsx scripts/seed-local-env.ts",
|
2024-02-06 11:10:19 +00:00
|
|
|
"start": "pnpm run local:setup",
|
2023-04-20 08:31:25 +00:00
|
|
|
"test": "vitest",
|
2022-12-02 10:12:07 +00:00
|
|
|
"test:e2e": "CYPRESS_BASE_URL=$HIVE_APP_BASE_URL cypress run",
|
2023-05-09 08:07:17 +00:00
|
|
|
"test:integration": "cd integration-tests && pnpm test:integration",
|
2023-07-27 12:14:18 +00:00
|
|
|
"typecheck": "pnpm run -r 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": {
|
2024-05-16 07:20:48 +00:00
|
|
|
"@0no-co/graphqlsp": "1.12.3",
|
2023-09-27 10:37:10 +00:00
|
|
|
"@actions/core": "1.10.1",
|
2023-11-28 11:01:28 +00:00
|
|
|
"@changesets/changelog-github": "0.5.0",
|
2024-05-19 14:24:29 +00:00
|
|
|
"@changesets/cli": "2.27.2",
|
2024-02-08 08:00:03 +00:00
|
|
|
"@graphql-codegen/add": "5.0.2",
|
|
|
|
|
"@graphql-codegen/cli": "5.0.2",
|
2024-05-19 14:48:07 +00:00
|
|
|
"@graphql-codegen/client-preset": "4.2.6",
|
|
|
|
|
"@graphql-codegen/graphql-modules-preset": "4.0.7",
|
2024-05-02 15:22:20 +00:00
|
|
|
"@graphql-codegen/schema-ast": "4.0.2",
|
2024-05-19 14:48:07 +00:00
|
|
|
"@graphql-codegen/typescript": "4.0.7",
|
|
|
|
|
"@graphql-codegen/typescript-operations": "4.2.1",
|
|
|
|
|
"@graphql-codegen/typescript-resolvers": "4.1.0",
|
2023-10-04 18:45:04 +00:00
|
|
|
"@graphql-codegen/urql-introspection": "3.0.0",
|
2023-10-04 14:28:35 +00:00
|
|
|
"@graphql-eslint/eslint-plugin": "3.20.1",
|
2023-12-03 12:25:56 +00:00
|
|
|
"@graphql-inspector/cli": "4.0.3",
|
2024-03-17 06:48:05 +00:00
|
|
|
"@manypkg/get-packages": "2.2.1",
|
2024-04-30 12:21:53 +00:00
|
|
|
"@next/eslint-plugin-next": "14.2.3",
|
2024-05-03 13:56:12 +00:00
|
|
|
"@sentry/cli": "2.31.2",
|
2024-05-16 07:41:42 +00:00
|
|
|
"@swc/core": "1.5.7",
|
2024-05-12 06:47:54 +00:00
|
|
|
"@theguild/eslint-config": "0.11.9",
|
2024-03-24 08:12:53 +00:00
|
|
|
"@theguild/prettier-config": "2.0.6",
|
2024-05-16 07:20:29 +00:00
|
|
|
"@types/node": "20.12.12",
|
2023-07-20 11:15:07 +00:00
|
|
|
"bob-the-bundler": "7.0.1",
|
2024-05-09 06:21:05 +00:00
|
|
|
"cypress": "13.9.0",
|
2024-02-20 14:22:15 +00:00
|
|
|
"dotenv": "16.4.5",
|
2024-02-25 10:15:12 +00:00
|
|
|
"eslint": "8.57.0",
|
2024-05-07 06:03:28 +00:00
|
|
|
"eslint-plugin-cypress": "3.2.0",
|
2023-09-27 07:16:05 +00:00
|
|
|
"eslint-plugin-hive": "file:rules",
|
2024-05-19 14:24:17 +00:00
|
|
|
"eslint-plugin-tailwindcss": "3.15.2",
|
2023-11-28 15:42:21 +00:00
|
|
|
"fs-extra": "11.2.0",
|
2023-09-27 07:16:05 +00:00
|
|
|
"graphql": "16.8.1",
|
2024-02-18 12:59:16 +00:00
|
|
|
"husky": "9.0.11",
|
2023-09-18 01:07:11 +00:00
|
|
|
"jest-snapshot-serializer-raw": "2.0.0",
|
2024-02-07 16:52:43 +00:00
|
|
|
"lint-staged": "15.2.2",
|
2024-04-04 12:42:40 +00:00
|
|
|
"pg": "8.11.5",
|
2024-02-04 15:57:23 +00:00
|
|
|
"prettier": "3.2.5",
|
2023-12-19 06:14:13 +00:00
|
|
|
"prettier-plugin-sql": "0.18.0",
|
2024-04-16 06:57:09 +00:00
|
|
|
"prettier-plugin-tailwindcss": "0.5.14",
|
2024-01-21 08:15:18 +00:00
|
|
|
"pretty-quick": "4.0.0",
|
2023-03-23 03:22:29 +00:00
|
|
|
"rimraf": "4.4.1",
|
2023-12-10 13:38:54 +00:00
|
|
|
"ts-node": "10.9.2",
|
2024-02-13 05:46:00 +00:00
|
|
|
"tsup": "8.0.2",
|
2024-05-19 14:24:06 +00:00
|
|
|
"tsx": "4.10.5",
|
2024-04-30 06:02:23 +00:00
|
|
|
"turbo": "1.13.3",
|
2024-04-11 10:36:22 +00:00
|
|
|
"typescript": "5.4.5",
|
2024-04-07 08:57:03 +00:00
|
|
|
"vite-tsconfig-paths": "4.3.2",
|
2024-05-05 06:08:38 +00:00
|
|
|
"vitest": "1.6.0"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"husky": {
|
|
|
|
|
"hooks": {
|
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"**/*": [
|
|
|
|
|
"pretty-quick --staged"
|
|
|
|
|
],
|
2022-05-24 07:41:53 +00:00
|
|
|
"**/*.{js,cjs,mjs,ts,tsx}": [
|
|
|
|
|
"eslint --fix"
|
2022-05-18 07:26:57 +00:00
|
|
|
]
|
|
|
|
|
},
|
2022-11-01 00:11:53 +00:00
|
|
|
"pnpm": {
|
|
|
|
|
"patchedDependencies": {
|
|
|
|
|
"@theguild/buddy@0.1.0": "patches/@theguild__buddy@0.1.0.patch",
|
2023-04-09 19:20:04 +00:00
|
|
|
"mjml-core@4.14.0": "patches/mjml-core@4.14.0.patch",
|
2023-10-24 06:41:41 +00:00
|
|
|
"oclif@3.17.2": "patches/oclif@3.17.2.patch",
|
2023-02-20 15:14:06 +00:00
|
|
|
"@apollo/federation@0.38.1": "patches/@apollo__federation@0.38.1.patch",
|
2023-05-09 08:07:17 +00:00
|
|
|
"@theguild/editor@1.2.5": "patches/@theguild__editor@1.2.5.patch",
|
2024-02-25 10:15:12 +00:00
|
|
|
"eslint@8.57.0": "patches/eslint@8.57.0.patch",
|
2023-07-12 09:38:33 +00:00
|
|
|
"@oclif/core@2.8.5": "patches/@oclif__core@2.8.5.patch",
|
2023-08-04 14:01:56 +00:00
|
|
|
"@graphql-eslint/eslint-plugin@3.20.1": "patches/@graphql-eslint__eslint-plugin@3.20.1.patch",
|
2023-09-14 12:17:02 +00:00
|
|
|
"graphiql@3.0.0-alpha.0": "patches/graphiql@3.0.0-alpha.0.patch",
|
2023-09-27 07:16:05 +00:00
|
|
|
"@graphiql/react@0.18.0-alpha.0": "patches/@graphiql__react@0.18.0-alpha.0.patch",
|
2024-03-18 09:28:44 +00:00
|
|
|
"got@14.2.1": "patches/got@14.2.1.patch",
|
|
|
|
|
"slonik@30.4.4": "patches/slonik@30.4.4.patch"
|
2022-11-01 00:11:53 +00:00
|
|
|
}
|
2022-11-24 10:00:41 +00:00
|
|
|
}
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|