-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 861 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 861 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
31
{
"name": "dev-test-apollo-tooling",
"version": "0.0.1",
"type": "module",
"description": "A setup which mimics Apollo tooling generation as close as possible",
"private": true,
"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"
},
"dependencies": {
"@apollo/client": "3.14.1",
"@graphql-codegen/cli": "*",
"@graphql-codegen/plugin-helpers": "*",
"@graphql-codegen/typed-document-node": "*",
"@graphql-codegen/typescript-operations": "*",
"@graphql-codegen/visitor-plugin-common": "*"
},
"devDependencies": {
"@types/node": "^25.0.3",
"tsx": "4.21.0",
"typescript": "^5.9.3",
"vitest": "4.1.5"
},
"sideEffects": false
}