├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── serverless.yml └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | webpack -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBI23/serverless-express-graphql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBI23/serverless-express-graphql/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBI23/serverless-express-graphql/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBI23/serverless-express-graphql/HEAD/package.json -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBI23/serverless-express-graphql/HEAD/serverless.yml -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBI23/serverless-express-graphql/HEAD/webpack.config.js --------------------------------------------------------------------------------