-
Notifications
You must be signed in to change notification settings - Fork 614
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 829 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 829 Bytes
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
{
"name": "functions",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase --project ga-dev-tools deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "12"
},
"main": "lib/index.js",
"dependencies": {
"cors": "^2.8.5",
"firebase-admin": "^12.0.0",
"firebase-functions": "^3.13.2",
"firebase-tools": "^9.10.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/node-fetch": "^2.5.7",
"firebase-functions-test": "^0.2.0",
"tslint": "^5.12.0",
"typescript": "^3.8.0"
},
"private": true
}