Skip to content

Instantly share code, notes, and snippets.

@ctwhome
Created January 25, 2019 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ctwhome/78cfccf651ea09d856078ad3580e9a4c to your computer and use it in GitHub Desktop.
Save ctwhome/78cfccf651ea09d856078ad3580e9a4c to your computer and use it in GitHub Desktop.
Watch for changes in Local Typescript Firebase functions
{
"name": "functions",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"build-watch": "tsc -w",
"serve": "concurrently \"firebase serve --only functions\" \"npm run build-watch\"",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"main": "lib/index.js",
"dependencies": {
"firebase-admin": "~6.0.0",
"firebase-functions": "^2.1.0"
},
"devDependencies": {
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"private": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment