2019-04-07 17:16:47 -05:00
|
|
|
{
|
|
|
|
|
"name": "functions",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"lint": "tslint --project tsconfig.json",
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"serve": "npm run build && firebase serve --only functions",
|
|
|
|
|
"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": {
|
2019-04-07 18:06:21 -05:00
|
|
|
"@google-cloud/storage": "^2.5.0",
|
|
|
|
|
"@types/fs-extra": "^5.0.5",
|
|
|
|
|
"@types/sharp": "^0.22.1",
|
2019-04-07 17:16:47 -05:00
|
|
|
"firebase-admin": "~7.0.0",
|
2019-04-13 18:23:45 -05:00
|
|
|
"firebase-functions": "^2.2.1",
|
2019-04-07 18:06:21 -05:00
|
|
|
"fs-extra": "^7.0.1",
|
|
|
|
|
"sharp": "^0.22.0"
|
2019-04-07 17:16:47 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"tslint": "^5.12.0",
|
|
|
|
|
"typescript": "^3.2.2"
|
|
|
|
|
},
|
|
|
|
|
"private": true
|
|
|
|
|
}
|