-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 842 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": "gql-gen-olympus",
"description": "sample repo for generating and using generated gql code",
"license": "MIT",
"scripts": {
"codegen": "graphql-codegen --config config/faker-olympus-codegen.ts",
"demo": "ts-node src/demo-olympus-data.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@apollo/client": "3.7.1",
"graphql": "16.6.0",
"graphql-request": "5.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "~2.13.8",
"@graphql-codegen/client-preset": "~1.1.1",
"@graphql-codegen/introspection": "~2.2.1",
"@graphql-codegen/typescript": "~2.8.0",
"@graphql-codegen/typescript-resolvers": "~2.7.5",
"prettier": "2.7.1",
"typescript": "4.8.4"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 80,
"semi": true
}
}