-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "delphi-reads-tg-bot",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "server.ts",
"scripts": {
"start": "tsx server.ts",
"start:dev": "DEV=1 npm start",
"deploy": "fly deploy",
"deploy:prod": "fly deploy -a delphi-tg-bots-prod -c fly.prod.toml",
"logs": "fly logs",
"logs:prod": "fly logs -a delphi-tg-bots-prod",
"test:mocha": "mocha test/*-test.ts test/**/*-test.ts -r tsx",
"test": "npm run test:mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delphidigital/delphi-reads-tg-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/delphidigital/delphi-reads-tg-bot/issues"
},
"homepage": "https://github.com/delphidigital/delphi-reads-tg-bot#readme",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-requests-logger": "^4.0.0",
"install": "^0.13.0",
"jsdom": "^24.1.0",
"node-html-markdown": "^1.3.0",
"openai": "^4.49.1",
"smee-client": "^2.0.1",
"telegraf": "^4.16.3",
"tsx": "^4.7.3"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.6",
"@types/chai": "^4.3.16",
"@types/express": "^4.17.21",
"@types/express-requests-logger": "^3.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/sinon": "^17.0.3",
"axios-mock-adapter": "^1.22.0",
"chai": "^5.1.1",
"mocha": "^10.4.0",
"sinon": "^18.0.0",
"typescript": "^5.4.5"
}
}