-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 KB
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
{
"name": "aws-lambda-graphql",
"version": "1.0.0",
"description": "GraphQL Serverless App, Hosted on AWS Lambda",
"main": "src/app.js",
"scripts": {
"start": "node ./bin/start",
"transpile": "babel src --out-dir bin",
"test": "mocha --recursive './test/*Test.js' --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emanuelet/aws-lambda-graphql.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/emanuelet/aws-lambda-graphql/issues"
},
"homepage": "https://github.com/emanuelet/aws-lambda-graphql#readme",
"dependencies": {
"apollo-server-express": "^2.14.2",
"aws-serverless-express": "^3.1.3",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"graphql": "^0.13.x",
"graphql-tools": "^2.21.0",
"lodash": "^4.17.19",
"pg-promise": "^8.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.6.1"
}
}