-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "gqlhibli",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"bundle": "tsc",
"generate": "gql-gen --config codegen.yml",
"init": "npm install; npm-run-all generate bundle",
"start": "nodemon",
"test": "jest --watch"
},
"keywords": [
"typescript",
"graphql",
"api",
"netlify",
"studio ghibli"
],
"author": "Dyl Lavoie <hey@dyyyl.rocks>",
"license": "MIT",
"description": "GraphQL wrapper for the Studio Ghibli API <https://ghibliapi.herokuapp.com/>",
"repository": {
"type": "git",
"url": "git+https://github.com/dyyyl/gqlhibli.git"
},
"bugs": {
"url": "https://github.com/dyyyl/gqlhibli/issues"
},
"homepage": "https://github.com/dyyyl/gqlhibli#readme",
"dependencies": {
"apollo-datasource-rest": "^0.9.3",
"apollo-server": "^2.16.1",
"apollo-server-lambda": "^2.16.1",
"graphql": "^15.3.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.8",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@graphql-codegen/typescript-resolvers": "^1.17.8",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"graphql-codegen": "^0.4.0",
"jest": "^26.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
}
}