-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 947 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
{
"name": "gqlgen",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "tsc && node dist/index.js",
"codegen": "npx graphql-code-generator --config ./example/codegen.ts",
"codegen:watch": "npx graphql-code-generator --config ./example/codegen.ts --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-codegen/introspection": "^4.0.3",
"chokidar": "^3.6.0",
"graphql": "^16.8.1",
"quicktype": "^23.0.170",
"quicktype-core": "^23.0.170",
"quicktype-graphql-input": "^23.0.170"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@parcel/watcher": "^2.4.1",
"@types/node-fetch": "^2.6.11",
"typescript": "^5.4.5"
}
}