forked from jthegedus/firebase-gcp-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 866 Bytes
/
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
34
{
"name": "funcs-w-babel",
"description": "compile JavaScript Cloud Functions with Babel",
"version": "1.0.0",
"main": "dist/function.js",
"license": "MIT",
"scripts": {
"lint": "xo",
"setup": "yarn firebase use --add",
"build": "babel 'src' --out-dir 'dist' --source-maps",
"watch": "yarn build --watch",
"serve": "yarn watch & yarn firebase serve --only functions",
"predeploy": "yarn build",
"deploy": "yarn firebase deploy --only functions"
},
"engines": {
"node": "10"
},
"xo": {
"space": true
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"firebase-functions-test": "^0.1.6",
"firebase-tools": "^6.9.2",
"xo": "^0.24.0"
},
"dependencies": {
"firebase-admin": "^7.3.0",
"firebase-functions": "^2.3.0"
}
}