-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 839 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": "startgg-sdk",
"version": "0.0.1",
"private": true,
"main": "src/main.ts",
"author": {
"name": "Toby Baratta"
},
"dependencies": {
"graphql-request": "^6.0.0"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-generic-sdk": "^3.1.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"dotenv": "^16.3.1",
"graphql": "^16.6.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-graphql-request": "^4.4.6"
},
"scripts": {
"start": "ts-node --esm src/main.ts",
"codegen": "graphql-codegen --config codegen.ts",
"introspect": "ts-node --esm src/utils/fetch-introspection.mts"
}
}