-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "graphql-serverless",
"version": "0.9.0",
"description": "Create an GraphQL API (incl. GraphiQL UI) on Google Cloud Functions or Firebase Functions (AWS Lambda coming soon...).",
"contributors": [
"Nicolas Dao <[email protected]> (https://neap.co/)"
],
"main": "src/index.js",
"scripts": {
"lint": "eslint src/ --fix",
"push": "git push --follow-tags origin master && npm publish",
"rls": "standard-version --release-as",
"test": "mocha",
"v": "node -e \"console.log(require('./package.json').version)\""
},
"repository": {
"type": "git",
"url": "https://github.com/nicolasdao/google-graphql-functions.git"
},
"keywords": [
"graphql",
"graphiql",
"google",
"cloud",
"functions"
],
"author": "Nicolas Dao",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nicolasdao/google-graphql-functions/issues"
},
"homepage": "https://github.com/nicolasdao/google-graphql-functions#readme",
"dependencies": {
"accepts": "^1.3.3",
"color": "^3.0.0",
"content-type": "^1.0.2",
"graphql": "^0.11.0",
"graphql-tools": "^2.21.0",
"html-to-react": "^1.4.3",
"http-errors": "^1.6.2",
"querystring": "^0.2.0",
"raw-body": "^2.2.0",
"react": "^16.2.0",
"subscriptions-transport-ws": "^0.9.6",
"url": "^0.11.0"
},
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^4.1.1",
"mocha": "^8.0.1",
"node-mocks-http": "^1.6.4",
"standard-version": "^8.0.2",
"webfunc": "^0.13.0-alpha.2"
}
}