-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 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
45
46
47
48
49
{
"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",
"lint:fix": "eslint . --fix",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "18"
},
"main": "lib/index.js",
"dependencies": {
"@google-cloud/logging-winston": "^6.0.0",
"@google-cloud/secret-manager": "^5.6.0",
"@google-cloud/storage": "^5.0.0",
"@types/facebook-nodejs-business-sdk": "^20.0.2",
"axios": "^1.7.9",
"date-fns": "^4.1.0",
"facebook-nodejs-business-sdk": "^21.0.5",
"firebase-admin": "^13.0.2",
"firebase-functions": "^6.3.2",
"googleapis": "^144.0.0",
"imap-simple": "^5.1.0",
"mailparser": "^3.7.2",
"nodemailer": "^6.10.0",
"pipedrive": "^23.4.3",
"winston": "^3.17.0",
"winston-loki": "^6.1.3"
},
"devDependencies": {
"@types/imap-simple": "^4.2.9",
"@types/mailparser": "^3.4.5",
"@types/nodemailer": "^6.4.17",
"@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": "^3.1.0",
"typescript": "^5.1.6"
},
"private": true
}