-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "serverless-typescript-graphql-netlify-starter",
"version": "1.0.0",
"description": "A simple serverless GraphQL API built with TypeScript and deployed on Netlify.",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "nodemon",
"codegen": "graphql-codegen --config codegen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stemmlerjs/serverless-typescript-graphql-netlify-starter.git"
},
"keywords": [
"typescript",
"graphql",
"api",
"netlify"
],
"author": "Khalil Stemmler <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/stemmlerjs/serverless-typescript-graphql-netlify-starter/issues"
},
"homepage": "https://github.com/stemmlerjs/serverless-typescript-graphql-netlify-starter#readme",
"devDependencies": {
"@graphql-codegen/cli": "^1.12.2",
"@graphql-codegen/introspection": "1.12.2",
"@graphql-codegen/typescript": "1.12.2",
"@graphql-codegen/typescript-resolvers": "1.12.2",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"apollo-server": "^2.10.1",
"apollo-server-lambda": "^2.10.1"
}
}