-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.93 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.93 KB
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
{
"name": "graphql-code-generator",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@11.1.1+sha512.d1fdf5f73c617b64fa1a56a81c3c8dfe0e966e33a6010aa256b517ae77be21d93e05affc0de1a83b0e4f29d569f68b446ae8f068cd7247c0bb3df0fb4d7bdf9a",
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"prebuild": "rimraf dist/ .bob/ tsconfig.tsbuildinfo",
"build": "bob build",
"postbuild": "pnpm fix-bins",
"clean": "rimraf node_modules/",
"dev-test:generate": "pnpm --filter=\"dev-test*\" generate",
"dev-test:generate:cjs": "pnpm --filter=\"dev-test*\" generate:cjs",
"dev-test:generate:esm": "pnpm --filter=\"dev-test*\" generate:esm",
"dev-test:watch": "pnpm --filter=\"dev-test*\" watch",
"dev-test:watch:cjs": "pnpm --filter=\"dev-test*\" watch:cjs",
"dev-test:watch:esm": "pnpm --filter=\"dev-test*\" watch:esm",
"examples:build": "pnpm --filter=\"example-*\" build",
"examples:codegen": "pnpm --filter=\"example-*\" codegen",
"examples:test:end2end": "pnpm --filter=\"example-*\" --workspace-concurrency=1 test:end2end",
"fix-bins": "node scripts/fix-bin.js",
"postinstall": "husky install",
"lint": "eslint --cache .",
"lint:ci": "eslint --cache --output-file eslint_report.json --format json .",
"prettier": "prettier --cache --write --list-different .",
"prettier:check": "prettier --cache --check .",
"rebuild": "bob build --incremental",
"prerelease": "pnpm build",
"release": "changeset publish",
"test": "vitest",
"types:check": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.5",
"@babel/preset-typescript": "7.28.5",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@theguild/eslint-config": "0.13.4",
"@theguild/prettier-config": "3.0.1",
"@types/node": "24.12.4",
"bob-the-bundler": "7.0.1",
"dotenv": "17.4.2",
"eslint": "10.4.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-tailwindcss": "npm:@hasparus/eslint-plugin-tailwindcss@3.17.5",
"eslint-plugin-unicorn": "64.0.0",
"fast-glob": "3.3.3",
"fs-extra": "11.3.5",
"graphql": "16.14.0",
"husky": "9.1.7",
"jest-diff": "30.4.1",
"js-yaml": "4.1.1",
"lint-staged": "17.0.4",
"prettier": "3.8.3",
"prettier-plugin-pkg": "0.22.1",
"prettier-plugin-sh": "0.18.1",
"prettier-plugin-svelte": "3.5.2",
"prettier-plugin-tailwindcss": "0.8.0",
"rimraf": "6.1.3",
"tslib": "2.8.1",
"typescript": "6.0.3",
"vitest": "4.1.6",
"wrangler": "4.92.0"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{js,jsx,cjs,mjs,ts,tsx,graphql,gql,yml,yaml,json,md}": [
"prettier --write"
],
"**/__generated__/**": [],
"pnpm-lock.yaml": [
"pnpm dedupe"
]
}
}