-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "serverless-graphQL",
"version": "1.0.0",
"description": "Serverless GraphQL application using AWS Lambda",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack",
"start": "nodemon server.js --exec babel-node --presets es2015,stage-2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Treblesteph/serverless-graphQL.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Treblesteph/serverless-graphQL/issues"
},
"homepage": "https://github.com/Treblesteph/serverless-graphQL#readme",
"dependencies": {
"aws-serverless-express": "^3.3.5",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"json-loader": "^0.5.7",
"nodemon": "^1.18.3",
"serverless-webpack": "^5.2.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
}
}