-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 765 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 765 Bytes
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
{
"name": "neon-wolf-bot",
"version": "0.0.1",
"description": "Эксперементы с telegram ботом",
"main": "index.js",
"scripts": {
"test": "jasmine",
"start": "node src/app.js",
"dev": "nodemon -e ts,json -w ./src -x \"tsc & node ./src/app.js\""
},
"keywords": [
"telegramBot"
],
"author": "XFree",
"license": "ISC",
"typings": "typings/telegraf.d.ts",
"devDependencies": {
"@types/node": "^8.0.47",
"jasmine": "^2.8.0",
"nodemon": "^1.12.1",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "2.5.2",
"vrsource-tslint-rules": "^5.1.1"
},
"dependencies": {
"telegraf": "^3.14.1",
"telegraf-flow": "^8.3.0"
}
}