-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 974 Bytes
/
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
{
"name": "serverless-graphql-netlify-starter",
"version": "1.0.0",
"description": "The simplest serverless GraphQL API deployed on Netlify possible.",
"main": "index.js",
"scripts": {
"start": "nodemon",
"bundle": "cpx src/**/* functions/bundle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stemmlerjs/serverless-graphql-netlify-starter.git"
},
"keywords": [
"graphql",
"api",
"netlify",
"serverless"
],
"author": "Khalil Stemmler <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/stemmlerjs/serverless-graphql-netlify-starter/issues"
},
"homepage": "https://github.com/stemmlerjs/serverless-graphql-netlify-starter#readme",
"dependencies": {
"apollo-server": "^2.10.1",
"apollo-server-lambda": "^2.10.1",
"cpx": "^1.5.0"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}