-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "node-ts-telegram-bot",
"version": "1.0.0",
"description": "A Sample Node.js + TypeScript Project for Telegram Bot Developers",
"private": true,
"main": "./src/index.ts",
"scripts": {
"start": "node ./build/index.js",
"build": "rm -rf ./build/ && tsc -p .",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smrsan76/node-ts-boilerplate.git"
},
"author": "smrsan76",
"license": "MIT",
"bugs": {
"url": "https://github.com/smrsan76/node-ts-boilerplate/issues"
},
"homepage": "https://github.com/smrsan76/node-ts-boilerplate#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.0",
"@types/node-telegram-bot-api": "^0.53.0",
"@types/shelljs": "^0.8.9",
"jest": "^27.2.5",
"nodemon": "^2.0.14",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"chalk": "^4.1.2",
"mongodb": "^4.1.3",
"node-telegram-bot-api": "^0.54.0",
"shelljs": "^0.8.4"
}
}