-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
34
35
36
37
38
39
40
41
{
"name": "auth-backup-firebase-functions",
"version": "1.0.0",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js"
},
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SonicGarden/auth-backup-firebase-functions.git"
},
"author": "",
"license": "MIT",
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/SonicGarden/auth-backup-firebase-functions/issues"
},
"homepage": "https://github.com/SonicGarden/auth-backup-firebase-functions#readme",
"scripts": {
"build": "tsc -p tsconfig.release.json",
"build:release": "npm install --production && npm install --no-save typescript && tsc -p tsconfig.release.json",
"build:pack": "rm -rf lib && npm install && tsc -p tsconfig.release.json && npm pack",
"prepare": "tsc -p tsconfig.release.json"
},
"dependencies": {
"@google-cloud/kms": "^4.0.1",
"@google-cloud/storage": "^7.7.0",
"firebase-admin": "^12.0.0",
"firebase-tools": "^13.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"typescript": "^5.3.3"
}
}