-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
42
43
44
45
46
47
{
"name": "functions",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "tsc",
"build:watch": "tsc --watch",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "18"
},
"main": "lib/index.js",
"dependencies": {
"@amplitude/analytics-node": "^1.1.2",
"@google-cloud/pubsub": "^3.7.0",
"@google-cloud/storage": "^6.9.1",
"@mailchimp/mailchimp_transactional": "^1.0.50",
"firebase-admin": "^11.8.0",
"firebase-functions": "^4.4.0",
"form-data": "^4.0.0",
"luxon": "^3.3.0",
"pdf-lib": "^1.17.1",
"pdfkit": "^0.13.0",
"sharp": "^0.31.3",
"sightengine": "^1.3.1",
"streamifier": "^0.1.1"
},
"devDependencies": {
"@types/luxon": "^3.3.0",
"@types/mailchimp__mailchimp_transactional": "^1.0.5",
"@types/pdfkit": "^0.12.8",
"@types/sharp": "^0.31.1",
"@types/streamifier": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.4",
"firebase-functions-test": "^0.2.0",
"typescript": "^4.5.4"
},
"private": true
}