-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 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
{
"name": "gmail-tg-notifications",
"version": "1.0.0",
"description": "recive gmail notifications via telegram",
"main": "index.js",
"scripts": {
"build-server": "tsc && tscpaths -p tsconfig.json -s ./src -o ./build",
"build": "npm run clean && npm run build-server",
"clean": "rm -rf build",
"heroku-postbuild": "npm run build",
"start": "node build/index.js"
},
"author": "akrava",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/akrava/gmail-tg-notifications.git"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"google-auth-library": "^6.1.6",
"googleapis": "^66.0.0",
"html-to-text": "^5.1.1",
"mongoose": "^5.13.5",
"telegraf": "^4.4.1"
},
"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",
"tscpaths": "0.0.9",
"tslint": "^5.20.1",
"typescript": "^4.3.5"
}
}