-
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) · 934 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 934 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": "example-programmatic-typescript",
"version": "0.0.1",
"private": true,
"scripts": {
"start:cjs": "tsup --onSuccess \"node dist/index.js\"",
"start:mjs": "tsup --onSuccess \"node dist/index.mjs\"",
"codegen": "exit 0",
"build": "yarn start:cjs && yarn start:mjs",
"test:end2end": "exit 0"
},
"dependencies": {
"@graphql-codegen/core": "3.1.0",
"@graphql-codegen/plugin-helpers": "4.2.0",
"@graphql-codegen/typed-document-node": "4.0.0",
"@graphql-codegen/typescript": "3.0.3",
"@graphql-codegen/typescript-operations": "3.0.3",
"@graphql-codegen/typescript-resolvers": "3.2.0",
"@graphql-tools/graphql-file-loader": "7.5.16",
"@graphql-tools/load": "7.8.13",
"@graphql-tools/schema": "9.0.17",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"prettier": "2.8.7"
},
"devDependencies": {
"@types/node": "18.15.1",
"tsup": "6.7.0"
}
}