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,
|
2023-02-09 02:04:11 +00:00
|
|
|
"packageManager": "pnpm@7.27.0",
|
2022-11-24 10:00:41 +00:00
|
|
|
"engines": {
|
2022-12-21 08:25:00 +00:00
|
|
|
"node": ">=18",
|
2022-11-24 10:00:41 +00:00
|
|
|
"pnpm": ">=7"
|
|
|
|
|
},
|
2022-05-18 07:26:57 +00:00
|
|
|
"scripts": {
|
2022-12-20 14:34:46 +00:00
|
|
|
"build": "pnpm turbo build --color",
|
2022-11-24 10:00:41 +00:00
|
|
|
"build:libraries": "pnpm graphql:generate && pnpm turbo build --filter=./packages/libraries/* --color",
|
2022-12-20 14:34:46 +00:00
|
|
|
"build:services": "pnpm turbo build --filter=./packages/services/**/* --color",
|
|
|
|
|
"build:web": "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",
|
2022-11-24 10:00:41 +00:00
|
|
|
"env:sync": "node ./scripts/sync-env-files.js",
|
|
|
|
|
"generate": "pnpm --filter @hive/storage db:generate && pnpm graphql:generate",
|
|
|
|
|
"graphql:generate": "graphql-codegen",
|
2022-12-02 10:12:07 +00:00
|
|
|
"lint": "eslint --cache --ignore-path .gitignore \"{packages,cypress}/**/*.{ts,tsx}\"",
|
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-01-31 10:05:36 +00:00
|
|
|
"postinstall": "node ./scripts/patch-manifests.js && pnpm env:sync && node ./scripts/turborepo-cleanup.js && node ./scripts/turborepo-setup.js && pnpm cargo:fix",
|
2023-01-11 10:26:42 +00:00
|
|
|
"pre-commit": "exit 0 && lint-staged",
|
2022-12-27 22:36:08 +00:00
|
|
|
"prepare": "husky install",
|
2022-11-01 00:11:53 +00:00
|
|
|
"prerelease": "pnpm build:libraries",
|
2022-06-23 15:16:19 +00:00
|
|
|
"prettier": "prettier --cache --write --list-different .",
|
2022-12-20 14:34:46 +00:00
|
|
|
"release": "pnpm build:libraries && changeset publish",
|
2022-11-24 10:00:41 +00:00
|
|
|
"seed": "node scripts/seed-local-env.js",
|
|
|
|
|
"test": "jest",
|
2022-12-02 10:12:07 +00:00
|
|
|
"test:e2e": "CYPRESS_BASE_URL=$HIVE_APP_BASE_URL cypress run",
|
2022-11-24 10:00:41 +00:00
|
|
|
"typecheck": "pnpm turbo typecheck --color",
|
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": {
|
2023-01-22 08:49:01 +00:00
|
|
|
"@babel/core": "7.20.12",
|
2022-11-01 00:11:53 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
2023-01-22 08:49:01 +00:00
|
|
|
"@babel/plugin-proposal-decorators": "7.20.13",
|
2022-12-27 22:36:08 +00:00
|
|
|
"@babel/preset-env": "7.20.2",
|
2022-10-06 11:48:01 +00:00
|
|
|
"@babel/preset-typescript": "7.18.6",
|
2022-12-27 22:36:08 +00:00
|
|
|
"@changesets/changelog-github": "0.4.8",
|
|
|
|
|
"@changesets/cli": "2.26.0",
|
2023-02-08 02:04:33 +00:00
|
|
|
"@graphql-codegen/add": "4.0.0",
|
|
|
|
|
"@graphql-codegen/cli": "3.0.0",
|
|
|
|
|
"@graphql-codegen/client-preset": "2.0.0",
|
|
|
|
|
"@graphql-codegen/gql-tag-operations-preset": "2.0.0",
|
|
|
|
|
"@graphql-codegen/graphql-modules-preset": "3.0.0",
|
|
|
|
|
"@graphql-codegen/typed-document-node": "3.0.0",
|
|
|
|
|
"@graphql-codegen/typescript": "3.0.0",
|
|
|
|
|
"@graphql-codegen/typescript-operations": "3.0.0",
|
|
|
|
|
"@graphql-codegen/typescript-resolvers": "3.0.0",
|
2023-02-06 02:28:36 +00:00
|
|
|
"@graphql-inspector/cli": "3.4.2",
|
2023-01-09 11:45:20 +00:00
|
|
|
"@next/eslint-plugin-next": "13.1.1",
|
2023-02-07 10:43:30 +00:00
|
|
|
"@sentry/cli": "2.12.0",
|
2023-02-09 02:04:17 +00:00
|
|
|
"@swc/core": "1.3.34",
|
2023-01-23 09:30:38 +00:00
|
|
|
"@theguild/eslint-config": "^0.7.0",
|
|
|
|
|
"@theguild/prettier-config": "^1.1.0",
|
2023-02-07 10:36:34 +00:00
|
|
|
"@types/jest": "29.4.0",
|
2023-02-07 09:42:08 +00:00
|
|
|
"@types/node": "18.13.0",
|
2023-02-07 10:36:34 +00:00
|
|
|
"babel-jest": "29.4.1",
|
2022-10-06 11:48:01 +00:00
|
|
|
"babel-plugin-parameter-decorator": "1.0.16",
|
|
|
|
|
"babel-plugin-transform-typescript-metadata": "0.3.2",
|
2023-02-07 03:07:10 +00:00
|
|
|
"bob-the-bundler": "5.0.1",
|
2023-02-07 08:11:33 +00:00
|
|
|
"cypress": "12.5.1",
|
2022-11-01 00:11:53 +00:00
|
|
|
"dotenv": "16.0.3",
|
2023-02-07 07:57:26 +00:00
|
|
|
"eslint": "8.33.0",
|
2022-12-02 10:12:07 +00:00
|
|
|
"eslint-plugin-cypress": "2.12.1",
|
2022-06-23 10:04:10 +00:00
|
|
|
"eslint-plugin-hive": "file:./rules",
|
2023-02-07 11:15:10 +00:00
|
|
|
"eslint-plugin-tailwindcss": "3.8.3",
|
2023-02-07 09:17:01 +00:00
|
|
|
"glob": "8.1.0",
|
2022-11-29 11:25:51 +00:00
|
|
|
"graphql": "16.6.0",
|
2023-01-22 08:48:09 +00:00
|
|
|
"husky": "8.0.3",
|
2023-02-07 10:36:34 +00:00
|
|
|
"jest": "29.4.1",
|
2023-02-07 08:14:18 +00:00
|
|
|
"lint-staged": "13.1.1",
|
2023-02-08 09:03:58 +00:00
|
|
|
"prettier": "2.8.4",
|
2023-02-05 01:38:14 +00:00
|
|
|
"prettier-plugin-tailwindcss": "0.2.2",
|
2022-05-18 07:26:57 +00:00
|
|
|
"pretty-quick": "3.1.3",
|
2023-02-08 02:04:56 +00:00
|
|
|
"rimraf": "4.1.2",
|
2023-02-05 01:37:49 +00:00
|
|
|
"ts-jest": "29.0.5",
|
2022-12-27 22:36:08 +00:00
|
|
|
"ts-node": "10.9.1",
|
2023-02-08 02:04:39 +00:00
|
|
|
"tsup": "6.6.0",
|
2023-02-10 01:15:24 +00:00
|
|
|
"tsx": "3.12.3",
|
2023-02-08 03:41:53 +00:00
|
|
|
"turbo": "1.7.4",
|
2023-02-07 08:49:08 +00:00
|
|
|
"typescript": "4.9.5"
|
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": {
|
2023-01-23 09:30:38 +00:00
|
|
|
"overrides": {
|
2023-02-02 18:35:59 +00:00
|
|
|
"@trivago/prettier-plugin-sort-imports>@babel/parser": "^7.20.7",
|
|
|
|
|
"tsup": "6.5.0"
|
2023-01-23 09:30:38 +00:00
|
|
|
},
|
2022-11-01 00:11:53 +00:00
|
|
|
"patchedDependencies": {
|
2022-12-27 22:36:08 +00:00
|
|
|
"@tgriesser/schemats@7.0.1": "patches/@tgriesser__schemats@7.0.1.patch",
|
2022-11-01 00:11:53 +00:00
|
|
|
"@theguild/buddy@0.1.0": "patches/@theguild__buddy@0.1.0.patch",
|
|
|
|
|
"mjml-core@4.13.0": "patches/mjml-core@4.13.0.patch",
|
2022-11-02 13:58:32 +00:00
|
|
|
"slonik@30.1.2": "patches/slonik@30.1.2.patch",
|
2023-01-02 11:05:23 +00:00
|
|
|
"@oclif/core@1.23.0": "patches/@oclif__core@1.23.0.patch",
|
2023-02-07 08:51:44 +00:00
|
|
|
"oclif@3.6.3": "patches/oclif@3.6.3.patch",
|
2023-02-08 02:25:09 +00:00
|
|
|
"bullmq@3.6.3": "patches/bullmq@3.6.3.patch",
|
2023-02-06 02:28:36 +00:00
|
|
|
"@slonik/migrator@0.8.5": "patches/@slonik__migrator@0.8.5.patch",
|
|
|
|
|
"@graphql-inspector/core@3.5.0": "patches/@graphql-inspector__core@3.5.0.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
|
|
|
}
|