-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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": "gsuite-graphql-server",
"version": "1.0.0",
"description": "GraphQL API for accessing Google apps",
"keywords": [
"graphql",
"api",
"node",
"google",
"gcalendar",
"gmail",
"gsheets"
],
"main": "dist/index.js",
"types": "src/generatedTypes.ts",
"repository": "[email protected]:henry74/gsuite-graphql-server.git",
"author": "henry74 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc",
"build:watch": "rm -rf dist && tsc -w",
"start": "yarn build && node dist/index.js",
"start:dev": "ts-node-dev --transpile-only src/index.ts",
"inspect": "nodemon --inspect=0.0.0.0:9229 dist/index.js",
"generate": "./tools/generate-gql.sh",
"authorize": "ts-node ./tools/authorize.ts"
},
"dependencies": {
"apollo-server-express": "^2.14.2",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"dotenv": "^8.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"gmail-api-parse-message": "^2.1.0",
"googleapis": "^66.0.0",
"graphql": "^15.4.0",
"graphql-middleware": "^4.0.2",
"graphql-type-json": "^0.3.0",
"js-yaml": "^3.13.0",
"lodash": "^4.17.21",
"lodash.zipobject": "^4.1.3",
"set-value": "^4.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.19.4",
"@graphql-codegen/typescript-resolvers": "^1.18.0",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^4.1.2"
},
"resolutions": {
"**/**/lodash": "^4.17.12",
"**/**/set-value": "^3.0.1",
"**/**/mixin-deep": "^2.0.1",
"**/**/js-yaml": "^3.13.0"
}
}