forked from kalopilato/graphql-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 820 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 820 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
{
"name": "graphql-utils",
"version": "1.0.0",
"description": "Utilities for interacting with GraphQL APIs",
"main": "index.js",
"scripts": {
"introspect": "node ./bin/introspect.js",
"generate-schema-object": "node ./bin/generateSchemaObject",
"generate-schema-string": "node ./bin/generateSchemaString",
"generate-fragment-types-string": "node ./bin/generateFragmentTypesString",
"start": "npm run introspect && npm run generate-schema-object && npm run generate-schema-string && npm run generate-fragment-types-string",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Kalo Pilato",
"license": "ISC",
"dependencies": {
"dotenv": "^8.0.0",
"graphql": "^14.4.2",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"prettier": "^1.18.2"
}
}