mirror of
https://github.com/vale981/apollo-server
synced 2025-03-09 04:26:39 -04:00

* Setup prettier and precommit hooks * Format code with prettier * Use husky because it works... * Move prettier config to .prettierrc file * Implement fixing markdown file formatting when running lint-fix script * Format markdown files * Add .json file formatting * Fixes json file formatting * Add pretteir linting step * Remove tslint * Use gitignore for prettier * Fix linting errors * Ignore submodule folder
29 lines
847 B
JSON
29 lines
847 B
JSON
{
|
|
"name": "graphql-server-module-graphiql",
|
|
"version": "1.3.0",
|
|
"description": "GraphiQL renderer for Apollo GraphQL Server",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"prepublish": "npm run compile"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url":
|
|
"https://github.com/apollographql/apollo-server/tree/master/packages/graphql-server-module-graphiql"
|
|
},
|
|
"keywords": ["GraphQL", "GraphiQL", "Apollo", "Javascript"],
|
|
"author": "Jonas Helfer <jonas@helfer.email>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/apollographql/apollo-server/issues"
|
|
},
|
|
"homepage": "https://github.com/apollographql/apollo-server#readme",
|
|
"dependencies": {
|
|
"apollo-server-module-graphiql": "^1.3.0"
|
|
},
|
|
"typings": "dist/index.d.ts",
|
|
"typescript": {
|
|
"definition": "dist/index.d.ts"
|
|
}
|
|
}
|