-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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": "telegraf-starter",
"version": "0.0.2",
"description": "Telegraf TS Starter kit",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"dev": "ts-node-dev -r dotenv/config src/",
"dev:task": "ts-node-dev -r dotenv/config src/tasks/",
"task": "node dist/tasks/",
"start": "node dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioscars/telegraf-starter.git"
},
"keywords": [
"telegraf",
"typescript",
"starter"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ioscars/telegraf-starter/issues"
},
"homepage": "https://github.com/ioscars/telegraf-starter#readme",
"dependencies": {
"telegraf": "^4.3.0",
"upgrade": "^1.1.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.8",
"dotenv": "^8.2.0",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}