-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
42
43
44
{
"name": "firebase-supabase-function-bridge",
"version": "2.1.1",
"description": "Bridge between Firebase Functions and Supabase HTTP triggers.",
"main": "index.js",
"author": "Jared Williams <accounts@jaredwilliams.com.au>",
"license": "ISC",
"dependencies": {
"dotenv": "^10.0.0",
"pg": "^8.7.1"
},
"peerDependencies": {
"firebase-admin": "*",
"firebase-functions": "*"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"cross-env": "^10.1.0",
"firebase-admin": "^13.0.2",
"firebase-functions": "^6.3.0",
"jest": "^30.3.0",
"prettier": "^2.3.2",
"rimraf": "^6.1.3",
"shx": "^0.4.0",
"ts-jest": "^29.4.9",
"typescript": "^5.3.2"
},
"bin": "bin/deploy",
"scripts": {
"prettier": "prettier \"src/**/*.js\" -w",
"build": "shx rm -rf ./dist && tsc && shx cp package.json ./dist && shx cp -R ./bin ./dist && shx cp README.md ./dist && shx cp LICENSE.md ./dist && shx cp CHANGELOG.md ./dist",
"test": "jest"
},
"engines": {
"node": ">=18"
},
"types": "index.d.ts",
"files": [
"/*.js",
"/*.d.ts",
"/bin",
"/*.md"
]
}