-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 888 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 888 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
31
32
33
{
"name": "telegram-flame-bot",
"version": "0.2.0",
"description": "The most polite chatbot in the world!",
"license": "ISC",
"private": true,
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine",
"build": "tsc --pretty",
"watch": "tsc -w --pretty",
"lint": "tslint -c tslint.json --project tsconfig.json",
"serve": "node src/bot.js"
},
"dependencies": {
"@types/dotenv": "^4.0.3",
"body-parser": "^1.20.3",
"dotenv": "^6.1.0",
"express": "^4.22.1",
"fuzzyset.js": "0.0.1",
"node-telegram-bot-api": "^0.65"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/jasmine": "^2.8.9",
"@types/node-telegram-bot-api": "^0.30.1",
"jasmine": "^3.3.0",
"prettier": "2.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}