-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 841 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 841 Bytes
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
{
"name": "dev-test-apollo-tooling",
"description": "A setup which mimics Apollo tooling generation as close as possible",
"version": "0.0.1",
"type": "module",
"dependencies": {
"@apollo/client": "3.13.8",
"@graphql-codegen/cli": "*",
"@graphql-codegen/plugin-helpers": "*",
"@graphql-codegen/typescript-operations": "*",
"@graphql-codegen/visitor-plugin-common": "*",
"@graphql-codegen/typed-document-node": "*"
},
"devDependencies": {
"@types/node": "^25.0.3",
"tsx": "4.7.0",
"typescript": "^5.9.3",
"vitest": "4.0.4"
},
"files": [
"cli"
],
"scripts": {
"start": "tsx cli/index.ts",
"start:debug": "NODE_OPTIONS='--trace-warnings' tsx cli/index.ts",
"start:verbose": "DEBUG='*' tsx cli/index.ts",
"test": "vitest --no-watch"
},
"sideEffects": false
}