-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "apod-telegram-bot",
"version": "1.0.0",
"description": "telegram bot for nasa's apod",
"main": "index.ts",
"scripts": {
"test": "mocha --exit -r ts-node/register 'src/tests/**/*.ts'",
"start:dev": "ts-node src/index.ts",
"build": "tsc --build && cp .env ./dist/",
"start": "npm run build && node dist/index",
"typeorm": "ts-node './node_modules/typeorm/cli.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/murilovidal/apod-telegram-bot.git"
},
"keywords": [
"telegram",
"bot",
"apod"
],
"author": "Murilo Vidal",
"license": "GNU GPL V3.0",
"bugs": {
"url": "https://github.com/murilovidal/apod-telegram-bot/issues"
},
"homepage": "https://github.com/murilovidal/apod-telegram-bot#readme",
"devDependencies": {
"@types/chai": "4.2.14",
"@types/chai-as-promised": "7.1.3",
"@types/cron": "1.7.2",
"@types/mocha": "8.2.0",
"@types/node": "8.10.66",
"@types/sinon": "9.0.10",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "8.2.1",
"sinon": "9.2.4",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"dependencies": {
"axios": "0.21.1",
"cron": "1.8.2",
"dotenv": "8.2.0",
"node-cron": "^3.0.0",
"pg": "8.5.1",
"reflect-metadata": "0.1.10",
"telegraf": "4.0.3",
"typeorm": "0.2.30"
}
}