-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"fblogin": "yarn firebase login",
"funcs:build": "babel src/functions --out-dir dist/functions",
"funcs:clean": "rimraf dist/functions",
"funcs:copy": "cpx '*{package.json,yarn.lock}' dist/functions",
"prefuncs:deploy": "yarn funcs:clean && yarn funcs:build && yarn funcs:copy",
"funcs:deploy": "yarn firebase deploy --only functions",
"funcs:install": "cd dist/functions && yarn",
"prefuncs:server": "yarn funcs:deploy",
"funcs:serve": "firebase serve --only functions -o 0.0.0.0",
"prefuncs:shell": "yarn funcs:build && yarn funcs:install",
"funcs:shell": "yarn firebase experimental:functions:shell",
"funcs:logs": "yarn firebase functions:log"
},
"dependencies": {
"firebase-admin": "~5.12.1",
"firebase-functions": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"cpx": "^1.5.0",
"eslint": "^4.12.0",
"eslint-plugin-promise": "^3.6.0",
"firebase-tools": "^3.18.4",
"rimraf": "^2.6.2"
},
"private": true
}