-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1010 Bytes
/
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
{
"name": "graphql-codegen-plugins",
"version": "0.0.1",
"description": "Monorepository for codegen",
"author": "Lab Digital <[email protected]>",
"type": "module",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "pnpm turbo build",
"deps:fix": "syncpack fix-mismatches && pnpm dedupe && pnpm install",
"format": "biome format --fix",
"changeset-version": "changeset version && pnpm format",
"check": "biome check",
"publish:ci": "pnpm build && pnpm changeset publish",
"publish:version": "pnpm changeset version && pnpm format",
"test": "vitest run",
"test:ci": "vitest run --coverage --passWithNoTests"
},
"workspaces": ["packages/*"],
"packageManager": "[email protected]",
"private": true,
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@vitest/coverage-v8": "2.1.6",
"syncpack": "^13.0.0",
"vitest": "^2.1.6"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"turbo": "^2.2.3"
},
"pnpm": {
"overrides": {
"graphql": "^16.9.0"
}
}
}