forked from graphql-hive/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.55 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
128
{
"name": "graphql-hive",
"version": "0.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-hive"
},
"author": {
"email": "[email protected]",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"build": "pnpm graphql:generate && pnpm turbo build --color",
"build:libraries": "pnpm graphql:generate && pnpm turbo build --filter=./packages/libraries/* --color",
"build:local": "pnpm graphql:generate && pnpm turbo build-local --color",
"build:services": "pnpm graphql:generate && pnpm turbo build --filter=./packages/services/* --color",
"build:web": "pnpm graphql:generate && pnpm turbo build --filter=./packages/web/* --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/**/*.{ts,tsx}\"",
"lint:prettier": "prettier --cache --check .",
"postinstall": "husky install && node ./scripts/patch-manifests.js && pnpm env:sync && node ./scripts/turborepo-cleanup.js && node ./scripts/turborepo-setup.js",
"pre-commit": "lint-staged",
"prerelease": "pnpm build:libraries",
"prettier": "prettier --cache --write --list-different .",
"release": "changeset publish",
"seed": "node scripts/seed-local-env.js",
"setup": "pnpm --filter @hive/storage setup",
"test": "jest",
"turbo": "env-cmd --silent turbo run",
"typecheck": "pnpm turbo typecheck --color",
"upload-sourcemaps": "./scripts/upload-sourcemaps.sh"
},
"devDependencies": {
"@babel/core": "7.19.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.19.1",
"@babel/preset-env": "7.19.1",
"@babel/preset-typescript": "7.18.6",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.24.3",
"@graphql-codegen/add": "3.2.1",
"@graphql-codegen/cli": "2.13.7",
"@graphql-codegen/gql-tag-operations-preset": "1.7.0",
"@graphql-codegen/graphql-modules-preset": "2.5.4",
"@graphql-codegen/typed-document-node": "2.3.5",
"@graphql-codegen/typescript": "2.8.0",
"@graphql-codegen/typescript-graphql-request": "4.5.7",
"@graphql-codegen/typescript-operations": "2.5.5",
"@graphql-codegen/typescript-resolvers": "2.7.5",
"@sentry/cli": "2.9.0",
"@swc/core": "1.2.185",
"@theguild/prettier-config": "1.0.0",
"@types/jest": "29.2.0",
"@types/lru-cache": "7.6.1",
"@types/node": "16.11.22",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"babel-jest": "29.0.3",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"bob-the-bundler": "4.0.0",
"dotenv": "16.0.3",
"env-cmd": "10.1.0",
"eslint": "8.27.0",
"eslint-plugin-hive": "file:./rules",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"fs-extra": "10.1.0",
"glob": "8.0.3",
"graphql": "16.6.0",
"husky": "7.0.4",
"jest": "29.2.2",
"lint-staged": "11.2.6",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.11",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"tsup": "6.5.0",
"turbo": "1.6.3",
"typescript": "4.8.4"
},
"resolutions": {
"@emotion/react": "11.10.5",
"@types/react": "17.0.45",
"@urql/core": "2.3.6",
"graphql": "16.6.0",
"ts-node": "10.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"pretty-quick --staged"
],
"**/*.{js,cjs,mjs,ts,tsx}": [
"eslint --fix"
]
},
"pnpm": {
"patchedDependencies": {
"@n1ru4l/[email protected]": "patches/@[email protected]",
"@tgriesser/[email protected]": "patches/@[email protected]",
"@theguild/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}