-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.49 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": "itabulbot",
"version": "1.0.0",
"description": "Bot Telegram per riepilogare lo stato dei lavori del progetto BUL in Italia.",
"scripts": {
"prepare": "is-ci || husky install",
"build": "tsc",
"fetch": "node ./fetch.js",
"dev": "nodemon --watch 'src/**' --ext 'js,ts,json' --exec 'ts-node src/bot.ts'",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/theedoran/itabulbot.git"
},
"keywords": [
"telegram",
"bot",
"bul",
"fibra"
],
"author": "TheEdoRan",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/theedoran/itabulbot/issues"
},
"homepage": "https://github.com/theedoran/itabulbot#readme",
"dependencies": {
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"escape-html": "^1.0.3",
"is-ci": "^3.0.1",
"module-alias": "^2.2.2",
"telegraf": "^4.11.2",
"typegram": "^4.3.0",
"typescript-memoize": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/escape-html": "^1.0.2",
"@types/module-alias": "^2.0.1",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}