Created
January 25, 2019 09:20
-
-
Save ctwhome/78cfccf651ea09d856078ad3580e9a4c to your computer and use it in GitHub Desktop.
Watch for changes in Local Typescript Firebase functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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