Files
TheGame/packages/codegen/package.json
Hammad Jutt 51089ae49e Use exact versions in package.json files
Since Dependabot is updating packages for us, we should only use exact version numbers to be explicit
for what version we are on and reduce chances of having incorrect versions installed
2021-01-29 13:04:49 -07:00

19 lines
452 B
JSON

{
"name": "@metafam/codegen",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">=12.x.x"
},
"scripts": {
"update-schema": "env-cmd -f ../../.env -x get-graphql-schema -h x-hasura-admin-secret=\\$HASURA_GRAPHQL_ADMIN_SECRET http://localhost:8080/v1/graphql > schema.graphql"
},
"dependencies": {
"graphql-tag": "^2.10.4"
},
"devDependencies": {
"env-cmd": "10.1.0",
"get-graphql-schema": "2.1.2"
}
}