mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
108 lines
3.5 KiB
JSON
108 lines
3.5 KiB
JSON
{
|
|
"name": "graphql-hive",
|
|
"type": "module",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "kamilkisiela/graphql-hive"
|
|
},
|
|
"author": {
|
|
"email": "contact@the-guild.dev",
|
|
"name": "The Guild",
|
|
"url": "https://the-guild.dev"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"seed": "node scripts/seed-local-env.js",
|
|
"postinstall": "husky install && patch-package && node ./scripts/patch-manifests.js && node ./scripts/sync-env-files.js && node ./scripts/turborepo-cleanup.js && node ./scripts/turborepo-setup.js",
|
|
"pre-commit": "lint-staged",
|
|
"prerelease": "yarn build:libraries",
|
|
"release": "changeset publish",
|
|
"test": "jest",
|
|
"lint": "eslint --ignore-path .gitignore \"packages/**/*.{ts,tsx}\"",
|
|
"prettier": "prettier --cache --write --list-different .",
|
|
"lint:prettier": "prettier --cache --check .",
|
|
"setup": "yarn workspace @hive/storage run setup",
|
|
"generate": "yarn workspace @hive/storage run db:generate && yarn graphql:generate",
|
|
"graphql:generate": "graphql-codegen",
|
|
"typecheck": "yarn turbo typecheck --color",
|
|
"build": "yarn graphql:generate && yarn turbo build --color",
|
|
"build:libraries": "yarn graphql:generate && yarn turbo build --filter=./packages/libraries/* --color",
|
|
"build:web": "yarn graphql:generate && yarn turbo build --filter=./packages/web/* --color",
|
|
"build:services": "yarn graphql:generate && yarn turbo build --filter=./packages/services/* --color",
|
|
"build:local-cdn": "yarn graphql:generate && yarn turbo build-local --color",
|
|
"env:sync": "node ./scripts/sync-env-files.js",
|
|
"turbo": "env-cmd --silent turbo run"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "2.22.0",
|
|
"@graphql-codegen/add": "3.1.1",
|
|
"@graphql-codegen/cli": "2.6.2",
|
|
"@graphql-codegen/gql-tag-operations-preset": "1.4.0",
|
|
"@graphql-codegen/graphql-modules-preset": "2.3.13",
|
|
"@graphql-codegen/typed-document-node": "2.2.13",
|
|
"@graphql-codegen/typescript": "2.5.1",
|
|
"@graphql-codegen/typescript-graphql-request": "4.4.10",
|
|
"@graphql-codegen/typescript-operations": "2.4.2",
|
|
"@graphql-codegen/typescript-resolvers": "2.6.6",
|
|
"@swc/core": "1.2.185",
|
|
"@theguild/prettier-config": "0.0.1",
|
|
"@types/jest": "27.5.1",
|
|
"@types/lru-cache": "7.6.1",
|
|
"@types/node": "16.11.22",
|
|
"@typescript-eslint/eslint-plugin": "5.28.0",
|
|
"@typescript-eslint/parser": "5.28.0",
|
|
"bob-the-bundler": "1.7.3",
|
|
"env-cmd": "10.1.0",
|
|
"eslint": "8.18.0",
|
|
"eslint-plugin-hive": "file:./rules",
|
|
"eslint-plugin-import": "2.26.0",
|
|
"eslint-plugin-simple-import-sort": "7.0.0",
|
|
"fs-extra": "10.1.0",
|
|
"graphql": "16.5.0",
|
|
"husky": "7.0.4",
|
|
"jest": "28.1.0",
|
|
"lint-staged": "11.2.6",
|
|
"patch-package": "6.4.7",
|
|
"prettier": "2.7.1",
|
|
"prettier-plugin-tailwindcss": "0.1.11",
|
|
"pretty-quick": "3.1.3",
|
|
"rimraf": "3.0.2",
|
|
"ts-jest": "28.0.2",
|
|
"tsup": "5.12.7",
|
|
"turbo": "1.2.6",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/services/*",
|
|
"packages/web/*",
|
|
"packages/libraries/*",
|
|
"integration-tests/"
|
|
]
|
|
},
|
|
"resolutions": {
|
|
"@types/react": "17.0.45",
|
|
"@urql/core": "2.3.6",
|
|
"graphql": "16.5.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*": [
|
|
"pretty-quick --staged"
|
|
],
|
|
"**/*.{js,cjs,mjs,ts,tsx}": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"packageManager": "yarn@1.22.18",
|
|
"version": "0.0.0"
|
|
}
|