forked from akrava/gmail-tg-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.01 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
{
"name": "gmail-tg-notifications",
"version": "1.0.0",
"description": "recive gmail notifications via telegram",
"main": "index.js",
"scripts": {
"build-server": "mkdir -p dist && tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"build": "npm run clean && npm run build-server",
"clean": "rm -rf dist",
"heroku-postbuild": "npm run build",
"start": "node dist/index.js",
"dev": "tsc-watch --onEmitDebounceMs 500 --onSuccess \"ts-node -r tsconfig-paths/register src/index.ts\"",
"test:minify": "tsc-watch --onEmitDebounceMs 500 --onSuccess \"ts-node -r tsconfig-paths/register src/tests/index.ts\""
},
"author": "akrava & Hormold",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/akrava/gmail-tg-notifications.git"
},
"dependencies": {
"@helicone/helicone": "^3.1.1",
"@types/tz-lookup": "^6.1.2",
"body-parser": "^1.19.0",
"dayjs": "^1.11.12",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"fastify": "^4.28.1",
"google-auth-library": "^6.1.6",
"googleapis": "^66.0.0",
"html-to-text": "^5.1.1",
"mongoose": "^5.13.22",
"node-cron": "^3.0.3",
"openai": "^4.55.0",
"telegraf": "^4.16.3",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"tz-lookup": "^6.1.25",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.13",
"@types/express-mongo-sanitize": "^1.3.2",
"@types/express-rate-limit": "^5.1.3",
"@types/html-to-text": "^1.4.31",
"@types/node": "^20",
"nodemon": "^2.0.7",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"tslint": "^5.20.1",
"typescript": "^5.5.3"
}
}