console/package.json

126 lines
4.6 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,
2023-01-14 10:57:48 +00:00
"packageManager": "pnpm@7.25.0",
"engines": {
2022-12-21 08:25:00 +00:00
"node": ">=18",
"pnpm": ">=7"
},
2022-05-18 07:26:57 +00:00
"scripts": {
"build": "pnpm turbo build --color",
"build:libraries": "pnpm graphql:generate && pnpm turbo build --filter=./packages/libraries/* --color",
"build:local": "pnpm turbo build-local --color",
"build:services": "pnpm turbo build --filter=./packages/services/**/* --color",
"build:web": "pnpm turbo build --filter=./packages/web/* --color",
"build:workers": "pnpm turbo build --filter=./packages/services/cdn-worker --filter=./packages/services/broker-worker --filter=./packages/services/police-worker --color",
"docker:build": "docker buildx bake -f docker.hcl --load build",
"env:sync": "node ./scripts/sync-env-files.js",
"generate": "pnpm --filter @hive/storage db:generate && pnpm graphql:generate",
"graphql:generate": "graphql-codegen",
"lint": "eslint --cache --ignore-path .gitignore \"{packages,cypress}/**/*.{ts,tsx}\"",
"lint:fix": "pnpm lint --fix",
"lint:prettier": "prettier --cache --check .",
"postinstall": "node ./scripts/patch-manifests.js && pnpm env:sync && node ./scripts/turborepo-cleanup.js && node ./scripts/turborepo-setup.js",
"pre-commit": "exit 0 && lint-staged",
"prepare": "husky install",
"prerelease": "pnpm build:libraries",
"prettier": "prettier --cache --write --list-different .",
"release": "pnpm build:libraries && changeset publish",
"seed": "node scripts/seed-local-env.js",
"setup": "pnpm --filter @hive/storage setup",
"test": "jest",
"test:e2e": "CYPRESS_BASE_URL=$HIVE_APP_BASE_URL cypress run",
"turbo": "env-cmd --silent turbo run",
"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": {
"@babel/core": "7.20.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.20.7",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"@graphql-codegen/add": "3.2.3",
"@graphql-codegen/cli": "2.16.2",
"@graphql-codegen/gql-tag-operations-preset": "1.7.3",
"@graphql-codegen/graphql-modules-preset": "2.5.10",
"@graphql-codegen/typed-document-node": "2.3.11",
"@graphql-codegen/typescript": "2.8.6",
"@graphql-codegen/typescript-operations": "2.5.11",
"@graphql-codegen/typescript-resolvers": "2.7.11",
2022-12-22 11:14:38 +00:00
"@graphql-inspector/cli": "3.4.0",
2023-01-09 11:45:20 +00:00
"@next/eslint-plugin-next": "13.1.1",
"@sentry/cli": "2.11.0",
"@swc/core": "1.3.24",
"@theguild/eslint-config": "0.6.0",
"@theguild/prettier-config": "1.0.0",
"@types/jest": "29.2.4",
"@types/node": "18.11.18",
"babel-jest": "29.3.1",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"bob-the-bundler": "4.1.1",
"cypress": "12.2.0",
"dotenv": "16.0.3",
2022-05-18 07:26:57 +00:00
"env-cmd": "10.1.0",
"eslint": "8.30.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-hive": "file:./rules",
"eslint-plugin-tailwindcss": "3.7.1",
"glob": "8.0.3",
"graphql": "16.6.0",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"prettier-plugin-tailwindcss": "0.2.1",
2022-05-18 07:26:57 +00:00
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
2022-11-23 09:52:58 +00:00
"tsup": "6.5.0",
2022-11-11 09:17:48 +00:00
"turbo": "1.6.3",
"typescript": "4.9.4"
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": {
"@tgriesser/schemats@7.0.1": "patches/@tgriesser__schemats@7.0.1.patch",
"@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",
"@graphql-inspector/core@3.4.0": "patches/@graphql-inspector__core@3.4.0.patch",
"@oclif/core@1.23.0": "patches/@oclif__core@1.23.0.patch",
"bullmq@3.5.6": "patches/bullmq@3.5.6.patch",
"oclif@3.4.3": "patches/oclif@3.4.3.patch"
}
}
2022-05-18 07:26:57 +00:00
}