-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "up-graph",
"version": "0.0.0",
"description": "Unofficial GraphQL layer for UP Bank API",
"main": "index.js",
"repository": "git@github.com:aaronvanston/Up-Graph.git",
"author": "Aaron Vanston",
"license": "MIT",
"scripts": {
"codegen": "graphql-codegen",
"codegen:watch": "nodemon --exec yarn codegen --watch type-defs.ts",
"lint": "tslint --project tsconfig.json --format stylish",
"build": "tsc",
"serve": "ts-node src/server.ts",
"start": "nodemon"
},
"dependencies": {
"@graphql-codegen/cli": "1.17.8",
"@graphql-codegen/typescript": "1.17.9",
"@graphql-codegen/typescript-resolvers": "1.17.9",
"@graphql-modules/core": "0.7.17",
"apollo-datasource": "0.7.2",
"apollo-datasource-rest": "0.9.4",
"apollo-server-koa": "2.18.0",
"graphql-iso-date": "3.6.1",
"koa": "2.13.0",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/graphql-iso-date": "3.4.0",
"@types/koa": "2.11.4",
"nodemon": "2.0.4",
"ts-node": "9.0.0",
"tslint": "6.1.3",
"tslint-config-airbnb": "5.11.2",
"typescript": "4.0.3"
}
}