diff options
| author | Fuwn <[email protected]> | 2022-03-20 01:28:42 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-20 01:28:42 -0700 |
| commit | 03f2c8e35ba70c9d9496fd5ad5403520f7ebdc53 (patch) | |
| tree | 568e508aff6db6325719abcb2c601520264c5de4 /package.json | |
| download | graphql-api-03f2c8e35ba70c9d9496fd5ad5403520f7ebdc53.tar.xz graphql-api-03f2c8e35ba70c9d9496fd5ad5403520f7ebdc53.zip | |
feat: 0.1.0 :star:
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..0f101f8 --- /dev/null +++ b/package.json @@ -0,0 +1,40 @@ +{ + "name": "senpy-club-graphql-api", + "author": { + "url": "https://github.com/Fuwn", + "email": "[email protected]", + "name": "Fuwn" + }, + "homepage": "https://github.com/senpy-club/graphql-api", + "readme": "https://github.com/senpy-club/graphql-api#readme", + "version": "0.1.0", + "license": "MIT", + "keywords": [ + "graphql", + "javascript", + "cloudflare", + "workers", + "anime", + "senpy" + ], + "description": "GraphQL access to The Senpy Club API", + "repository": "https://github.com/senpy-club/graphql-api", + "private": true, + "scripts": { + "format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .", + "lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "dependencies": { + "apollo-datasource-rest": "^3.2.0", + "apollo-server-cloudflare": "^3.3.0", + "graphql": "^15.6.0" + }, + "devDependencies": { + "@cloudflare/wrangler": "^1.19.9", + "eslint": "^8.11.0", + "prettier": "^2.4.1", + "webpack": "^5.56.0" + }, + "main": "src/index.js" +} |