-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.59 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@mauna/graphql-schema",
"version": "0.2.12",
"description": "GraphQL schema and common queries for mauna",
"graphqlEndpoint": "https://api.mauna.cloud/v1/graphql",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"check-env": "validEnv HASURA_ADMIN_SECRET",
"get-schema": "get-graphql-schema -h X-Hasura-Admin-Secret=$HASURA_ADMIN_SECRET ${MAUNA_GRAPHQL_ENDPOINT:-`pkg-jq -r .graphqlEndpoint`} > schema.graphql",
"get-schema-json": "graphql-codegen --config codegen.js",
"docs": "bundle exec rake generate_docs",
"prepublishOnly": "npm run lint",
"version-bump": "git diff-index --quiet HEAD -- || json-bump package.json",
"build": "npm run check-env && npm run get-schema && npm run get-schema-json && npm run lint && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauna-ai/graphql.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/mauna-ai/graphql/issues"
},
"homepage": "https://github.com/mauna-ai/graphql#readme",
"devDependencies": {
"@graphql-codegen/cli": "1.21.1",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/time": "^2.0.2",
"@graphql-eslint/eslint-plugin": "^0.9.1",
"eslint": "^7.23.0",
"get-graphql-schema": "^2.1.2",
"json-bump": "^1.0.2",
"node-jq": "^1.12.0",
"pkg-jq": "^0.2.11",
"valid-env": "^1.1.1"
},
"dependencies": {
"graphql": "^15.5.0"
}
}