-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "googlesheets-graphql-server",
"version": "1.0.0",
"description": "template",
"main": "dist/index.js",
"types": "src/generatedTypes.ts",
"repository": "[email protected]:henry74/googlesheets-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": "npm-run-all --parallel build:watch inspect",
"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.5.0",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"dotenv": "^8.0.0",
"dotenv-safe": "^6.1.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"googleapis": "^40.0.0",
"graphql": "^14.3.1",
"graphql-middleware": "^3.0.2",
"graphql-type-json": "^0.3.0",
"lodash": "^4.17.13",
"lodash.zipobject": "^4.1.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/graphql": "^14.2.0",
"graphql-code-generator": "^0.18.2",
"graphql-codegen-typescript-server": "^0.18.2",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"ts-node": "^8.2.0",
"typescript": "^3.4.5"
}
}