This repository was archived by the owner on Jun 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.07 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.07 KB
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
{
"name": "guardian-bot",
"version": "0.1.1",
"description": "Telegram bot to manage developer groups",
"main": "dist",
"repository": {
"type": "git",
"url": "git+https://github.com/full-stacks/guardian-bot"
},
"bugs": {
"url": "https://github.com/full-stacks/guardian-bot/issues"
},
"homepage": "https://github.com/full-stacks/guardian-bot/",
"keywords": [
"telegram",
"bot",
"fullstacks"
],
"author": "frontendmonster <frontendmonster@gmail.com>",
"license": "AGPL-3.0",
"engines": {
"node": ">=12",
"yarn": ">=1"
},
"scripts": {
"commit": "git-cz",
"clean": "shx rm -rf dist",
"lint": "eslint . --ext ts,tsx",
"lint:fix": "yarn run lint --fix",
"prebuild": "yarn run clean",
"build": "tsc",
"postbuild": "shx cp -r src/assets/ dist/",
"dev": "dotenv -- ts-node-dev --no-notify --respawn --transpileOnly ./src",
"start": "dotenv node ."
},
"dependencies": {
"@frontendmonster/utils": "0.2.10",
"dedent": "0.7.0",
"dotenv-cli": "3.1.0",
"express": "4.17.1",
"highlight.js": "9.18.1",
"micro-bot": "2.5.3",
"nedb-promises": "4.0.1",
"prettier": "2.0.2",
"puppeteer-core": "2.1.1",
"ramda": "0.27.0",
"tall": "3.0.0",
"telegraf-ts": "3.36.4"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@frontendmonster/eslint-config": "3.2.7",
"@types/dedent": "0.7.0",
"@types/express": "4.17.4",
"@types/highlight.js": "9.12.3",
"@types/node": "13.11.0",
"@types/prettier": "2.0.0",
"@types/puppeteer-core": "2.0.0",
"@types/ramda": "0.26.43",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"husky": "4.2.3",
"lint-staged": "10.1.2",
"shx": "0.3.2",
"ts-node-dev": "1.0.0-pre.44",
"typescript": "3.8.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}