Files
firebase-tools/templates/init/functions/javascript/package.lint.json
Bryan Kendall 9799ac0302 Update Functions init templates (#1093)
* init template updates

* add noImplicitReturns

* add line to changelog

* Update index.js

* Update index.ts
2019-01-15 10:44:12 -08:00

22 lines
527 B
JSON

{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"lint": "eslint .",
"serve": "firebase serve --only functions",
"shell": "firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"dependencies": {
"firebase-admin": "~6.0.0",
"firebase-functions": "^2.1.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-plugin-promise": "^4.0.1"
},
"private": true
}