-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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": "iltabotti",
"version": "1.0.0",
"description": "Iltabotti is a Telegram bot that interacts with IltaSanomat and IltaLehti links, posting the top comment of any given link",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --coverage --verbose",
"start": "node dist/index.js",
"watch": "nodemon -e ts --watch src --exec \"node --require ts-node/register\" src/index.ts",
"watch-build": "tsc -w"
},
"author": "Juuso Tapaninen <[email protected]>",
"license": "MIT",
"private": "true",
"repository": {
"type": "git",
"url": "https://github.com/Pinqvin/iltabotti.git"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/pino": "^6.3.4",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"dotenv": "^8.2.0",
"envalid": "^7.1.0",
"fp-ts": "^2.9.3",
"got": "^11.8.1",
"io-ts": "^2.2.13",
"pino": "^6.9.0",
"telegraf": "^4.3.0"
},
"engines": {
"node": "^14"
}
}