-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "member",
"version": "1.0.0",
"private": true,
"description": "live note taking app",
"license": "BSL",
"main": "dist/index.mjs",
"keywords": [
"sentry",
"cloud run",
"typescript",
"google cloud run",
"google cloud provider"
],
"scripts": {
"start:cloud-run": "node ./dist/cloud-run.mjs",
"start:functions": "node ./dist/index.mjs",
"cp-package": "cpx 'package.json' ./dist",
"tsup": "tsup",
"tsc": "tsc",
"build": "npm-run-all tsup cp-package",
"build:prod": "npm-run-all gcp-build tsup cp-package",
"build:cloud-run": "tsup ./src/cloud-run.ts",
"watch:ws": "nodemon --exec \"npm-run-all --serial build:cloud-run start:cloud-run\"",
"deploy": "./bin/deploy.sh",
"gcp-build": "node node_modules/puppeteer/install.js",
"dev": "build --watch & NODE_ENV=development nodemon --exec \"npm start\"",
"lint": "eslint src/**/*.ts --fix",
"test": "npm jest",
"create-env": "echo $(grep -v '^#' .env)",
"test:watch": "NODE_ENV=development npm jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.61",
"@google-cloud/firestore": "^7.10.0",
"@google-cloud/pubsub": "^4.7.2",
"@types/lodash.chunk": "^4.2.9",
"@types/lodash.get": "^4.4.9",
"@types/qrcode": "^1.5.5",
"ai": "^3.4.1",
"body-parser": "^1.20.2",
"cbor-x": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-rate-limit": "^7.3.1",
"firebase-admin": "^12.2.0",
"firebase-functions": "^5.0.1",
"gcp-metadata": "^6.1.0",
"google-auth-library": "^9.11.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.1",
"lodash.chunk": "^4.2.0",
"lodash.get": "^4.4.2",
"lodash.isnil": "^4.0.0",
"lodash.omit": "^4.5.0",
"lodash.omitby": "^4.6.0",
"mongoose": "^8.6.3",
"nodemailer": "^6.9.15",
"openai": "^4.52.2",
"pino": "^9.2.0",
"pino-http": "^10.1.0",
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "github:pedroslopez/whatsapp-web.js#main",
"ws": "^8.17.1",
"wwebjs-google-cloud-storage": "^1.0.9",
"wwebjs-mongo": "^1.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^8.13.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash.isnil": "^4.0.9",
"@types/lodash.omit": "^4.5.9",
"@types/lodash.omitby": "^4.6.9",
"@types/node": "^20.14.9",
"@types/nodemailer": "^6.4.16",
"@types/qrcode-terminal": "^0.12.2",
"@types/shelljs": "^0.8.15",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cpx": "^1.5.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": ">=9",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"lint-staged": ">=15",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"tsup": "^8.1.0",
"typescript": "5.3.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">= 12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}