-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 912 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 912 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
{
"name": "f3-user-data-backup",
"version": "1.0.0",
"description": "Backup user data to CSV from Firebase",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "npm run lint && tsc --skipLibCheck",
"deploy": "gcloud functions deploy daily-user-backup --gen2 --runtime=nodejs20 --region=us-central1 --source=. --entry-point=backup --trigger-http"
},
"keywords": [
"F3 Omaha"
],
"author": "Nolan Clark - iMac",
"license": "ISC",
"dependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.29.0",
"firebase-admin": "^11.11.1",
"firebase-functions": "^4.5.0",
"fs-extra": "^11.2.0",
"request": "^2.88.2",
"typescript": "^5.3.2"
}
}