This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "telegram-image-generator-bot",
"version": "1.0.0",
"description": "Telegram chatbot that generates images based on HTML templates",
"main": "dist/index.js",
"scripts": {
"start": "pm2-runtime start ecosystem.config.yml",
"start:debug": "tsnd src/index.ts",
"build": "tsc",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"build:clean": "npm run build && npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix"
},
"author": "Rogério Munhoz <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/hogan.js": "^3.0.1",
"@types/mustache": "^4.2.2",
"@types/node": "^20.4.2",
"@types/nunjucks": "^3.2.3",
"@types/pug": "^2.0.6",
"@types/swig": "0.0.30",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"ts-node-dev": "2.0.0",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint"
}
},
"dependencies": {
"@nindoo/mongodb-data-layer": "^3.0.2",
"axios": "^1.4.0",
"handlebars": "^4.7.7",
"hogan.js": "^3.0.2",
"mongodb": "^5.7.0",
"mustache": "^4.2.0",
"ngrok": "^5.0.0-beta.2",
"nunjucks": "^3.2.4",
"playwright-chromium": "^1.36.1",
"pm2": "^5.3.0",
"pug": "^3.0.2",
"sugar-env": "^1.5.14",
"swig": "^1.4.2",
"telegraf": "^4.12.2"
}
}