├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── firebase.json └── functions ├── .eslintrc.json ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | *.DS_Store 4 | *.log 5 | .firebaserc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-webhook-boilerplate-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-webhook-boilerplate-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-webhook-boilerplate-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-webhook-boilerplate-nodejs/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-webhook-boilerplate-nodejs/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-webhook-boilerplate-nodejs/HEAD/functions/package.json --------------------------------------------------------------------------------