-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
127 lines (127 loc) · 5.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "platform",
"type": "module",
"repository": {
"type": "git",
"url": "graphql-hive/platform"
},
"author": {
"email": "[email protected]",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=22",
"pnpm": ">=9.4.0"
},
"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",
"prebuild": "rimraf deploy-tmp && rimraf packages/**/deploy-tmp",
"prerelease": "pnpm build:libraries",
"prettier": "prettier --cache --write --list-different --ignore-unknown \"**/*\"",
"release": "pnpm build:libraries && changeset publish",
"release:version": "changeset version && pnpm --filter hive-apollo-router-plugin sync-cargo-file",
"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' typecheck",
"upload-sourcemaps": "./scripts/upload-sourcemaps.sh",
"workspace": "pnpm run --filter $1 $2"
},
"devDependencies": {
"@0no-co/graphqlsp": "1.12.16",
"@actions/core": "1.11.1",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@eddeee888/gcg-typescript-resolver-files": "0.11.0",
"@graphql-codegen/add": "5.0.3",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.5.0",
"@graphql-codegen/typescript": "4.1.1",
"@graphql-codegen/typescript-operations": "4.3.1",
"@graphql-codegen/typescript-resolvers": "4.4.0",
"@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.16",
"@parcel/watcher": "2.4.1",
"@sentry/cli": "2.38.0",
"@swc/core": "1.7.40",
"@theguild/eslint-config": "0.12.1",
"@theguild/prettier-config": "2.0.7",
"@types/node": "22.8.7",
"bob-the-bundler": "7.0.1",
"cypress": "13.15.1",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"eslint-plugin-cypress": "4.0.0",
"eslint-plugin-hive": "file:rules",
"eslint-plugin-tailwindcss": "npm:@hasparus/[email protected]",
"fs-extra": "11.2.0",
"graphql": "16.9.0",
"jest-snapshot-serializer-raw": "2.0.0",
"pg": "8.13.1",
"prettier": "3.3.3",
"prettier-plugin-sql": "0.18.1",
"prettier-plugin-tailwindcss": "0.6.8",
"pretty-quick": "4.0.0",
"rimraf": "4.4.1",
"ts-node": "10.9.2",
"tsup": "8.3.0",
"tsx": "4.19.2",
"turbo": "2.2.3",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.0.5"
},
"pnpm": {
"overrides.csstype": "To fix type check error https://github.com/JedWatson/react-select/issues/5952",
"overrides.mjml": "Our patch removes html-minifier from mjml-core, we dont need this dependency and its causing false-alarm (CVE https://nvd.nist.gov/vuln/detail/cve-2022-37620)",
"overrides": {
"csstype": "3.1.2",
"[email protected]>html-minifier": "-",
"[email protected]>html-minifier": "-",
"ws@^8.0.0": "^8.18.0",
"ws@*": ">=8.18.0 || >=7.5.10 || >=6.2.3 || >=5.2.4",
"cookie@<0.7.0": "0.7.2"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@apollo/[email protected]": "patches/@[email protected]",
"@theguild/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"@graphql-eslint/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"@oclif/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"@graphiql/[email protected]": "patches/@[email protected]",
"@theguild/components": "patches/@theguild__components.patch",
"countup.js": "patches/countup.js.patch",
"@oclif/[email protected]": "patches/@[email protected]"
}
}
}