-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.73 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
{
"name": "voice-to-calendar",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"lint-staged": {
"*.ts": "xo"
},
"xo": {
"extends": "@onmoon",
"prettier": true
},
"prettier": "@onmoon/prettier-config",
"scripts": {
"env": "cat .env.yaml | sed \"s#: #=#g\" > .env",
"build": "tsc && cp package*.json dist",
"start": "env-cmd nodemon -d 0.5 -w .env -w src -x 'ts-node --transpile-only --esm' src/dev.ts",
"lint": "xo",
"lint:fix": "xo --fix",
"webhook": "env-cmd sh ./setwebhook.sh",
"gtest": "env-cmd npx @google-cloud/functions-framework --target=handleTelegramWebhook"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"@google-cloud/local-auth": "^2.1.0",
"@google-cloud/pubsub": "^4.0.4",
"@google-cloud/translate": "^8.0.1",
"@grammyjs/auto-retry": "^1.1.1",
"@grammyjs/conversations": "^1.1.2",
"@grammyjs/i18n": "^1.0.1",
"@grammyjs/ratelimiter": "^1.2.0",
"@grammyjs/storage-redis": "^2.3.2",
"express": "^4.18.2",
"googleapis": "^105.0.0",
"got": "12",
"grammy": "^1.18.1",
"ioredis": "^5.3.2",
"langchain": "^0.0.135",
"openai": "^3.3.0",
"stripe": "^13.4.0",
"zod": "^3.22.2",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@onmoon/eslint-config": "^1.0.12",
"@onmoon/prettier-config": "^1.0.2",
"@onmoon/tsconfigs": "^2.0.2",
"@types/pg": "^8.6.6",
"env-cmd": "^10.1.0",
"eslint-plugin-unicorn": "^48.0.1",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"xo": "^0.56.0"
}
}