forked from jthegedus/firebase-gcp-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 886 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
{
"name": "funcs-w-parcel",
"description": "compile TypeScript Cloud Functions with ParcelJS",
"version": "1.0.0",
"main": "dist/function.js",
"license": "MIT",
"scripts": {
"lint": "tslint --project tsconfig.json",
"setup": "yarn firebase use --add",
"build": "parcel build src/function.ts --target node --detailed-report",
"watch": "parcel src/function.ts --target node",
"serve": "yarn watch & yarn firebase serve --only-functions",
"predeploy": "yarn build",
"deploy": "yarn firebase deploy --only functions"
},
"engines": {
"node": "10"
},
"devDependencies": {
"@firebase/app-types": "^0.3.9",
"firebase-functions-test": "^0.1.6",
"firebase-tools": "^6.9.2",
"parcel-bundler": "^1.12.3",
"typescript": "^3.4.4"
},
"dependencies": {
"firebase-admin": "^7.3.0",
"firebase-functions": "^2.3.1"
}
}